Created
February 16, 2016 20:52
-
-
Save vstebunov/8da1a061552f07cdcff7 to your computer and use it in GitHub Desktop.
Get all COM objects by powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gci HKLM:\Software\Classes -ea 0| ? {$_.PSChildName -match '^\w+\.\w+$' -and (gp "$($_.PSPath)\CLSID" -ea 0)} | ft PSChildNam |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment