Locating the Microsoft .NET Framework can easily be done through a Windows 10 PowerShell command string
Follow the following steps to determine the .NET version:
...
You can use PowerShell to check the .Net version on Windows 10:
- Click the Start button at the bottom left end of the taskbar.
- In the "Type here to search" text box, type "PowerShell"
- Right-click and select the select Run as administrator optionadministrator.
- Copy - and - paste or type the following command in the PowerShell command window and 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 - If completed properly, it will display the current
The command will return the information for both the client and the full version of .NET installed
into this Windows machineon Windows 10 (if applicable).