how write and add uninstaller by vb.net ?
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
how can I write uninstaller by vb.net that will unistall my installed program. tbhattacharjee
-
how can I write uninstaller by vb.net that will unistall my installed program. tbhattacharjee
You can uninstall an .MSI (Windows Installer) installed application just by launching the .MSI file with the /x switch:
msiexec /x full_path_to_filename.MSI
RageInTheMachine9532