Risolvere i problemi che impediscono l'installazione o la rimozione dei programmi in Windows
Posted: 08 Dec 2023, 12:29
1) Articolo e tools Microsoft
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:
Also, we can filter the data to find specific applications from a single vendor, together with their versions, for example:
This method is quite easy. But it has a downside that it takes quite a while to return the results
4) Program Not Present in Control Panel, How to Uninstall ?
Articolo
Teoricamente quello seguente รจ il comando per disinstallare, ma non sembra funzionare: vedere quindi la controparte Powershell al prossimo punto
5) Powershell Uninstall-Package
MS Powershell Uninstall-Package
Example 1: Uninstall a package
Example 2: Use the pipeline to uninstall a package
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