Re: [WiX-users] How to run sqlcmd on uninstall

2009-02-03 Thread David Reed
.co.nz] Sent: Sunday, February 01, 2009 19:09 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] How to run sqlcmd on uninstall I am trying to run a sqlcmd on uninstall without success. Here is what I am doing: REMOVE ~= "ALL" AND (NOT OLDERVERSIONBEINGUPGRADED)

[WiX-users] How to run sqlcmd on uninstall

2009-02-01 Thread Joe Osman
I am trying to run a sqlcmd on uninstall without success. Here is what I am doing: REMOVE ~= "ALL" AND (NOT OLDERVERSIONBEINGUPGRADED) BinaryKey="RemoveDBSQL" ExeCommand="sqlcmd.exe -s localhost -E -i deleteUsers.sql" Execute="deferred"