Skip to content

Add 23H2 support #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 71 additions & 45 deletions Private/AllFunctions.ps1

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Public/Get-OSBuilds.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Public/Get-OSImport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Public/Get-OSMedia.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Public/Import-OSMedia.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ 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 11 21H2 - 23H2'
Show-ActionTime; Write-Warning 'Windows Server 2016 1607 - Windows Server 2022 21H1'
Get-OSDBuilder -CreatePaths -HideDetails
#=================================================
Expand Down
2 changes: 1 addition & 1 deletion Public/Save-OSDBuilderDownload.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down