Get all installed in system COM objects


/ Published in: Visual Basic
Save to your folder(s)

PowerShell script.
Get all installed in system COM objects.


Copy this code and paste it in your HTML
  1. gci HKLM:\Software\Classes -ea 0| ? {$_.PSChildName -match '^\w+\.\w+$' -and (gp "$($_.PSPath)\CLSID" -ea 0)} | ft PSChildName

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.