uninstall menu in start menu
-
hi all, i want to make a setup file in vc# 2005 in such a way that uninstall menu should appear in start menu so that user can uninstall the application from start menu itself without going to control panel. thanks in advance.
-
hi all, i want to make a setup file in vc# 2005 in such a way that uninstall menu should appear in start menu so that user can uninstall the application from start menu itself without going to control panel. thanks in advance.
1. Create a "Uninstall.bat" file and include the following line: msiexec /x {your product code} (Replace the "your product code" with your product code GUID.) 2. Add the BAT file to your application folder. 3. Add a shortcut that points to the BAT file and move this to "User's Program Menu". 4. Set the "ShowCmd" property of the shortcut to "vsdscMinimized". -- modified at 8:25 Monday 2nd April, 2007
Thanks & Rgds, Sri..