altiris

How to stop a running process during an MSI based un-install?

心不动则不痛 提交于 2019-12-01 21:32:01
问题 I'm using Wise Package Studio 7.0 SP2 on Windows XP. I've got an MSI Wrapped EXE installation that goes about happily installing some files and then running one of the files from the installation which we can refer to as app.exe. So on the "Execute Deferred" tab of the MSI Editor, I had to add the lines: If Not Installed then Execute Installed Program app.exe (Action) End This ensured that my app.exe would be run only on an installation and not during a modify/repair/removal. When app.exe

How to stop a running process during an MSI based un-install?

▼魔方 西西 提交于 2019-12-01 18:39:45
I'm using Wise Package Studio 7.0 SP2 on Windows XP. I've got an MSI Wrapped EXE installation that goes about happily installing some files and then running one of the files from the installation which we can refer to as app.exe. So on the "Execute Deferred" tab of the MSI Editor, I had to add the lines: If Not Installed then Execute Installed Program app.exe (Action) End This ensured that my app.exe would be run only on an installation and not during a modify/repair/removal. When app.exe runs, it conveniently adds itself to the system tray. I'm looking for something that will do the reverse