Powershell Software Inventory

Powershell Software Inventur

Mit einem Einzeiler lassen sich nicht Microsoft-Produkte im Nu inventarisieren und in eine .csv Datei übergeben.

Powershell anzeigen

Get-Content “Computernamen.txt” | foreach {Get-wmiobject -computername $_ -query “SELECT * FROM Win32_Product where not Vendor like ‘%Microsoft%'” } | export-csv “Softwareinventory.csv” -notypeinformation

Powershell Software Inventory

Powershell SoftwareInventory