Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
Viewing all articles
Browse latest Browse all 8583

Getting WMI Information

$
0
0

The first line works and returns software

Get-WmiObject -Class Win32_Product | Select-Object -Property Name -unique

 

I want to get all information about 1 software app

Get-WmiObject -Class Win32_Product | Select-Object -Property Name -contains 'Acme'

this does not work.  I've tried -LIKE and it too does not work.

How do you find all WMI information for just 1 installed software?

 

 

 


Viewing all articles
Browse latest Browse all 8583

Trending Articles