Re: [WiX-users] Optionally keep a file on MajorUpgrade

2012-02-09 Thread Alexander Krivács Schrøder
rmaid.no] Sent: Wednesday, February 08, 2012 6:11 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Optionally keep a file on MajorUpgrade I have an installer that installs a configuration file, like so: KEEP_EXISTING_CONFIG = 1 AND APPCONFIGEXISTS ... The APPCO

Re: [WiX-users] Optionally keep a file on MajorUpgrade

2012-02-08 Thread Sameer Arora
I had a similar requirement, but not exactly. In my case - config file was getting generated instead of being installed (it's more like "data" file rather than config file) - we needed to keep the file mandatorily during an upgrade/repair, but remove it on uninstall. Since it was a generated file,

Re: [WiX-users] Optionally keep a file on MajorUpgrade

2012-02-08 Thread Wilson, Phil
M To: wix-users@lists.sourceforge.net Subject: [WiX-users] Optionally keep a file on MajorUpgrade I have an installer that installs a configuration file, like so: KEEP_EXISTING_CONFIG = 1 AND APPCONFIGEXISTS ... The APPCONFIGEXISTS is brought out like so:

Re: [WiX-users] Optionally keep a file on MajorUpgrade

2012-02-08 Thread nagesh vanam
unsubscribe 2012/2/8 Alexander Krivács Schrøder > I have an installer that installs a configuration file, like so: > > > > Guid="{E56D54A5-0646-4D0C-9F95-73F82E293705}" Directory="INSTALLLOCATION"> > > >KEEP_EXISTING_CONFIG = 1 AND > APPCONFIGEXISTS > > ... > > > The APPCO

[WiX-users] Optionally keep a file on MajorUpgrade

2012-02-08 Thread Alexander Krivács Schrøder
I have an installer that installs a configuration file, like so: KEEP_EXISTING_CONFIG = 1 AND APPCONFIGEXISTS ... The APPCONFIGEXISTS is brought out like so: The KEEP_EXISTING_CONFIG is a command-line variable, sent in to msiexec.exe. This confi