Skip to content

Instantly share code, notes, and snippets.

@jknopp
Created September 13, 2016 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jknopp/fc5e0f2affda440ba1f6db7e1cfc8b11 to your computer and use it in GitHub Desktop.
Save jknopp/fc5e0f2affda440ba1f6db7e1cfc8b11 to your computer and use it in GitHub Desktop.
Check which .NET Frameworks are Installed
gci 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse | gp -name Version,Release -EA 0 | where { $_.PSChildName -match '^(?!S)\p{L}'} | select PSChildName, Version, Release
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment