Reputation: 8636
I created a setup for the application i created . What i need is to have an uninstall option in the start Menu where the programs are displayed and also in the folder where the application is installed.
Upvotes: 3
Views: 1479
Reputation: 10359
I'm not sure since I never tried but ...
To uninstall a MSI, from what I read in MSDN, you can always run your MSI with the /uninstall
option.
Maybe all you need is to create a link in your User Start Menu to call :
msiexec /uninstall package.msi
Here is a link where everything is explained : Create Uninstall MSI Shortcut
Give it a try :)
Upvotes: 5