List uninstall strings using powershell
Monday, 2. June 2008
If you find yourself in the need of the uninstall string of an application and you have powershell installed on the machine, you could easily get a complete list of all installed applications and their uninstall string using the following command:
dir HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | foreach-object {get-itemproperty $_.PSPath} | select-object DisplayName,uninstallstring

DoomsDays Says:
Благодарю за информацию. Я не знал этого.