Hi,
I'm writing an installer that needs to be run in /PASSIVE mode (i.e. no user intervention), for both installation and removal.
For the latter, removal, I understand I need to stop the installed application before InstallValidate, to prevent a reboot because of files in use. I've read
http://www.advancedinstaller.com/user-g ... ocess.html but it's not quite clear to me what should go in the ActionData field. Is it the full path to the .exe? Or is it the "name" of the .exe?
For example, if I have an exe APPDIR\bin\My Program.exe, should ActionData be
"[My_Program_exe_1]"(the Installation File, quoted, as provided by the Edit Custom Action Parameters)
[My_Program_exe_1] (the Installation File, not quoted)
"My Program" (The name of the .exe, no extension, quoted)
My Program (he name of the .exe, no extension, not quoted)
"My Program.exe" (The full name of the .exe, no path, quoted)
My Program.exe (The full name of the .exe, no path, not quoted)
Or should it be some other value that I haven't thought of yet?
And, as a follow up, I assume the same value should go into the ActionData of StopProcess, too?
Kind Regards,
Charles