How can we help you today?

Checking the .NET framework installed on your MyWorkDrive server

You are here:
< Back

If you get an error about .NET framework while using MyWorkDrive, you may find it necessary to validate the .NET version installed on your MyWorkDrive server.

 

Powershell

From an Elevated Powershell session, run

>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

 

 

Command Line

This produces a less easy to read list, but if you scan through will provide you with all the versions installed

 

From an Elevated Command window, run

>reg query “HKLM\SOFTWARE\Microsoft\Net Framework Setup\NDP” /s

 

 

There are other methods including browsing DLLs and editing the register, additional methods are listed in this article

https://www.windowscentral.com/how-quickly-check-net-framework-version-windows-10