Skip to content

Instantly share code, notes, and snippets.

@vstebunov
Created February 16, 2016 20:52
Show Gist options
  • Save vstebunov/8da1a061552f07cdcff7 to your computer and use it in GitHub Desktop.
Save vstebunov/8da1a061552f07cdcff7 to your computer and use it in GitHub Desktop.
Get all COM objects by powershell
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