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 }
|
||
|
}
|