Skip to content
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

Windows 10 22H2 Support Added #204

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 6 additions & 2 deletions Invoke-CMApplyDriverPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
Author: Nickolaj Andersen / Maurice Daly
Contact: @NickolajA / @MoDaly_IT
Created: 2017-03-27
Updated: 2022-03-05
Updated: 2022-11-01

Contributors: @CodyMathis123, @JamesMcwatty

Expand Down Expand Up @@ -206,7 +206,8 @@
- Added support for Getac manufacturer
- Extended the SystemSKU unwanted character cleanup process to include null and whitespaces
- Fixed several issues related to the Fallback Driver Package functionality where old code was left behind from the webservice days
4.2.1 - (2022-09-22) - Added support for Windows 10 22H2
4.2.1 - (2022-09-22) - Added support for Windows 11 22H2
4.2.2 - (2022-11-01) - Added support for Windows 10 22H2
#>
[CmdletBinding(SupportsShouldProcess = $true, DefaultParameterSetName = "BareMetal")]
param(
Expand Down Expand Up @@ -988,6 +989,9 @@ Process {
}
"Windows 10" {
switch (([System.Version]$InputObject).Build) {
"19045" {
$OSVersion = '22H2'
}
"19044" {
$OSVersion = '21H2'
}
Expand Down