/ Published in: Visual Basic
PowerShell script.
Get all installed in system COM objects.
Get all installed in system COM objects.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
gci HKLM:\Software\Classes -ea 0| ? {$_.PSChildName -match '^\w+\.\w+$' -and (gp "$($_.PSPath)\CLSID" -ea 0)} | ft PSChildName