mirror of
https://github.com/AveYo/MediaCreationTool.bat.git
synced 2025-04-05 10:30:42 +00:00
windows_update_refresh
use if having update issues on any ver
This commit is contained in:
parent
af9bb47ae4
commit
0b1953ce1a
@ -296,7 +296,7 @@ fltmc>nul || (set _=start "MCT" cmd /d/x/r call "%~f0" %* %set%& powershell -nop
|
||||
mkdir "%ROOT%\MCT" >nul 2>nul & attrib -R -S -H %ROOT% /D & pushd "%ROOT%\MCT"
|
||||
del /f /q products.* *.key EI.cfg PID.txt auto.cmd AutoUnattend.xml >nul 2>nul
|
||||
set /a latest=0 & if exist latest set /p latest=<latest
|
||||
echo,20211207>latest & if %latest% lss 20211116 del /f /q products*.* MediaCreationTool*.exe >nul 2>nul
|
||||
echo;20220314>latest & if %latest% lss 20211116 del /f /q products*.* MediaCreationTool*.exe >nul 2>nul
|
||||
|
||||
::# edition fallback to ones that MCT supports - after selection
|
||||
(set MEDIA_EDITION=%MEDIA_EDITION:Embedded=Enterprise%)
|
||||
@ -776,11 +776,13 @@ function DIR2ISO ($dir,$iso,$label='DVD_ROM') {if (!(test-path -Path $dir -patht
|
||||
set ^ #=$f0=[io.file]::ReadAllText($env:0); $0=($f0-split '#\:DOWNLOAD\:' ,3)[1]; $1=$env:1-replace'([`@$])','`$1'; iex($0+$1)
|
||||
set ^ #=& set "0=%~f0"& set 1=;DOWNLOAD %*& powershell -nop -c "%#%"& exit /b %errorcode%
|
||||
function DOWNLOAD ($u, $f, $p = (get-location).Path) {
|
||||
Import-Module BitsTransfer; $wc = new-object Net.WebClient; $wc.Headers.Add('user-agent','ipad')
|
||||
Import-Module BitsTransfer; $wc = new-object Net.WebClient; $wc.Headers.Add('user-agent','ipad'); $j = 2022
|
||||
$file = join-path $p $f; $s = 'https://'; $i = 'http://'; $d = $u.replace($s,'').replace($i,''); $https = $s+$d; $http = $i+$d
|
||||
foreach ($url in $http, $https) {
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {Start-BitsTransfer $url $file -ea 1} catch {}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {$wc.DownloadFile($url, $file)} catch {}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {Start-BitsTransfer $($url+'/?') $file -ea 1} catch {}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {bitsadmin /transfer ($j++) /download /priority FOREGROUND $url $file} catch {}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {$wc.DownloadFile($url+'/?', $file)} catch {}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; try {curl -so $file $url} catch {}
|
||||
}
|
||||
if (([IO.FileInfo]$file).Exists) {return}; write-host -fore Yellow " $f download failed "
|
||||
} #:DOWNLOAD:# try download url via bits, net, and http/https - snippet by AveYo, 2021
|
||||
|
13
README.md
13
README.md
@ -55,10 +55,6 @@ Also sets recommended setup options with least amount of issues on upgrades
|
||||
> Can even add a VL / MAK / retail product key in the same way to take care of licensing differences.
|
||||
> The script also picks up any `$OEM$` folder in the current location - for unified branding, configuration, tweaks etc.
|
||||
|
||||
Windows 10
|
||||
----------
|
||||
[MediaCreationTool.bat](MediaCreationTool.bat) works smoothly, not having to deal with anti-consumer install checks..
|
||||
|
||||
|
||||
Windows 11 and the TPM / SecureBoot / CPU / Storage setup checks
|
||||
----------------------------------------------------------------
|
||||
@ -73,8 +69,8 @@ To NOT add bypass to the media, use ***MCT Defaults*** preset or rename the scri
|
||||
> *Just ignore the 'Windows Server' label, please!*
|
||||
Note that [Skip_TPM_Check_on_Dynamic_Update.cmd](bypass11/Skip_TPM_Check_on_Dynamic_Update.cmd) acts globally and **will skip upgrade checks via setup.exe**
|
||||
|
||||
Get RP/BETA/DEV 11 via Windows Update on "unsupported" hardware
|
||||
---------------------------------------------------------------
|
||||
Get 11 via Windows Update on "unsupported" hardware
|
||||
---------------------------------------------------
|
||||
Step 1: use [Skip_TPM_Check_on_Dynamic_Update.cmd](bypass11/Skip_TPM_Check_on_Dynamic_Update.cmd) to automatically bypass setup requirements
|
||||
_It's a set it and forget it script, with built-in undo - v7 using more reliable /Product Server trick_
|
||||
|
||||
@ -103,6 +99,11 @@ for consumer / core media you can add a generic `EI.cfg` to the media\sources yo
|
||||
Note that [Skip_TPM_Check_on_Dynamic_Update.cmd](bypass11/Skip_TPM_Check_on_Dynamic_Update.cmd) **will work for manual upgrade as well**
|
||||
_regardless of mounted iso / usb media already having a bypass added or not_
|
||||
|
||||
If having update issues - on any windows version
|
||||
------------------------------------------------
|
||||
Use [windows_update_refresh.bat](bypass11/windows_update_refresh.bat)
|
||||
_AveYo: as a bonus, it hides unsupported PC nags_
|
||||
|
||||
Changelog
|
||||
---------
|
||||
_No need to right-click Run as Admin, script will ask itself. Directly saving the Raw files no longer breaks line endings_
|
||||
|
4
bypass11/readme.md
Normal file
4
bypass11/readme.md
Normal file
@ -0,0 +1,4 @@
|
||||
If having update issues - on any windows version
|
||||
------------------------------------------------
|
||||
Use [windows_update_refresh.bat](bypass11/windows_update_refresh.bat)
|
||||
_AveYo: as a bonus, it hides unsupported PC nags_
|
32
bypass11/windows_update_refresh.bat
Normal file
32
bypass11/windows_update_refresh.bat
Normal file
@ -0,0 +1,32 @@
|
||||
@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit /b
|
||||
|
||||
$_Paste_in_Powershell = {
|
||||
$host.ui.rawui.windowtitle = 'WINDOWS UPDATE REFRESH'
|
||||
bitsadmin /reset /allusers
|
||||
'wuauserv','bits','cryptSvc','usosvc' |% { start -win 1 net1 "stop $_" }
|
||||
sleep 5
|
||||
'wuauserv','bits','cryptSvc','usosvc' |% {
|
||||
$svc=tasklist /svc /fi "services eq $_" /fo csv | convertfrom-csv; if ($svc.PID -gt 10) {kill $svc.PID -force -ea 0}
|
||||
}
|
||||
'trustedinstaller','tiworker','wuauclt','sihclient','usoclient','mousocoreworker','systemsettings' |% {
|
||||
kill -name $_ -force -ea 0
|
||||
}
|
||||
cmd /c rd /s /q "%SystemDrive%\`$WINDOWS.~BT\Sources\Panther"
|
||||
cmd /c rd /s /q "%SystemRoot%\system32\catroot2"
|
||||
cmd /c rd /s /q "%SystemRoot%\SoftwareDistribution"
|
||||
cmd /c del /f /q "%SystemRoot%\Logs\WindowsUpdate\*"
|
||||
cmd /c del /f /q "%ProgramData%\USOPrivate\UpdateStore\*"
|
||||
cmd /c del /s /f /q "%ProgramData%\USOShared\Logs\*"
|
||||
cmd /c rd /s /q "%ProgramFiles%\UNP"
|
||||
try { Get-WindowsUpdateLog -LogPath $env:temp\temp.log -ForceFlush -Confirm:$False -ea 0 } catch {}
|
||||
<# AveYo: comment 3 lines below to NOT hide 11 unsupported/upgrade nag - 25H1 is NOT a typo #>
|
||||
reg add "HKCU\Control Panel\UnsupportedHardwareNotificationCache" /v "SV2" /d 0 /t reg_dword /f
|
||||
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersion" /d 1 /t reg_dword /f
|
||||
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /d 25H1 /f
|
||||
net1 start wuauserv; net1 start bits; net1 start usosvc
|
||||
UsoClient RefreshSettings
|
||||
sleep 5
|
||||
start ms-settings:windowsupdate
|
||||
#timeout -1
|
||||
} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell -replace '"','\"')}"
|
||||
$_Press_Enter
|
Loading…
Reference in New Issue
Block a user