This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: uninstall with msiexec
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 02, 2008
11:23 PM
uninstall with msiexec
hi
After uninstallation program with msiexec /x "Produkt.msi" I still have program in Add/Remove in control panel and if I launch setup.exe again it still run with MAINTENANCE mode. What's problem? Can anyone help me?
Thanks
After uninstallation program with msiexec /x "Produkt.msi" I still have program in Add/Remove in control panel and if I launch setup.exe again it still run with MAINTENANCE mode. What's problem? Can anyone help me?
Thanks
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 03, 2008
11:57 AM
Maybe the uninstall encountered an error and rolled back. I would enable MSI logging before starting the uninstall and then check the log.
You can enable MSI logging by default via Registry by creating the following path and key:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer
Reg_SZ: Logging
Value: voicewarmup
The log files will be created in your temp folder as MSI*.log
Or just add /L to the commandline call
e.g. msiexec /x "Produkt.msi" /Lvoicewarmup c:\tmp\uninstall.log
-Sandra
You can enable MSI logging by default via Registry by creating the following path and key:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer
Reg_SZ: Logging
Value: voicewarmup
The log files will be created in your temp folder as MSI*.log
Or just add /L
e.g. msiexec /x "Produkt.msi" /Lvoicewarmup c:\tmp\uninstall.log
-Sandra
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 03, 2008
12:00 PM
Incase anyone else was wondering what voicewarmup was:
v Verbose output
o Out-of-disk-space messages
i Status messages
c Initial UI parameters
e All error messages
w Non-fatal warnings
a Start up of actions
r Action-specific records
m Out-of-memory or fatal exit information
u User requests
p Terminal properties
+ Append to existing file
! Flush each line to the log
v Verbose output
o Out-of-disk-space messages
i Status messages
c Initial UI parameters
e All error messages
w Non-fatal warnings
a Start up of actions
r Action-specific records
m Out-of-memory or fatal exit information
u User requests
p Terminal properties
+ Append to existing file
! Flush each line to the log
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 06, 2008
08:11 AM
What kind of product is the installation? If it is an InstallScript MSI, and you uninstall by running msiexec, you skip any scripted functionality you have authored in, and you also leave behind the registry uninstall keys that the script creates to facilitate a scripted uninstall from Add/Remove Programs.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 09, 2009
11:44 AM
KathyMorey wrote:
What kind of product is the installation? If it is an InstallScript MSI, and you uninstall by running msiexec, you skip any scripted functionality you have authored in, and you also leave behind the registry uninstall keys that the script creates to facilitate a scripted uninstall from Add/Remove Programs.
Why is that? I have encountered this behaviour and thought it a bug, since after removing everything except the registry uninstall keys, the behaviour described in the first post applies (i.e. maintenance only; trying to use the uninstall option displays an error message saying that the application needs to be installed for this action to be performed)
Is there a way of using msiexec.exe to perform a full uninstall for InstallScript MSI scripts projects?