Hi all,

 

I have a wix deployment project where I need to grant the ASPNET user
permissions to a certain folder. 

This works fine with the following  lines:

 

<Directory Id='PROJECTS' Name='PROJ' LongName='projects'>

  <Component Guid='128A5F62-22AB-4fef-AA97-94D95DA2A554'
Id='CreateProjects'>

    <CreateFolder>

      <Permission 

User='ASPNET'

GenericRead='yes' 

ReadPermission='yes' 

Read='yes' 

GenericWrite='yes' 

CreateFile='yes' 

CreateChild='yes' 

GenericAll='yes' 

Extended='yes' 

Domain='[ComputerName]'/>

   

 

But when I try to change it to work with the IUSR of W2K8 server, I get an
error stating that the user with the SID: IUSR cannot be found.

I use the following line to define the permission for the IUSR:

 

<Directory Id='PROJECTS' Name='PROJ' LongName='projects'>

  <Component Guid='128A5F62-22AB-4fef-AA97-94D95DA2A554'
Id='CreateProjects'>

    <CreateFolder>

      <Permission 

User='IUSR'

GenericRead='yes' 

ReadPermission='yes' 

Read='yes' 

GenericWrite='yes' 

CreateFile='yes' 

CreateChild='yes' 

GenericAll='yes' 

Extended='yes' 

Domain='[ComputerName]'/>

 

 

Anyone else who have had this problem?

Is there a way around it?

 

/Tobias

 

 

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to