Thursday, March 2, 2023

How to Check the .NET Framework Version with PowerShell? - how to see max net framework installed

 how to see max net framework installed


Get-ChildItem ‘HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP’ -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match ‘^(?!S)\p{L}’} | Select PSChildName, version

No comments:

Post a Comment