cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
tnand53
Level 5

InstallShiled error /messagebox while restarting

When I uninstall my application. It asks for a restart (I am not forcing a restart at end of uninstallation) and after restarting it show up a messagebox which has "C:\Program Files\InstallShield Installation Information\{F0879461-3654-49D8-864E-DB2E92A3F614}\setup.exe" message.
Windows cannot find 'C:\Program Files\InstallShield Installation Information\{F0879461-3654-49D8-864E-DB2E92A3F614}\setup.exe'. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search.

I do not know why this is happenning. I am using installscript project which acts as a wrapper to my installshield objects.
Labels (1)
0 Kudos
(2) Replies
jcelano
Level 2

I am having the same error and was wondering if you have solved this issue. Any help or pointers would be great.

thx,

Joe C
0 Kudos
tnand53
Level 5

There were certain .exe file which were running..Therfore I had to kill the process..

You can kill the process by using taskkill.exe which is available in XP and VISTA or
use the below IS function

hWnd = FindWindow("", "Name of your Process");
if hWnd != NULL then
PostMessage(hWnd, WM_CLOSE, 0, 0);
Endif;


Hope u ve found the solution
0 Kudos