Check Installed Software.txt - Notepad

Check Installed Software

The below PowerShell script can be used to confirm if a particular piece of software is installed on multiple computers. In this example we use Microsoft Project.
(Get-Content C:\Users\beare\computer_names.txt) |
Foreach-Object {
get-wmiobject -computername $_ -class win32_product -filter "name like 'Microsoft Office Project Professional 2010'" | select-object "__SERVER", "name"
} |
out-file c:\users\beare\software_results.txt

Back