Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-26 Thread Marco Tognacci
iX-users] XmlFile fail to write on network folder file > > In order to do this you need to run as a user identity that has network > privileges and access to the network location you need to access. If you > have Impersonate=no and Execute=deferred in your custom action, then you >

Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-26 Thread roberthyang
In order to do this you need to run as a user identity that has network privileges and access to the network location you need to access. If you have Impersonate=no and Execute=deferred in your custom action, then you will be running as LocalSystem, which does not have network privileges. mark22

Re: [WiX-users] XmlFile fail to write on network folder file

2014-11-25 Thread Marco Tognacci
I have tried to use a custom action for access the file from a network location, then update its content and save again in the network folder.I have used XDocument.Load(@"\\mynetwork\myfile.xml") to read the file but I receive an access violation exception for the permission.Is there any way for