Skip to content

Commit

Permalink
Added .net 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
raandree committed Aug 22, 2019
1 parent f4ed2ba commit 82326d4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ function Get-DotNetFrameworkVersion
'461310' = @{ Version = [System.Version]'4.7.1' ; Comment = '(NON Windows 10)' }
'461808' = @{ Version = [System.Version]'4.7.2' ; Comment = '(Windows 10 1803)' }
'461814' = @{ Version = [System.Version]'4.7.2' ; Comment = '(NON Windows 10)' }
'528040' = @{ Version = [System.Version]'4.7.2' ; Comment = '(Windows 10 1903)' }
'528049' = @{ Version = [System.Version]'4.8' ; Comment = '(NON Windows 10)' }
}

foreach ($computer in $ComputerName)
Expand Down

3 comments on commit 82326d4

@andrewmolyneux
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the mapping for build 528040 is incorrect - according to How to: Determine which .NET Framework versions are installed build 528040 corresponds to .NET Framework 4.8 as shipped with Windows 10 v1903-1909, not .NET Framework 4.7.2 as indicated here.

@raandree
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, will fix this. Better late than never... ))

@raandree
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have just realized that this has been fixed already in #96.

Please sign in to comment.