I want to modify permissions for Users in C:\ProgramData when my install runs. Just add WRITE permission. I'm using a vb script to edit the msi tables.

This query is running okay, adding the row, but the installer is not setting the permission. I am using the ALL permission setting here, I don't know what the correct generic read/write value is.

query = "INSERT INTO LockPermissions (LockObject, Table , User, Permission) VALUES ('COMMONAPPDATAFOLDER', 'Directory', 'Users', 268435456)"

I can't find a working example for this, and it must be a pretty common scenario. I think that COMMONAPPDATAFOLDER resolves to a path about like this:

C:\ProgramData\CompanyFoo\Foo Product Name

but I am not sure. I would want to set the permission on the "CompanyFoo" directory, but I don't know how.

Edit: this is for a build script, not a custom msi action. My problem is that I'm not using an install framework like installshield, I am modifying the crippled output of a visual studio deployment project.

link|improve this question

64% accept rate
Nope, changing permissions on system folders is not a common scenario. Nor is it recommended. – Michael Urman Feb 14 at 12:30
I've done it several times at the CommonAppDataFolder/Company/Product level. The problem is, when you get into locked down environments and an application saves files which is expected to be available to other profiles on the machine, where exactly can you / should you put it? Is there another location I'm not aware of? – Christopher Painter Feb 14 at 14:23
I tried to suggest that developement write a service that can upload and download documents to a virtual store but they didn't want to do it. They just opened up the product data folder instead. Basically we needed a Public Documents\Company\Product type structure. – Christopher Painter Feb 14 at 14:25
@michael: thank you for answering. My research indicates otherwise. Please refer to stackoverflow.com/questions/5116911/… (the marked answer). This is exactly what I am trying to do. I also see that major sofware vendors are also doing this. – P a u l Feb 14 at 23:58
Michael is right in the general case. I've seen many major software vendors do things that they shouldn't do. – Christopher Painter Feb 15 at 0:26
show 3 more comments
feedback

2 Answers

Why do you need a custom action to insert a row into the lockpermissions table? Just author it directly into the MSI as the Domain and User columns are Formattable.

link|improve this answer
I can't edit the msi with orca everytime I need to do this. This is for an automated build. – P a u l Feb 14 at 23:53
This is also not an 'action'. It is part of a build script. – P a u l Feb 14 at 23:59
What tool are you using to build the original MSI? – Christopher Painter Feb 15 at 0:08
I am using a vanilla visual studio deployment project for a windows forms application. It is all working okay, except if the user has UAC on. Then their data writes go into the blasted virtualstore which is not correct for the 'all users' requirement. – P a u l Feb 15 at 0:15
Ah, that explains your need to postbuild tweak the MSI. Might I suggest looking at two things. 1) Use WiX DTF's Microsoft.Deployment.WindowsInstaller library to write C#/VB classes to update the MSI. Instead of maintaining a list of SQL statements, consider generating a transfrom and then simply using the postbuild to apply the transform to the base MSI. That way you can maintain the transform in Orca rather then SQL. – Christopher Painter Feb 15 at 0:23
show 4 more comments
feedback

I finally got it to work. For the vs2010 install project, COMMONAPPDATAFOLDER is not actually c:\programdata, it is c:\programdata\foocompany where you set foocompany in the project settings. So this does the right thing. 268435456 = all permissions.

'COMMONAPPDATAFOLDER
query = "INSERT INTO `LockPermissions` (`LockObject`, `Table` , `User`, `Permission`) VALUES ('COMMONAPPDATAFOLDER', 'CreateFolder', 'Everyone',  268435456)" 
Set view = database.OpenView (query)         
view.Execute

query = "INSERT INTO `LockPermissions` (`LockObject`, `Table` , `User`, `Permission`) VALUES ('COMMONAPPDATAFOLDER', 'CreateFolder', 'Administrators',  268435456)" 
Set view = database.OpenView (query)         
view.Execute
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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