Risolvere i problemi che impediscono l'installazione o la rimozione dei programmi in Windows

Argomenti vari di carattere sistemistico
Post Reply
daniele
Posts: 333
Joined: 04 Mar 2009, 13:59

Risolvere i problemi che impediscono l'installazione o la rimozione dei programmi in Windows

Post by daniele »

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:

Code: Select all

Get-WmiObject -Class Win32_Product
Also, we can filter the data to find specific applications from a single vendor, together with their versions, for example:

Code: Select all

Get-WmiObject -Class Win32_Product | where vendor -eq CodeTwo | select Name, Version

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

Code: Select all

et-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name
Teoricamente quello seguente è il comando per disinstallare, ma non sembra funzionare: vedere quindi la controparte Powershell al prossimo punto

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
Example 2: Use the pipeline to uninstall a package

Code: Select all

PS> Get-Package -Name NuGet.Core -RequiredVersion 2.14.0 | Uninstall-Package
Post Reply