Answers for "get .net version"

0

get .net version

gci ‘HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP’ -recurse | gp -name Version -EA 0 | where { $_.PSChildName -match ‘^(?!S)\p{L}’} | select PSChildName, Version
Posted by: Guest on March-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language