uninstalling Cognos Impromptu 6.x
I've sorted out how to install it, but I'm tired of trying variations in syntax to uninstall. If anyone has a working command, please share.
Thanks.
Thanks.
0 Comments
[ + ] Show comments
Answers (9)
Please log in to answer
Posted by:
anonymous_9363
13 years ago
Posted by:
suchi.jigar
13 years ago
See....1st thing is anyhow you will have to find out silent parameters for the uninstallation, if u do not get it use following process.
1) Capture whole application, through wise package studion in the form of .wse file instead of .wsi file
2) compile it, you will get exe file
3) on the clean machine install this exe
4) you will get 1 unwise.exe and install.log file
5) on any machine where youe application is installed, keep these 2 files and trigger the uninstallation
unwise.exe [path to install.log] /s
6) remember this is the last option......
1) Capture whole application, through wise package studion in the form of .wse file instead of .wsi file
2) compile it, you will get exe file
3) on the clean machine install this exe
4) you will get 1 unwise.exe and install.log file
5) on any machine where youe application is installed, keep these 2 files and trigger the uninstallation
unwise.exe [path to install.log] /s
6) remember this is the last option......
Posted by:
turbokitty
13 years ago
Yeah, the uninstall key is a loud uninstaller that is not automated.
There's an uninst.exe with some parameters that will allow a silent install, but you need to have an uninstall.ini file... and they don't tell you how to code the ini file to make it silent and the installation ini doesn't work.
With version 7.x and up, they tell you how to code the ini file, but those settings don't work on version 6.. and they say that "silent uninstalls are a new feature to version 7". It installs silently, it's annoying that they didn't tell you how to uninstall it that way.
I'm trying not to recapture suchi.jigar.
If I have to, I'll use AutoIt.
There's an uninst.exe with some parameters that will allow a silent install, but you need to have an uninstall.ini file... and they don't tell you how to code the ini file to make it silent and the installation ini doesn't work.
With version 7.x and up, they tell you how to code the ini file, but those settings don't work on version 6.. and they say that "silent uninstalls are a new feature to version 7". It installs silently, it's annoying that they didn't tell you how to uninstall it that way.
I'm trying not to recapture suchi.jigar.
If I have to, I'll use AutoIt.
Posted by:
suchi.jigar
13 years ago
Posted by:
turbokitty
13 years ago
Posted by:
anonymous_9363
13 years ago
Turbs, so it is a silent install you're after. If it were me, I'd build an uninstalling MSI. Add the main folder to the RemoveFile table and the main registry key (if any) to the RemoveRegistry table and let it rip. MUCH easier than faffing with AutoIT, WiseScript and the rest.
I built a similar package to uninstall WinZip which had been deployed by Group Policy to a collection of machines using an account which no longer existed. As you may know, GP-deployed apps can't be installed in any normal fashon, even by the administrator so the Birmingham Screwdriver was called for.
I built a similar package to uninstall WinZip which had been deployed by Group Policy to a collection of machines using an account which no longer existed. As you may know, GP-deployed apps can't be installed in any normal fashon, even by the administrator so the Birmingham Screwdriver was called for.
Posted by:
suchi.jigar
13 years ago
Posted by:
anonymous_9363
13 years ago
No, wrong. I suggested creating an uninstall MSI. Cognos is a pretty straight-forward app in its file structure and registry usage. The only potential fly in the ointment is COM registration but I only have my v7 package to go by.
In that version, I see MSRichText, SSCalendar and TrueDBGrid being registered. They're probably safe to leave in place. The remaining registry junk is under 'HKLM\Software\Cognos' and 'HKCU\Software\Cognos.' We can add the 'Uninstall' information that the old installer used to our list.
File-wise, it's '[ProgramFilesFolder]Cognos' and '[CommonFilesFolder]Cognos'.
That's about it. Easy to build an uninstalling MSI from that information.
In that version, I see MSRichText, SSCalendar and TrueDBGrid being registered. They're probably safe to leave in place. The remaining registry junk is under 'HKLM\Software\Cognos' and 'HKCU\Software\Cognos.' We can add the 'Uninstall' information that the old installer used to our list.
File-wise, it's '[ProgramFilesFolder]Cognos' and '[CommonFilesFolder]Cognos'.
That's about it. Easy to build an uninstalling MSI from that information.
Posted by:
turbokitty
13 years ago

so that the conversation will remain readable.