mirror of
https://github.com/mgeeky/Penetration-Testing-Tools.git
synced 2024-11-21 18:11:37 +01:00
3 lines
160 B
PowerShell
3 lines
160 B
PowerShell
function Find-CLSIDForProgID($ProgId) {
|
|
Get-ChildItem REGISTRY::HKEY_CLASSES_ROOT\CLSID -Include PROGID -Recurse | where {$_.GetValue("") -match $ProgId }
|
|
} |