Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Added Windows 11 23H2
  • Loading branch information
stephannn authored Nov 21, 2023
1 parent 81435b2 commit 53edbde
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Current Branch/7.2.2/DriverAutomationTool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ param (
7.2.0 - (2022-02-12) Mostly bug fixes and Windows 10 22H2 support
7.2.1 - (2022-20-12) Added fix for Dell BIOS packages not showing in the CSV summary output
7.2.2 - (2023-10-01) Bug fixes
7.2.3 - (2023-10-01) Added support for Windows 11 23H2
#>


Expand Down Expand Up @@ -7384,6 +7385,7 @@ AABJRU5ErkJgggs='))
$OSComboBox.Font = [System.Drawing.Font]::new('Segoe UI', '10')
$OSComboBox.ForeColor = [System.Drawing.Color]::Black
$OSComboBox.FormattingEnabled = $True
[void]$OSComboBox.Items.Add('Windows 11 23H2')
[void]$OSComboBox.Items.Add('Windows 11 22H2')
[void]$OSComboBox.Items.Add('Windows 11 21H2')
[void]$OSComboBox.Items.Add('Windows 11')
Expand Down Expand Up @@ -10020,6 +10022,7 @@ aHlkaHlkaHlkaHlkaHlkaHlkaHlkaHlkaFnms68WxfyoJ3KVKAAAAABJRU5ErkJgggs='))
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Production')
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Pilot')
[void]$ConfigMgrPkgActionCombo.Items.Add('Mark as Retired')
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Windows 11 23H2')
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Windows 11 22H2')
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Windows 11')
[void]$ConfigMgrPkgActionCombo.Items.Add('Move to Windows 10 22H2')
Expand Down Expand Up @@ -13174,6 +13177,7 @@ AABJRU5ErkJgggs='))
$OperatingSystem.DefaultCellStyle = $System_Windows_Forms_DataGridViewCellStyle_25
$OperatingSystem.DisplayStyle = 'ComboBox'
$OperatingSystem.HeaderText = 'Operating System'
[void]$OperatingSystem.Items.Add('Windows 11 23H2')
[void]$OperatingSystem.Items.Add('Windows 11 22H2')
[void]$OperatingSystem.Items.Add('Windows 11 21H2')
[void]$OperatingSystem.Items.Add('Windows 10 22H2')
Expand Down Expand Up @@ -13375,6 +13379,7 @@ AABJRU5ErkJgggs='))

# Windows Version Hash Table
$WindowsBuildHashTable = @{
'Win11-23H2' = "10.0.22631"
'Win11-22H2' = "10.0.22621"
'Win11-21H2' = "10.0.22000"
'22H2' = "10.0.19045.1"
Expand Down Expand Up @@ -18394,6 +18399,9 @@ AABJRU5ErkJgggs='))
$PackagePrefix = "$PackageType Retired "
$State = "retired"
}
"*Windows 11 23H2*"{
$Win11Version = "23H2"
}
"*Windows 11 22H2*"{
$Win11Version = "22H2"
}
Expand Down

0 comments on commit 53edbde

Please sign in to comment.