A new Flexera Community experience is coming on November 25th. Click here for more information.
This article describes two ways to verify your current installed version of the .NET Framework.
Run the following PowerShell script, changing the number at the end to correspond to the minimum version in the chart below you want to verify.
The following script example would check for .NET version 4.6.2 or below.
(Get-ItemPropertyValue -LiteralPath 'HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' -Name Release) -ge 394802
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full
For example, the minimum version table shows that this device is currently running version release 528449, which corresponds to version 4.8 of the .NET Framework.
For more details, see the Microsoft article, How to: Determine which .NET Framework versions are installed.
Aug 22, 2024 04:11 PM