How can I find out the installed versions of .NET frameworks using PowerShell command?
Is there a way to find out the installed versions of the .NET framework using a PowerShell command?
+3
Andrew
source
to share
1 answer
The installed .NET frameworks are listed in the registry . PowerShell has a built-in registry provider, so you can query it as if you were asking for the file system path:
gci "hklm:\SOFTWARE\Microsoft\NET Framework Setup\NDP"
+4
vonPryz
source
to share