Re: [WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-28 Thread Marco Tognacci
I have tried making a perUser setup but even in this case it report the same error, the setup can't find the network location.So what can i make for making this working? Date: Mon, 26 Jan 2015 14:55:30 -0700 From: phogl...@rimage.com To: wix-users@lists.sourceforge.net Subject: Re:

Re: [WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-28 Thread Phil Wilson
Not only do mapped drive letters belong to a user, but impersonated custom actions do not load the user's profile, so trying to access that user's documents folder from code will fail unless you arrange to use the appropriate Windows Installer property, probably AppDataFolder. In other words using

Re: [WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-26 Thread Phill Hogland
I think that this was pointed out earlier, but mapped network drives are User resources and may not be defined for another user, and would not be available to localSystem. -- View this message in context:

[WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-26 Thread Marco Tognacci
I have changed the code for using XmlConfig instead of XmlFile, but the result is the same:The file is installed correctly but when the XmlFile or the XmlConfig try to access the file to change an elment of the xml fileit report an error that say that it can't find the Drive on network, and the

Re: [WiX-users] FW: Burn error with document folder on network location (works fine running only the msi)

2015-01-26 Thread Hoover, Jacob
Is this a per-user or per-machine install? If it's per user, the install should not be elevated and it should run in the same context as the logged in user. If it's a per-machine install, then it will be elevated but it shouldn't be writing out required files to a per-user Documents folder.