How to have an uninstall option for an MSI or set up file which was created for an application
I created a setup for the application i created . 开发者_StackOverflow中文版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.
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 :)
精彩评论