Archive: uninstall Dotnet application in silent mode


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 ?


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.


thx you