From fc86fc1b68aebd38e3937273fcf19dd00efba688 Mon Sep 17 00:00:00 2001 From: AveYo Date: Wed, 17 Nov 2021 22:53:18 +0200 Subject: [PATCH] Skip_TPM_Check_on_Dynamic_Update_v4.cmd bypass windows 11 setup that was run manually under windows, or via windows update (after OfflineInsiderEnroll to Beta or Dev channels) --- README.md | 2 +- .../Skip_TPM_Check_on_Dynamic_Update_v4.cmd | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 bypass11/Skip_TPM_Check_on_Dynamic_Update_v4.cmd diff --git a/README.md b/README.md index 6f3c48a..d2d70d8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ tho you can add a generic ei.cfg to the media\sources yourself: `[Channel]` `_Default` -[Skip_TPM_Check_on_Dynamic_Update v4 (wip) and previous v3, v2, v1](bypass11/archived) +[Skip_TPM_Check_on_Dynamic_Update v4 and previous v3, v2, v1](bypass11/Skip_TPM_Check_on_Dynamic_Update_v4.cmd) will bypass windows 11 setup that was run manually under windows, or **via windows update** _bypass getting 11 after OfflineInsiderEnroll to Beta or Dev channels and doing an update check_ diff --git a/bypass11/Skip_TPM_Check_on_Dynamic_Update_v4.cmd b/bypass11/Skip_TPM_Check_on_Dynamic_Update_v4.cmd new file mode 100644 index 0000000..d96d903 --- /dev/null +++ b/bypass11/Skip_TPM_Check_on_Dynamic_Update_v4.cmd @@ -0,0 +1,26 @@ +@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit/b +#:: double-click to run or just copy-paste into powershell - it's a standalone hybrid script +#:: v4 of the toggle script uses programdata instead of system32, and no longer deletes appraiserres.dll +#:: uses IFEO to attach to Virtual Disk Service Loader process running during setup, then creates a bypass dir +#:: it must also do some ping-pong renaming of vdsldr in programdata +#:: you probably don't need to have it installed at all times - just when doing feature updates or manual setup within windows +#:: hence the on off toggle just by running the script again +#:: can get 11 release beta or dev builds via Windows Update after using OfflineInsiderEnroll by whatever127 and abbodi1406 + +$_Paste_in_Powershell = { + $N = "Skip TPM Check on Dynamic Update"; $X = @("' $N (c) AveYo 2021 : v4 IFEO-based with no flashing cmd window") + $X+= 'C = "cmd /q AveYo /d/x/r pushd %systemdrive%\\$windows.~bt\\Sources\\Panther && mkdir Appraiser_Data.ini\\AveYo&"' + $X+= 'M = "pushd %allusersprofile%& ren vd.exe vdsldr.exe &robocopy ""%systemroot%/system32/"" ""./"" ""vdsldr.exe""&"' + $X+= 'D = "ren vdsldr.exe vd.exe& start vd.exe -Embedding" : CreateObject("WScript.Shell").Run C & M & D, 0, False' + $K = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe' + $P = [Environment]::GetFolderPath('CommonApplicationData'); $F = join-path $P '11tpm.vbs'; $V = "wscript $F //B //T:5" + if (test-path $K) { + remove-item $K -force -ea 0 >''; del $F -force -ea 0; del (join-path $P 'vd.exe') -force -ea 0 + write-host -fore 0xf -back 0xd "`n $N v4 [REMOVED] run again to install " + } else { + new-item $K -force -ea 0 >''; set-itemproperty $K 'Debugger' $V -force -ea 0; [io.file]::WriteAllText($F, $X-join"`r`n") + write-host -fore 0xf -back 0x2 "`n $N v4 [INSTALLED] run again to remove " + } ; timeout /t 5 +} ; start powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}" -verb runas +$_Press_Enter +#::