Find available COM objects and WMI Classes with Powershell
Find available COM objects and WMI Classes with Powershell
When attempting to build powershell functions to an application without a documented API, one trick I have learned is to take a look at the WMI classes and COM Objects to see what they offer. Here is how to list both WMI and COM objecs.
WMI
get-wmiobject -List | ft name
Simple and to the point. This Lists all WMI Classes that are available on the computer.
COM
Get-ChildItem HKLM:\Software\Classes -ErrorAction SilentlyContinue | Where-Object { $_.PSChildName -match '^\w+\.\w+$' -and (Test-Path -Path "$($_.PSPath)\CLSID")} | Select-Object -ExpandProperty PSChildName
Little bit more complicated but the end results are the same
From here you can start playing with any interesting objects to see what they have to offer.
Enjoy
Jeff
External Resources:
http://www.powershellmagazine.com/2013/06/27/pstip-get-a-list-of-all-com-objects-available/