installing dynamic config files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an XML file that is dynamically updated when the MSI is run. I want to then copy that to the PDA as part of the install, how can I do this?
 
You will need to create a custom action (see MSI SDK) that uses RAPI to
communicate with the device.
The MSDN article shows how to create a custom action:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/netcfdeployment.asp
You can add RAPI functionality to it by using OpenNETCF.Communication
namespace

--
Alex Feinman
---
Visit http://www.opennetcf.org


lang said:
I have an XML file that is dynamically updated when the MSI is run. I want
to then copy that to the PDA as part of the install, how can I do this?
 
Back
Top