LKBEN11525: Howto find the .Net Version installed on your windows 10 system


Symptom

You need to find out which version of .Net framework is installed on your machine

Cause

Needed for some powershell scripts to call .NET functions

Solution

to find the version of the .NET framework you can have a look in the registry or use the following powershell script.

Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match 'Client|Full'} | Select PSChildName, version

The result should look like:

PSChildName Version
----------- -------
Client      4.8.04084
Full        4.8.04084
Client      4.0.0.0

 

Have fun.

Disclaimer:

The information provided in this document is intended for your information only. Lubby makes no claims to the validity of this information. Use of this information is at own risk!

About the Author

Author: Wim Peeters - Keskon GmbH & Co. KG

Wim Peeters is electronics engineer with an additional master in IT and over 30 years of experience, including time spent in support, development, consulting, training and database administration. Wim has worked with SQL Server since version 6.5. He has developed in C/C++, Java and C# on Windows and Linux. He writes knowledge base articles to solve IT problems and publishes them on the Lubby Knowledge Platform.

Latest update: 18.10.2021 | Comment: