Inno Setup - How to set full permission on a folder, not just for it's contents

后端 未结 2 370
小蘑菇
小蘑菇 2020-12-28 18:15

My kit created with Inno Setup installs my application in C:\\Program Files\\MyApp.

When my application starts, it tries to create new log files in

2条回答
  •  一生所求
    2020-12-28 18:38

    Simply using the following code works for me and I think it is more secured:

    [Dirs]
    Name: "{app}\logs"; Permissions: users-full
    

提交回复
热议问题