Get-ChildItem "HKLM:\SOFTWARE\Classes" | ?{ ($_.PSChildName -match "^[a-z]+\.[a-z]+(\.\d+)?$") -and ($_.GetSubKeyNames() -contains "CLSID") } | ?{ $_.PSChildName ...
I have installed 2 version of PS , one is 2017 another is 2021. When I run my code in pycharm,the older version will be called. So I uninstalled the 2017 version,but when I run my code again,the PS ...