Visual Studio: Create An Uninstaller Shortcut In Your Installer Wizard
Posted by tech on
February 6, 2009
Creating a setup wizard within Visual Studio does not include an uninstall shortcut with it. The
easiest and quickest way would be to do the following. This post assumes you already know how to create a setup wizard.
Create a batch file (say name it uninstall.bat) with the contents below
@echo off
msiexec /x {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
Where {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} is the product code that is found in your setup project’s product code. Make sure you include the brackets as well.
Under Application Folder, right click, choose ADD, then FILE and browser to where uninstall.bat is located. Under User’s Program Menu, right click and create a shortcut. Then browser to Application Folder and choose the uninstall.bat file that you just added.
Rebuild your project and voila! Your uninstall shortcut is now included when the setup wizard installs your application.
Found this post useful? Donations appreciated. Every little $ helps.








January 31st, 2010 at 8:05 am
thanks a lot dude.
but in my case the directory structures created by install application remain unhanded.
would you tell me how to remove them too?
January 31st, 2010 at 8:10 am
im sorry. what do you mean by unhanded?
August 30th, 2010 at 1:09 pm
This is a valid way for uninstalling, however there is also ther ways. For example bu calling msiexec from within the application itself, an example of this can be seen here: http://endofstream.com/creating-uninstaller-in-a-visual-studio-project/
Best reagads