As you may have figured out by now there is no quick and easy way to find the .NET framework version currently installed on your server.
Here is a quick and simple way.
1.
Copy and paste the script below into a powershell window and press ENTER. Thats it.Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse | Get-ItemProperty -name Version,Release -EA 0 | Where { $_.PSChildName -match '^(?!S)\p{L}'} | Select PSChildName, Version, Release |
2.
Copy the contents of the script above and place it in notepad, then save it as filename.ps1. To use you simply call the file. See belowI hope this has been informative for you.
0 comments :
Post a Comment