Skip to content

Commit 3d1a05c

Browse files
committed
updated to v24.12.10
1 parent 891c1c0 commit 3d1a05c

2 files changed

Lines changed: 17 additions & 12 deletions

File tree

MDT-Setup.ps1

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<#PSScriptInfo
22
3-
.VERSION 23.12.10
3+
.VERSION 24.12.10
44
55
.GUID fbe115c8-16db-441c-805a-5505f93eb012
66
@@ -52,13 +52,13 @@ Param(
5252
| ||_|| || | | | _____| || |___ | | | || |
5353
|_| |_||______| |___| |_______||_______| |___| |_______||___|
5454
55-
Mike Galvin https://gal.vin Version 23.12.10
55+
Mike Galvin https://gal.vin Version 24.12.10
5656
Donate: https://www.paypal.me/digressive See -help for usage
5757
"
5858

5959
If ($UpdateCheck)
6060
{
61-
$ScriptVersion = "23.12.10"
61+
$ScriptVersion = "24.12.10"
6262
$RawSource = "https://raw.githubusercontent.com/Digressive/MDT-Setup/main/MDT-Setup.ps1"
6363
$SourceCheck = Invoke-RestMethod -uri "$RawSource"
6464
$VerCheck = Select-String -Pattern ".VERSION $ScriptVersion" -InputObject $SourceCheck
@@ -112,7 +112,7 @@ else {
112112
$WinCode = Read-Host -Prompt "Enter Windows version and update that you will be deploying. This will be used as a unique identifier for MDT. (default: W10-22H2)"
113113
If ($WinCode -eq '')
114114
{
115-
$WinCode = "W10-22H2" ## Windows version and update
115+
$WinCode = "W11-24H2" ## Windows version and update
116116
}
117117

118118
## Windows Download Preferences
@@ -125,7 +125,7 @@ else {
125125

126126
If ($ConvertESD -eq "y")
127127
{
128-
$WinVer = Read-Host -Prompt "Do you want to deploy Windows 11? (y/N)"
128+
$WinVer = Read-Host -Prompt "Do you want to deploy Windows 10? (y/N)"
129129
If ($WinVer -eq '')
130130
{
131131
$WinVer = "n"
@@ -252,22 +252,22 @@ else {
252252
## URLs - shouldn't have to change these until MSFT release new versions
253253
$MdtSrc = "https://download.microsoft.com/download/3/3/9/339BE62D-B4B8-4956-B58D-73C4685FC492/MicrosoftDeploymentToolkit_x64.msi" ## MDT main package
254254
$MdtExe = "MicrosoftDeploymentToolkit_x64.msi"
255-
$AdkSrc = "https://go.microsoft.com/fwlink/?linkid=2196127" ## ADK Win 11 22H2
255+
$AdkSrc = "https://go.microsoft.com/fwlink/?linkid=2289980" ## ADK 10.1.26100.2454 (December 2024)
256256
$AdkExe = "adksetup.exe"
257-
$AdkPeSrc = "https://go.microsoft.com/fwlink/?linkid=2196224" ## ADK PE Add-on Win 11 22H2
257+
$AdkPeSrc = "https://go.microsoft.com/fwlink/?linkid=2289981" ## ADK PE 10.1.26100.2454 (December 2024)
258258
$AdkPeExe = "adkwinpesetup.exe"
259259
$MdtPatchSrc = "https://download.microsoft.com/download/3/0/6/306AC1B2-59BE-43B8-8C65-E141EF287A5E/KB4564442/MDT_KB4564442.exe" ## MDT Patch
260260
$MdtPatchExe = "MDT_KB4564442.exe"
261261

262262
If ($WinVer -eq "y")
263263
{
264-
$MctSrc = "https://go.microsoft.com/fwlink/?linkid=2156295" ## Media Creation Tool for Windows 11 23H2
265-
$MctExe = "MediaCreationToolW1123H2.exe"
264+
$MctSrc = "https://go.microsoft.com/fwlink/?LinkId=691209" ## Media Creation Tool for Windows 10
265+
$MctExe = "MediaCreationTool22H2.exe"
266266
}
267267

268268
else {
269-
$MctSrc = "https://go.microsoft.com/fwlink/?LinkId=691209" ## Media Creation Tool for Windows 10
270-
$MctExe = "MediaCreationTool22H2.exe"
269+
$MctSrc = "https://go.microsoft.com/fwlink/?linkid=2156295" ## Media Creation Tool for Windows 11 24H2
270+
$MctExe = "MediaCreationToolW1124H2.exe"
271271
}
272272

273273
If ($ConvertESD -eq "y")

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Please consider supporting my work:
1414
* Support with [Github Sponsors](https://github.com/sponsors/Digressive).
1515
* Support with a one-time donation using [PayPal](https://www.paypal.me/digressive).
1616

17-
Please report any problems via the issues tab on GitHub.
17+
Please report any problems via the [issues](https://github.com/Digressive/MDT-Setup/issues) tab on GitHub.
1818

1919
-Mike
2020

@@ -82,6 +82,11 @@ This will run the script, user interaction is required to continue.
8282

8383
## Change Log
8484

85+
### 2024-12-10: Version 24.12.10
86+
87+
* Updated download links for the ADK to the latest December 2024 versions which work fully with Windows 11 24H2.
88+
* Changed Default Windows to Windows 11 - Windows 10 still an option.
89+
8590
### 2023-12-10: Version 23.12.10
8691

8792
* Added a leading '0' to the dates in the names of the 'Logs' and 'DyanamicLogs' inside the deployment shares.

0 commit comments

Comments
 (0)