diff --git a/MediaCreationTool.bat b/MediaCreationTool.bat index b8ab96a..8c0f441 100644 --- a/MediaCreationTool.bat +++ b/MediaCreationTool.bat @@ -2,8 +2,8 @@ :Universal MCT wrapper script for all Windows 10/11 versions from 1507 to 21H2! :: Nothing but Microsoft-hosted source links and no third-party tools; script just configures an xml and starts MCT :: Ingenious support for business editions (Enterprise / VL) selecting language, x86, x64 or AiO inside the MCT GUI -:: Changelog: 2021.12.15 -:: - fix regression with 1507-1709 not getting the correct fallback esd; fix dev '-noe' not autoclosing script +:: Changelog: 2021.12.22 +:: - improved auto.cmd handling of mismatched OS and target edition, obey 'def', 'auto' upgrades 7 to 10, not 11 :: - skip 11 checks only via auto.cmd - ignore server label, please; local acc on 11 Home; output to CD or C:\ESD :: 11: 22000.318 / 21H2: 19044.1288 / 21H1: 19043.1348 / 20H2: 19042.1052 / 2004: 19041.572 / 1909: 18363.1139 @@ -51,7 +51,7 @@ set VERSIONS=1507,1511,1607,1703,1709,1803,1809,1903,1909,20H1,20H2,21H1,21H2,11 set /a dV=14 ::# MCT Preset choice dialog items and default-index [Select in MCT] -set PRESETS=^&Auto Upgrade,Make ^&ISO,Make ^&USB,^&Select,MCT ^&Defaults +set PRESETS=^&Auto Upgrade,Auto ^&ISO,Auto ^&USB,^&Select,MCT ^&Defaults set /a dP=4 :begin @@ -70,7 +70,7 @@ if defined MCT if not defined VID set "MCT=" ::# parse AUTO from script name or commandline - starts unattended upgrade / in-place repair / cross-edition for %%s in (%~n0 %*) do if /i %%s equ auto set /a AUTO=1 -if defined AUTO set /a PRE=1 & if not defined MCT set /a MCT=%dV% +if defined AUTO set /a PRE=1 & if not defined MCT set /a MCT=%dV% & if %OS_VERSION%0 lss 102400 set /a MCT=13 ::# parse ISO from script name or commandline - starts media creation with selection for %%s in (%~n0 %*) do if /i %%s equ iso set /a ISO=1 @@ -125,14 +125,14 @@ if defined PRE if defined MCT goto choice-%MCT% %<%:f0 " Detected Media "%>>% & if defined MCT %<%:5f " %VID% "%>>% %<%:6f " %MEDIA_LANGCODE% "%>>% & %<%:9f " %MEDIA_EDITION% "%>>% & %<%:2f " %MEDIA_ARCH% "%>% echo; -%<%:1f "1 Auto Upgrade : MCT gets Detected Media, script assists setupprep for upgrading "%>% -%<%:1f "2 Make ISO : MCT gets Detected Media, script assists making ISO in Downloads "%>% -%<%:1f "3 Make USB : MCT gets Detected Media, script assists making USB stick target "%>% +%<%:1f "1 Auto Upgrade : MCT gets detected media, script assists setupprep for upgrading "%>% +%<%:1f "2 Auto ISO : MCT gets detected media, script assists making ISO here | C:ESD "%>% +%<%:1f "3 Auto USB : MCT gets detected media, script assists making USB stick target "%>% %<%:1f "4 Select : MCT gets selected Edition, Language, Arch onto specified target "%>% -%<%:1f "5 MCT Defaults : MCT runs unassisted making Selected Media without any overrides "%>% -echo; -%<%:17 "1-4 adds to media: PID.txt, $OEM$ dir, unattend.xml, auto.cmd with setup overrides "%>% -%<%:17 " disable via DEF arg "%>% +%<%:1f "5 MCT Defaults : MCT runs unassisted, creating media without script modification "%>% +echo; +%<%:17 "1-4 adds to media: PID.txt, EI.cfg, $OEM$ dir, auto.cmd for upgrade and tpm checks "%>% +%<%:17 "can rename script: "%>>% & %<%:1f "def MediaCreationTool.bat"%>>% & %<%:17 " to always create unmodified MCT media "%>% ::# show more responsive MCT + PRE pseudo-menu dialog or separate choice dialog instances if either MCT or PRE are set if "%MCT%%PRE%"=="" call :choices2 MCT "%VERSIONS%" %dV% "MCT Version" PRE "%PRESETS%" %dP% "MCT Preset" 11 white 0x005a9e 320 @@ -282,8 +282,8 @@ goto Universal MCT :process if %PRE% equ 1 (set "PRESET=Auto Upgrade") -if %PRE% equ 2 (set "PRESET=Make ISO") -if %PRE% equ 3 (set "PRESET=Make USB") +if %PRE% equ 2 (set "PRESET=Auto ISO") +if %PRE% equ 3 (set "PRESET=Auto USB") if %PRE% equ 4 (set "PRESET=Select" & set EDITION=& set LANGCODE=& set ARCH=& set KEY=) if %PRE% equ 5 (set "PRESET=MCT Defaults" & set EDITION=& set LANGCODE=& set ARCH=& set KEY=) if %PRE% equ 5 (goto noelevate) else set set=%MCT%.%PRE% @@ -310,8 +310,6 @@ if %VER% leq 10586 (set MEDIA_EDITION=%MEDIA_EDITION:Enterprise=Professional%) if %VER% leq 15063 if %INSERT_BUSINESS%0 lss 1 (set MEDIA_EDITION=%MEDIA_EDITION:Enterprise=Professional%) if %VER% leq 10586 if %UNHIDE_BUSINESS%0 lss 1 (set MEDIA_EDITION=%MEDIA_EDITION:Education=Professional%) if %VER% neq 15063 (set MEDIA_EDITION=%MEDIA_EDITION:Cloud=Professional%) -if "%MEDIA_EDITION%" neq "%OS_EDITION%" set "REG_EDITION=%MEDIA_EDITION%" -if defined EDITION (set EDITION=%MEDIA_EDITION%) ::# generic key preset - only for staged editions in MCT install.esd - see sources\product.ini for %%s in (%MEDIA_EDITION%) do for %%K in ( @@ -326,6 +324,8 @@ for %%s in (%MEDIA_EDITION%) do for %%K in ( ) do if /i %%~xK equ .%%s set MEDIA_EDITION=%%~xK& call set MEDIA_EDITION=%%MEDIA_EDITION:.=%%& set "MEDIA_KEY=%%~nK" ::# detected / selected media preset +if defined EDITION (set EDITION=%MEDIA_EDITION%) +if "%MEDIA_EDITION%" neq "%OS_EDITION%" (set REG_EDITION=%MEDIA_EDITION%) else set (REG_EDITION=) set "CONSUMER=%MEDIA_EDITION:Enterprise=%" if "%CONSUMER%" equ "%MEDIA_EDITION%" (set CFG=Consumer) else (set CFG=Business) if not defined EDITION (set UNSTAGED=1& set STAGED=) else (set UNSTAGED=& set STAGED=%MEDIA_EDITION%) @@ -373,8 +373,9 @@ if "MCT Defaults" equ "%PRESET%" (start MediaCreationTool%VID%.exe /Selfhost& ex ::# OR run script-assisted presets for auto upgrade without prompts / create iso directly / create usb ::# ==================================================================================================== +if defined EDITION (set EDITION_SWITCH=%EDITION%) else (set EDITION_SWITCH=) if not defined MEDIA (set LANGCODE=%MEDIA_LANGCODE%& set EDITION=%MEDIA_EDITION%& set ARCH=%MEDIA_ARCH%) -if defined UNSTAGED (set KEY=) else if defined KEY set AKEY=/Pkey %KEY% +if defined UNSTAGED (set KEY=) ::# not using /MediaEdition option in MCT version 1703 and older - handled via CurrentVersion registry workaround if %VER% gtr 15063 (set MEDIA_SEL=/MediaLangCode %LANGCODE% /MediaEdition %EDITION% /MediaArch %ARCH%) else (set MEDIA_SEL=) @@ -382,7 +383,7 @@ if "Select" equ "%PRESET%" (set MEDIA_SEL=) ::# separate options for MCT and auto.cmd set MOPTIONS=/Action CreateMedia %MEDIA_SEL% /Pkey Defer %OPTIONS% /SkipSummary /Eula Accept -set AOPTIONS=/Auto Upgrade /MigChoice Upgrade %AKEY% %OPTIONS% /SkipSummary /Eula Accept +set AOPTIONS=/Auto Upgrade /MigChoice Upgrade %OPTIONS% /SkipSummary /Eula Accept set MAKE_OPTIONS=/SelfHost& for %%s in (%MOPTIONS%) do call set MAKE_OPTIONS=%%MAKE_OPTIONS%% %%s set AUTO_OPTIONS=/SelfHost& for %%s in (%AOPTIONS%) do call set AUTO_OPTIONS=%%AUTO_OPTIONS%% %%s @@ -401,8 +402,12 @@ set "0=%~f0"& powershell -nop -c "iex ([io.file]::ReadAllText($env:0)-split'[:]g ::# gets placed inside boot.wim so that it does not affect setup under windows set "0=%~f0"& powershell -nop -c "iex ([io.file]::ReadAllText($env:0)-split'[:]generate_AutoUnattend_xml')[1];" +::# cleanup stale files +dism /cleanup-wim >nul 2>nul + ::# start script-assisted MCT via powershell (to monitor setup state and take necessary action) set "0=%~f0"& start "MCT" /wait /b powershell -nop -c "iex ([io.file]::ReadAllText($env:0)-split'[:]Assisted_MCT')[1];" +if "Auto Upgrade" neq "%PRESET%" pause ::-------------------------------------------------------------------------------------------------------------------------------- EXIT /BATCH DONE @@ -443,7 +448,7 @@ EXIT /BATCH DONE $bt = "Button","ComboBox","Edit" |% {new-object Windows.Automation.PropertyCondition($cp, $_)} new-item -path function: -name "Enter" -value { $app = get-process "SetupHost" -ea 0; if ($null -ne $app) { [Microsoft.VisualBasic.Interaction]::AppActivate($app.Id)} ; [Windows.Forms.SendKeys]::SendWait("{ENTER}") } >'' - $id = 0; if ('Make USB' -ne $env:PRESET) {$id = 1} + $id = 0; if ('Auto USB' -ne $env:PRESET) {$id = 1} $sw = "ShowWindowAsync"; $dm = [AppDomain]::CurrentDomain."DefineDynami`cAssembly"(1,1)."DefineDynami`cModule"(1) $dt = $dm."Defin`eType"("AveYo",1179913,[ValueType]); $ptr = (get-process -pid $PID).MainWindowHandle.gettype() $dt."DefinePInvok`eMethod"($sw,"user`32",8214,1,[void],@($ptr,[int]),1,4) >''; $nt = $dt."Creat`eType"() @@ -464,7 +469,7 @@ EXIT /BATCH DONE if ($env:VER -le 15063) {while ($win.FindAll(5,$bt[1]).Count -lt 3) {if ($mct.HasExited) {break :mct}; sleep -m 200}; Enter} while ($win.FindAll(5,$bt[0]).Count -le $nr) {if ($mct.HasExited) {break :mct}; sleep -m 200}; $all = $win.FindAll(5,$bt[0]) $all[$id].GetCurrentPattern([Windows.Automation.SelectionItemPattern]::Pattern).Select();$all[$all.Count-1].SetFocus(); Enter - if ('Make USB' -ne $env:PRESET) { + if ('Auto USB' -ne $env:PRESET) { while ($win.FindAll(5,$bt[2]).Count -le 0) {if ($mct.HasExited) {break :mct};sleep -m 50}; $val = $win.FindAll(5,$bt[2])[0] $val.GetCurrentPattern([Windows.Automation.ValuePattern]::Pattern).SetValue($ISO); $all = $win.FindAll(5, $bt[0]) ($all |? {$_.Current.AutomationId -eq 1}).SetFocus(); Enter # sendkeys Enter - due to unreliable InvokePattern click() @@ -472,7 +477,7 @@ EXIT /BATCH DONE } catch {} } #:: if DEF parameter used, quit without adding $OEM$, pid.txt, auto.cmd (includes 11 Setup override) to media - if ($null -ne $env:DEF -and 'Auto Upgrade' -ne $env:PRESET) {break} + if ($null -ne $env:DEF -and 'Auto Upgrade' -ne $env:PRESET) {break :mct} #:: get target $ISO or $USB from setup state file $ready = $false; $task = "PreDownload"; $action = "GetWebSetupUserInput" @@ -505,9 +510,6 @@ EXIT /BATCH DONE $f3 = "MCT\PID.txt"; if (test-path $f3) {copy -path $f3 -dest $P -force >''; write-host -fore Gray AddFile $f3} $f4 = "MCT\auto.cmd"; if (test-path $f4) {copy -path $f4 -dest $DIR -force >''; write-host -fore Gray AddFile $f4} } ; popd - - #:: done if not 11 or auto upgrade preset - if ($env:VER -lt 22000 -and 'Auto Upgrade' -ne $env:PRESET) {break :mct} #:: watch media layout progress $ready = $false; $task = "MediaCreate"; $action = "IsoLayout"; if ($null -ne $USB) {$action = "UsbLayout"} @@ -534,12 +536,11 @@ EXIT /BATCH DONE write-host -fore Gray "Created", $action } - #:: done if not 11 - if ($env:VER -lt 22000) {break :mct} - - #:: kill MCT process before temporary iso is finalized - $mct.Kill(); $set = get-process SetupHost -ea 0; if ($set) {$set.Kill()} - sleep 3; dism /cleanup-wim >''; del $ISO -force -ea 0 >'' + #:: kill MCT process before temporary iso finish + if ($env:VER -ge 22000 -or 'Auto Upgrade' -eq $env:PRESET) { + $mct.Kill(); $s = get-process SetupPrep,SetupHost -ea 0; if ($s) { foreach ($setup in $s) {$setup.Kill()} } + sleep 3; start -nonew cmd '/d/x/r dism /cleanup-wim >nul 2>nul'; del $ISO -force -ea 0 >'' + } #:: end monitoring break :mct @@ -551,11 +552,11 @@ EXIT /BATCH DONE start -nonew cmd "/d/x/r (reg add $K /v EditionID /d $E /reg:32 /f & reg add $K /v ProductName /d $P /reg:32 /f) >nul 2>nul" start -nonew cmd "/d/x/r (reg add $K /v EditionID /d $E /reg:64 /f & reg add $K /v ProductName /d $P /reg:64 /f) >nul 2>nul" } - + #:: Auto Upgrade preset starts auto.cmd from $DIR = C:\$WINDOWS.~WS\Sources\Windows if ('Auto Upgrade' -eq $env:PRESET) { cd -Lit("$env:ROOT\MCT"); start -nonew cmd "/d/x/r call auto.cmd $DIR" - write-host "`r`n UPGRADING ... `r`n"; sleep 7; return + write-host "`r`n UPGRADING $env:EDITION_SWITCH... `r`n"; sleep 7; return } #:: skip windows 11 upgrade checks - for running setup from boot media @@ -593,9 +594,8 @@ EXIT /BATCH DONE ::-------------------------------------------------------------------------------------------------------------------------------- :generate_auto_cmd $text = @" -