Skip to content

Commit e725d03

Browse files
committed
Add Windows 8 / 8.1 support
1 parent 9c3fc1f commit e725d03

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Update-WSUSComputerOperatingSystems.ps1

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@ Import-Module SqlServer -MinimumVersion 16.5.0
1111

1212
$ClientProductVersions = @(
1313
# Based on https://learn.microsoft.com/en-us/windows/release-health/release-information
14+
@{
15+
ProductVersion = ' 8'
16+
OSMajorVersion = 6
17+
OSMinorVersion = 2
18+
OSBuildNumber = 9200
19+
}
20+
@{
21+
ProductVersion = ' 8.1'
22+
OSMajorVersion = 6
23+
OSMinorVersion = 3
24+
OSBuildNumber = 9600
25+
}
1426
@{
1527
ProductVersion = ' 10'
1628
ProductRelease = ' 1507'

0 commit comments

Comments
 (0)