SHOW EVERYONE HOW TO MAKE AN UNINSTALL FILE
C#
1
Posts
1
Posters
0
Views
1
Watching
-
We don't need to use another installer to make an uninstall file. Only msi package of WinXP, we can make an simple uninstall file automatically to help us much in development progress. An unique command like MSIEXEC /X {ProductCode} in Uninstall.bat. For {ProductCode}, after selecting Project in Solution Explorer, we access View/Property Window, surely {ProductCode} is in this grid. Concurrently we make a shortcut of Uninstall file in program file. Finally, our app is convienent for users. [Uninstall.bat] MSIEXEC /X {ProductCode} It seems to be a bad way but it's also a way
It seem to be a solution or an answer.