Dec 1 2008

Setting registry permissions via WiX

Category: .NetRory Primrose @ 11:33

I posted previously about creating EventLog sources without administrative rights. Part of this solution requires that account running the application has rights to create subkeys and write values to the EventLog in the registry. WiX is being used as the installation product so the answer is something like this for the registry key:

<Permission User="[APP_POOL_USER_NAME]" CreateSubkeys="yes" Write="yes"/> 

I found that this didn't work and it failed with the message:

ExecSecureObjects:  Error 0x80070534: failed to get sid for account

The answer to this was that I was not defining the domain for the account. By default, I think it attempts to find the user on the local machine.

Unfortunately it still didn't work. Setting permissions using the alternative element did seem to work successfully.

<util:PermissionEx Domain="[APP_POOL_USER_DOMAIN]" User="[APP_POOL_USER_NAME]" CreateSubkeys="yes" Write="yes" />

Tags: ,

Add comment


(Will show your Gravatar icon)

  Country flag

biuquote
  • Comment
  • Preview
Loading