Summary
This article provides steps to easily find out which .NET Versions are installed on your system.
Synopsis
You want to easily find out which .NET Versions are installed on your system for Spider.
Discussion
Follow these steps:
- Open PowerShell (or ISE)
- Paste the following command (in one line!) into the shell
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
- You will get an output like this:
Additional Information
Products
LCM6