Deploment project
-
Dear friends, I have made the deployment project. Now I want toplace the uninstall icon in the program floder so when the user clicks ont he uninstall icon the setup should run. the user must not have to go to add/remove program to uninstall the program. how should i do it???? Thanks Taher
-
Dear friends, I have made the deployment project. Now I want toplace the uninstall icon in the program floder so when the user clicks ont he uninstall icon the setup should run. the user must not have to go to add/remove program to uninstall the program. how should i do it???? Thanks Taher
There is a little bit of work to do here, but you can do it. You need to use the command line windows installer to un-install the product. So the command line would be something like msiexec /x {460FB517-716B-4495-B3CE-44799A75D868} So if you provide a shortcut to something that will run that command it should unstall your product. NOTE the GUID ({460FB517-716B-4495-B3CE-44799A75D868}) that is above can be found when you click on your setup project and then go to properties. It is the ProductCode. This can change if you put out new versions of your installer. Anyway, I hope that helps. Ben