Silent uninstall an old InstallShield based setup
Hi everyone
I'm trying to silently uninstall an application (Novell GroupWise 6.5) which is based on an old InstallShield setup. The uninstall string is as follows:
%WIN%\IsUn0407.exe -fC:\Programme\GroupWise\DeIsL1.isu -cC:\WINDOWS\system32\gwuninst.dll
However, there are a few message boxes asking for confirmation and telling that setup has finished uninstalling. How can I suppress those message boxes? Do I have to edit the .isu file? If yes, how (it's obviously not a simple text file). Or what are the usual parameters for that?
Unfortunately, the /? parameter doesn't work.
Any ideas? Thanks you so much.
Roland
I'm trying to silently uninstall an application (Novell GroupWise 6.5) which is based on an old InstallShield setup. The uninstall string is as follows:
%WIN%\IsUn0407.exe -fC:\Programme\GroupWise\DeIsL1.isu -cC:\WINDOWS\system32\gwuninst.dll
However, there are a few message boxes asking for confirmation and telling that setup has finished uninstalling. How can I suppress those message boxes? Do I have to edit the .isu file? If yes, how (it's obviously not a simple text file). Or what are the usual parameters for that?
Unfortunately, the /? parameter doesn't work.
Any ideas? Thanks you so much.
Roland
0 Comments
[ + ] Show comments
Answers (10)
Please log in to answer
Posted by:
nadler
16 years ago
ORIGINAL: rpfenninger
Hi everyone
I'm trying to silently uninstall an application (Novell GroupWise 6.5) which is based on an old InstallShield setup. The uninstall string is as follows:
%WIN%\IsUn0407.exe -fC:\Programme\GroupWise\DeIsL1.isu -cC:\WINDOWS\system32\gwuninst.dll
However, there are a few message boxes asking for confirmation and telling that setup has finished uninstalling. How can I suppress those message boxes? Do I have to edit the .isu file? If yes, how (it's obviously not a simple text file). Or what are the usual parameters for that?
Unfortunately, the /? parameter doesn't work.
Any ideas? Thanks you so much.
Roland
Hi rpfenninger
try to simply add the parameter -a in front of -f
IsUn0407.exe -a -fC:\Programme
Comments:
-
after 12 years. it still works :D - theprofessor 4 years ago
Posted by:
Secondlaw
16 years ago
Posted by:
akhlaque
16 years ago
Have u tried creating an .iss file (installshield answer file).
Have a look to this as well http://itninja.com/blog/view/installshield-setup-parameters.
Have a look to this as well http://itninja.com/blog/view/installshield-setup-parameters.
Posted by:
rpfenninger
16 years ago
Posted by:
akhlaque
16 years ago
Try this utility to find the commandline options in ur exe.
http://www.msfn.org/board/index.php?http://www.msfn.org/board/Universal-Silent-Switch-Finder-01-t17940.html
_________________________________________
Akhlaque
http://www.msfn.org/board/index.php?http://www.msfn.org/board/Universal-Silent-Switch-Finder-01-t17940.html
_________________________________________
Akhlaque
Posted by:
Coriolus
16 years ago
Posted by:
nmi
16 years ago
ORIGINAL: rpfenninger
@Secondlaw: I'd use AutoIt only as a last resort.
Best of luck! I spent days looking for ways to remove these packages without getting some form on confirmation box (usually the "Are you sure you wish to uninstall?" one) and Autoit was the only solution that worked. In the end, I ran out of time trying to find a solution using the installshield tools. Maybe there is a solution out there, but Autoit worked for us.
nmi
Posted by:
anonymous_9363
16 years ago
The original IS Setup stub should be able to build the ISS file. If the stub is no longer available, if it were me, I'd capture the uninstall you have, simply to get a list of the files and registry settings involved and then build a custom script to replicate its behaviour. *MUCH* neater than AutoIt-style utilities which have the potential to fail if they encounter unexpected windows. Of course, you won't have to have individual lines for each file's deletion: you can use the FileSystemObject's methods to delete all files in a folder, then delete the empty folder.
Posted by:
anonymous_9363
16 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.