I have to set ACL of "C:\" folder (only this folder, not its subfolders!) to accept read/write from all users. Is it possibile by Inno setup script?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
you can use icacls.exe
from inno setup to set permissions
try to execute the following with the Exec or shellexec functions in the inno-setup
icacls "C:\" /grant Users:F
this might helpful, please check icacls Information