How do you check the .NET Framework version installed on Windows 10?
Question
How do you check the .NET Framework version installed on your computer?
Environment
Windows 10 and later.
Answer
To check the .NET Framework version currently installed, open a PowerShell command prompt running as Administrator and type in the following command:
"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"
You will receive a list of versions currently installed: