In this Article you will learn how to Make a uninstall shortcut with Visual studio setup project.
A simple solution that I use:Make a batch file (Uninstall.bat) with the following call@echo offmsiexec /x {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}(Path depends of your Windows version, check where your system32 folder is located)That last part is the product code which you can find in the properties of your setup project.
Printing in C# Made Easy