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
Благодарю за информацию. Я не знал этого.