vote up 0 vote down star

Hi,

I'm trying to install a set of files within the programdata folder using basic MSI installer. As the content of the files are dynamic and generated during the installation process, I'm creating the files in C# code during installation.

The files are created in the appropriate folders, and everything is good, except the files permissions. As I understand, files are supposed to inherit their permissions from the parent folder (if enabled), but in this case, this does not happen. The files I create should be writable for regular users, and i do not wan't to set permissions explicitly for each file created. Could the problem be that the installer runs with different permissions, and therefore the files does not inherit the permissions from their parent folders?

Thanks in advance for any help.

flag
I find this strange. Did you check the permissions after install? Ie they're not just readonly? – Henk Holterman Oct 26 at 14:19
Yes. The problem is that a folder created during the installer gets the default permissions for administrator (or something like that). I set the folder permissions manually, enabling regular users to write. But files created in the folder does not inherit the permissions manually set on the folder (of course, the file is created in the installer, which probably runs as administrator). Maybe the solution is to adjust permissions on files manually, however, I don't find that a good approach. – Kenneth Oct 27 at 7:39

2 Answers

vote up 0 vote down

the installer runs with administrator access, which would allow it to change anything in program files.

A normal user would have read only access to the program files folder. Visual Studio's setup projects does not support MSI's lock permission table, so if you need the folder you created to be writable to normal users in a setup project you need to grant the right in a custom action using SetNamedSecurityInfo. You can also find a MSI authoring software that can deal with MSI's lock permission table.

link|flag
It's about the ProgramData folder (Vista), a normal user should have read/write access there. – Henk Holterman Oct 26 at 20:12
vote up 0 vote down

If you set the folder permissions manually with a Custom Action and generate and install the files with another Custom Action then the issue could be caused by the order of execution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.