https://support.microsoft.com/it-it/win ... f927e1eb4d
- Strumento di risoluzione problemi di installazione
2) Articolo DELL
Windows 11, and Windows 10: Various methods to uninstall problematic Programs and Apps
3) Use PowerShell to find list of installed software quickly
Articolo
In this method, we simply paste a simple query:
Code: Select all
Get-WmiObject -Class Win32_Product
Code: Select all
Get-WmiObject -Class Win32_Product | where vendor -eq CodeTwo | select Name, Version
4) Program Not Present in Control Panel, How to Uninstall ?
Articolo
Code: Select all
et-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name
Code: Select all
msiexec /x {your-product-code}
5) Powershell Uninstall-Package
MS Powershell Uninstall-Package
Example 1: Uninstall a package
Code: Select all
PS> Uninstall-Package -Name NuGet.Core
Code: Select all
PS> Get-Package -Name NuGet.Core -RequiredVersion 2.14.0 | Uninstall-Package