Skip to content
⌘ NSIS Forum Archive

uninstall Dotnet application in silent mode

3 posts

JCD29#

uninstall Dotnet application in silent mode

dear all
I install in silent mode an application done with .Net technology. So I managed to install the .msi in silent.. but how to uninstall it ? I don't know how to do ?
kichik#
If it created an entry in the Add/Remove Control Panel, take a look at HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall and copy UninstallString. You can also call msiexec with the /uninstall switch and the GUID for the product. Run "msiexec /?" for more information.