diff --git a/Public/Get-OSBuilds.ps1 b/Public/Get-OSBuilds.ps1 index fc2ca60..81b0b56 100644 --- a/Public/Get-OSBuilds.ps1 +++ b/Public/Get-OSBuilds.ps1 @@ -30,7 +30,7 @@ function Get-OSBuilds { [string]$OSMajorVersion, #Filter the OSBuild by OS Release Id - [ValidateSet ('22H2','21H2','21H1','20H2',2004,1909,1903,1809)] + [ValidateSet ('23H2','22H2','21H2','21H1','20H2',2004,1909,1903,1809)] [string]$OSReleaseId, #Filter the OSBuild by Image Revision diff --git a/Public/Get-OSImport.ps1 b/Public/Get-OSImport.ps1 index a7c77d6..09bab70 100644 --- a/Public/Get-OSImport.ps1 +++ b/Public/Get-OSImport.ps1 @@ -30,7 +30,7 @@ function Get-OSMedia { [string]$OSMajorVersion, #Filter the OSMedia by OS Release Id - [ValidateSet ('22H2','21H2','21H1','20H2',2004,1909,1903,1809)] + [ValidateSet ('23H2','22H2','21H2','21H1','20H2',2004,1909,1903,1809)] [string]$OSReleaseId, #Filter the OSMedia by Image Revision diff --git a/Public/Get-OSMedia.ps1 b/Public/Get-OSMedia.ps1 index 887fd41..c17eac7 100644 --- a/Public/Get-OSMedia.ps1 +++ b/Public/Get-OSMedia.ps1 @@ -30,7 +30,7 @@ function Get-OSMedia { [string]$OSMajorVersion, #Filter the OSMedia by OS Release Id - [ValidateSet ('22H2','21H2','21H1','20H2',2004,1909,1903,1809,1803,1709,1703,1607,1511,1507)] + [ValidateSet ('23H2','22H2','21H2','21H1','20H2',2004,1909,1903,1809,1803,1709,1703,1607,1511,1507)] [string]$OSReleaseId, #Filter the OSMedia by Image Revision diff --git a/Public/Import-OSMedia.ps1 b/Public/Import-OSMedia.ps1 index aa82a27..0758334 100644 --- a/Public/Import-OSMedia.ps1 +++ b/Public/Import-OSMedia.ps1 @@ -206,8 +206,8 @@ function Import-OSMedia { #================================================= Show-ActionTime; Write-Host 'Get-OSDBuilder: Validating OSDBuilder Content' Show-ActionTime; Write-Warning 'This version of OSDBuilder only supports:' - Show-ActionTime; Write-Warning 'Windows 10 1607 - 21H2' - Show-ActionTime; Write-Warning 'Windows 11 21H2 - 22H2' + Show-ActionTime; Write-Warning 'Windows 10 1607 - 22H2' + Show-ActionTime; Write-Warning 'Windows 11 21H2 - 23H2' Show-ActionTime; Write-Warning 'Windows Server 2016 1607 - Windows Server 2022 21H1' Get-OSDBuilder -CreatePaths -HideDetails #================================================= diff --git a/Public/New-OSBuildTask.ps1 b/Public/New-OSBuildTask.ps1 index 0ed5ab7..4cfe153 100644 --- a/Public/New-OSBuildTask.ps1 +++ b/Public/New-OSBuildTask.ps1 @@ -244,6 +244,7 @@ function New-OSBuildTask { if ($TaskName -match '21H1') {$OSMedia = $OSMedia | Where-Object {$_.ReleaseId -eq '21H1'}} if ($TaskName -match '21H2') {$OSMedia = $OSMedia | Where-Object {$_.ReleaseId -eq '21H2'}} if ($TaskName -match '22H2') {$OSMedia = $OSMedia | Where-Object {$_.ReleaseId -eq '22H2'}} + if ($TaskName -match '23H2') {$OSMedia = $OSMedia | Where-Object {$_.ReleaseId -eq '23H2'}} Try { $OSMedia = $OSMedia | Out-GridView -OutputMode Single -Title 'Select a Source OSMedia to use for this Task (Cancel to Exit)' diff --git a/Public/Save-OSDBuilderDownload.ps1 b/Public/Save-OSDBuilderDownload.ps1 index e2e58e3..fd5e665 100644 --- a/Public/Save-OSDBuilderDownload.ps1 +++ b/Public/Save-OSDBuilderDownload.ps1 @@ -45,7 +45,7 @@ function Save-OSDBuilderDownload { #Feature Update Build [Parameter(ParameterSetName = 'FeatureUpdates')] - [ValidateSet ('22H2','21H2','21H1','20H2',2004,1909,1903,1809)] + [ValidateSet ('23H2','22H2','21H2','21H1','20H2',2004,1909,1903,1809)] [string]$FeatureBuild, #Feature Update Edition @@ -82,7 +82,7 @@ function Save-OSDBuilderDownload { #Filter Microsoft Updates for a specific ReleaseId [Parameter(ParameterSetName='OSDUpdate')] - [ValidateSet ('22H2','21H2','21H1','20H2',2004,1909,1903,1809,1803,1709,1703,1607,1511,1507,7601,7603)] + [ValidateSet ('23H2','22H2','21H2','21H1','20H2',2004,1909,1903,1809,1803,1709,1703,1607,1511,1507,7601,7603)] [Alias('ReleaseId')] [string]$UpdateBuild,