Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nullsoft installer, howto make ProgramData subfolder writable

ProgramData folder is the best place for storing your application's writeable files shared by all users. But when Nsis installer is run with admin privileges (which is required to write to Program Files), then folders and files created in ProgramData folder are read only for all users except admin. How to change that and have writeable files for all users inside ProgramData folder?

like image 428
SiliconMind Avatar asked Sep 16 '11 11:09

SiliconMind


2 Answers

I don't know if this behaviour is a feature or a bug, but I've found a workaround. The AccessControl plugin is needed (download and copy Nsis plugins folder). Inside "install" section of Nsis script put something like this:

; This is important to have $APPDATA variable
; point to ProgramData folder
; instead of current user's Roaming folder
SetShellVarContext all

; This sets us permissions
AccessControl::GrantOnFile "$APPDATA\Folder" "(S-1-5-32-545)" "FullAccess"
AccessControl::GrantOnFile "$APPDATA\Folder\*" "(S-1-5-32-545)" "FullAccess"

S-1-5-32-545 is equivalent to all users, so this code will grant full access to the specified folder and all files inside to all users.

like image 161
SiliconMind Avatar answered Sep 21 '22 14:09

SiliconMind


or set via command line (Win7 only): ExecWait 'Icacls "$APPDATA\Folder" /grant Users:(OI)(CI)M'

like image 27
kashiraja Avatar answered Sep 23 '22 14:09

kashiraja