Skip to content

Instantly share code, notes, and snippets.

@Stygy
Last active November 21, 2017 16:59
Show Gist options
  • Save Stygy/b53b324f7b68200cc5dbb122f9d36758 to your computer and use it in GitHub Desktop.
Save Stygy/b53b324f7b68200cc5dbb122f9d36758 to your computer and use it in GitHub Desktop.
Powershell - Net Framework Versions
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, @{
name="Product"
expression={
switch -regex ($_.Release) {
"378389" { [Version]"4.5" }
"378675|378758" { [Version]"4.5.1" }
"379893" { [Version]"4.5.2" }
"393295|393297" { [Version]"4.6" }
"394254|394271" { [Version]"4.6.1" }
"394802|394806" { [Version]"4.6.2" }
"460798" { [Version]"4.7" }
{$_ -gt 460798} { [Version]"Undocumented 4.7 or higher, please update script" }
}
}
}
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment