Posts

Showing posts from April, 2022

How to Use PowerShell to Check .NET Framework Version

Image
Published by Kakanyero Robson Jimmy | Skytech256 For whatever reason, you may want to check the .NET Framework version installed on your computer. In this post, I’ll show you how to check the .NET Framework version using PowerShell and other three tools. How to check .NET Framework version using PowerShell You can easily use PowerShell to check the .NET Framework version installed on your computer. Here’s how to do it: 1) Right-click on the  Start  menu button at the bottom corner of the desktop and select  Windows Powershell (Admin) . Then Powershell will open as administrator. 2) At the PowerShell window, type the following command (you can copy and paste the command), then press  Enter : 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 This will list all .NET Framework versions installed on your computer (Your computer can have multiple version