Developer
Developer

Reputation: 8636

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 . 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

Answers (1)

LaGrandMere
LaGrandMere

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

Related Questions