c# - Creating Uninstaller Using Visual Studio 2008 -
i know how create installer application want know how add uninstaller applications work group. there anyway add visual studio 2008 deployment project. or have create separate application altogether?
as other answers stated, there uninstaller feature provided installer project.
besides that, this link explains how create short cut uninstaller feature, users expect present somewhere in start menu.
as alternative batch file described in blog post, create short cut file (.lnk
file) launches command batch file (msiexec /x [productcode]
). assign nice icon , include file setup project.
as last step, let installer copy link file directly creted start menu folder.
hope helps.
Comments
Post a Comment