My installer needs to create a directory to put log files in. Any user should 
be able to create file and write to them in this directory, but only Admins 
should be able to read the files. The parent folder allows users to read files, 
so I need to set to specifically deny the "Users" group read access. How do I 
do this? Simply setting "no" (as below) causes the folder to inherit the parent 
folder's setting.

        <CreateFolder Directory="LOGS" >
            <Permission User="Administrators" Extended="yes" GenericAll="yes" />
            <Permission User="Users" Extended="yes" Read="no" 
GenericExecute="yes" GenericWrite="yes" Traverse="yes" />
            <Permission User="NetworkService" Extended="yes" Read="no" 
GenericExecute="yes" GenericWrite="yes" Traverse="yes" />
        </CreateFolder >

Thanks a million!
Phil.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to