cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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:

  1. Open PowerShell (or ISE)
  2. 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
  3. You will get an output like this:


Additional Information

Products

LCM6

Was this article helpful? Yes No
No ratings
Version history
Last update:
‎Oct 22, 2018 09:50 PM
Updated by: