Skip to content
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
The format is based on and uses the types of changes according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [4.0.1] - 2025-02-28
- Fixed the xSccmInstall module to be able to install the latest 2 supported releases of Microsoft Configuration Manager Version 2403 and Version 2309

## [4.0.0] - 2023-01-13

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Starting with version 1910 Configuration Manager is now part of [Microsoft Endpo

This module has been tested on the following versions:

- Configuration Manager 2403
- Configuration Manager 2309
- Configuration Manager 2006
- Configuration Manager 2002
- Configuration Manager 1906
Expand Down
2 changes: 1 addition & 1 deletion source/DSCResources/xSccmInstall/xSccmInstall.schema.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Configuration xSCCMInstall
$SccmInstallAccount,

[Parameter(Mandatory = $true)]
[ValidateSet('1902', '1906', '1910', '2002', '2006', '2010')]
[ValidateSet('1902', '1906', '1910', '2002', '2006', '2010', '2309', '2403')]
[UInt32]
$Version
)
Expand Down
4 changes: 2 additions & 2 deletions source/Examples/PrimaryInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ Configuration PrimaryInstall
}
else
{
$adkProductID = '9346016b-6620-4841-8ea4-ad91d3ea02b5'
$winPeProductID = '353df250-4ecc-4656-a950-4df93078a5fd'
$adkProductID = '665ec413-9c69-4696-b6d8-55d44bf46ac3'
$winPeProductID = '6775d5ee-c051-497c-aba6-344bbc5c896a'
}

# SCCM PreReqs
Expand Down