User Tools

Site Tools


programmazione:elenco_dei_programmi_installati

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
programmazione:elenco_dei_programmi_installati [10/06/2017 14:59] – external edit 127.0.0.1programmazione:elenco_dei_programmi_installati [20/12/2021 08:43] (current) lrosa
Line 1: Line 1:
 +====== Elenco dei programmi installati ======
 +
 +<code powershell>Get-WmiObject -Class Win32_Product | Select-Object -Property Name</code>
 +
 +Per confrontare due installazioni esportare su file di testo con 
 +
 +<code powershell>Get-WmiObject -Class Win32_Product | Select-Object -Property Name > elenco1.txt</code>
 +
 +e poi eseguire il confronto con 
 +
 +<code powershell>Compare-Object -ReferenceObject (Get-Content elenco1.txt) -DifferenceObject (Get-Content elenco2.txt)</code>
 +
 +