mirror of
https://github.com/AveYo/MediaCreationTool.bat.git
synced 2025-04-04 18:10:45 +00:00
Skip TPM Check v7
remove wmi-based v1 if somehow it is still installed and cause issues delete archived versions since older bypasses are no longer advised
This commit is contained in:
parent
c3ff837dcb
commit
beedf56672
10
README.md
10
README.md
@ -23,11 +23,11 @@ Note that `MCT Defaults` preset creates a vanilla media without modifications! a
|
||||
|
||||
Get RP/BETA/DEV 11 builds via Windows Update on allegedly "unsupported" hardware
|
||||
--------------------------------------------------------------------------------
|
||||
Step 1: use [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) to subscribe to the channel you want
|
||||
_while on 10, use BETA for Windows 11 22000.x builds (release), DEV for Windows 11 225xx.x builds (experimental)_
|
||||
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_
|
||||
|
||||
Step 2: 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 - v6 using more reliable /Product Server trick_
|
||||
Step 2: use [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) to subscribe to the channel you want
|
||||
_while on 10, use BETA for Windows 11 22000.x builds (release), DEV for Windows 11 225xx.x builds (experimental)_
|
||||
|
||||
Step 3: check for updates via Settings - Windows Update and select Upgrade to Windows 11
|
||||
|
||||
@ -66,7 +66,7 @@ Presets
|
||||
>3 **Make USB** with detected media in specified usb target
|
||||
> _- can click Back and select ISO instead to save in a different path_
|
||||
|
||||
>4 **Select** with picked Edition, Language, Arch - on specified target
|
||||
>4 **Select** with user picked Edition, Language, Arch (x86,x64,both) - on specified target
|
||||
> _- implicit choice, will include setup override files_
|
||||
|
||||
>5 **MCT Defaults** with GUI selected media, makes vanilla, default MCT iso/usb
|
||||
|
@ -1,45 +1,52 @@
|
||||
@(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
|
||||
#::
|
||||
#:: v6f dynamically skips the anti-consumer windows 11 setup checks via /Product Server trick
|
||||
|
||||
#:: v7 dynamically skips the anti-consumer windows 11 setup checks via /Product Server trick
|
||||
#:: it is most reliable, and only has a 'Windows Server' label cosmetic-ish difference
|
||||
#:: works with:
|
||||
#:: 11 setup via Windows Update (after using OfflineInsiderEnroll by whatever127 and abbodi1406)
|
||||
#:: 11 setup via mounted iso / usb (use the Quick.. script for skipping 11 setup checks at boot)
|
||||
#::
|
||||
|
||||
$_Paste_in_Powershell = { $Code = @'
|
||||
$Nfo = 'Skip TPM Check on Dynamic Update v6f, AveYo 2021'
|
||||
$Arg = (([environment]::get_CommandLine()-split'-[-]% ')[1]-split'.exe[\p{P}]? ')[1]
|
||||
foreach ($x in 'Product','DynamicUpdate','Telemetry') {$Arg = $Arg-replace$('\p{P}?/' + $x + '\p{P}? \p{P}?[A-Z]+\p{P}? '),' '}
|
||||
$Cli = ' /DynamicUpdate Disable /Telemetry Disable ' + $Arg; $Srv = ' /Product Server' + $Cli
|
||||
$Dir = join-path $([Environment]::SystemDirectory[0..2]-join'') '$WINDOWS.~BT\Sources\'
|
||||
$Cfg = join-path $Dir 'EI.cfg'; $EI = '[Channel]' +[char]13+[char]10+ '_Default' +[char]13+[char]10
|
||||
$Exe = join-path $Dir 'SetupHost.exe'; $Inf = get-item -force -lit $Exe; [int]$Ver = $Inf.VersionInfo.FileBuildPart
|
||||
if ($Ver -ge 22000) {$Run = $Exe + $Srv} else {$Run = $Exe + $Cli}
|
||||
if ($Ver -ge 22000 -and !(test-path $Cfg)) {[io.file]::WriteAllText($Cfg, $EI)}
|
||||
$D=@(); $T=@(); $A=@(); $M=[AppDomain]::CurrentDomain.DefineDynamicAssembly(1,1).DefineDynamicModule(1)
|
||||
foreach ($x in 0..2) {$D+=$M.DefineType('AveYo_'+$x,1179913,[ValueType])}; foreach ($x in 1..2) {$D+=$D[$x].MakeByRefType()}
|
||||
$S=[string]; $I=[int32]; $U=[uintptr]; $y=0; $z=0; foreach ($x in $U,$U,$I,$I) {$9=$D[2].DefineField('f'+$y++,$x,6)}
|
||||
foreach ($x in $I,$S,$S,$S,$I,$I,$I,$I,$I,$I,$I,$I,[int16],[int16],$U,$U,$U,$U) {$9=$D[1].DefineField('f'+$z++,$x,6)}
|
||||
$9=$D[0].DefinePInvokeMethod('CreateProcess','kernel32',8214,1,[void],($S,$S,$I,$I,[bool],$I,$I,$S,$D[3],$D[4]),1,4)
|
||||
$9=$D[0].DefinePInvokeMethod('DebugActiveProcessStop','kernel32',8214,1,[void],($I),1,4)
|
||||
foreach ($x in 0..2) {$T+=$D[$x].CreateType()}; foreach ($x in 1..2) {$A+=[Activator]::CreateInstance($T[$x])}
|
||||
$R=$null, $Run, $null, $null, $false, 0x02000011, $null, $null, $A[0], $A[1]
|
||||
$T[0].GetMethod('CreateProcess').invoke(0, $R); $T[0].GetMethod('DebugActiveProcessStop').invoke(0, $R[9].f2)
|
||||
$W=get-process -pid $R[9].f2 -ea 0; for (;;) {sleep 1; if (0-eq $R[9].f2 -or $null-eq $W -or $W.HasExited) {return} }
|
||||
'@ -replace '\r?\n|\r', '; ' <# lines 19-28 are needed for escaping ifeo, remain calm ;) #>
|
||||
$IFEO = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\SetupHost.exe'
|
||||
$Prog = join-path $([Environment]::SystemDirectory[0..2] -join '') '$WINDOWS.~BT\Sources\SetupHost.exe'
|
||||
$Skip = "powershell -win 1 -nop -c iex (get-itemproperty '$IFEO\0' 'Code' -ea 0).Code; write-host --%"
|
||||
remove-item $($IFEO -replace 'SetupHost', 'vdsldr') -rec -force -ea 0 >''; rmdir (split-path $Prog) -rec -force -ea 0 >''
|
||||
if (test-path "$IFEO\0") {
|
||||
remove-item $IFEO -rec -force -ea 0 >''
|
||||
write-host -fore 0xf -back 0xd "`n Skip TPM Check on Dynamic Update v6f [REMOVED] run again to install "
|
||||
} else {
|
||||
new-item "$IFEO\0" -force -ea 0 >''
|
||||
set-itemproperty "$IFEO\0" 'Debugger' $Skip -force -ea 0; set-itemproperty "$IFEO\0" 'Code' $Code -force -ea 0
|
||||
set-itemproperty "$IFEO\0" 'FilterFullPath' $Prog -force -ea 0; set-itemproperty $IFEO 'UseFilter' 1 -type dword -force -ea 0
|
||||
write-host -fore 0xf -back 0x2 "`n Skip TPM Check on Dynamic Update v6f [INSTALLED] run again to remove " } ; timeout /t 5
|
||||
$Nfo = 'Skip TPM Check on Dynamic Update v7, AveYo 2021'
|
||||
$Arg = (([environment]::get_CommandLine()-split'-[-]% ')[1]-split'.exe[\p{P}]? ')[1]
|
||||
foreach ($x in 'Product','DynamicUpdate','Telemetry') {$Arg = $Arg -replace $('\p{P}?/'+ $x +'\p{P}? \p{P}?[A-Z]+\p{P}? '),' '}
|
||||
$Cli = ' /DynamicUpdate Disable /Telemetry Disable ' + $Arg; $Srv = ' /Product Server' + $Cli
|
||||
$Dir = join-path $([Environment]::SystemDirectory[0..2]-join'') '$WINDOWS.~BT\Sources\'
|
||||
$Cfg = join-path $Dir 'EI.cfg'; $EI = '[Channel]' +[char]13+[char]10+ '_Default' +[char]13+[char]10
|
||||
$Exe = join-path $Dir 'SetupHost.exe'; $Inf = get-item -force -lit $Exe; [int]$Ver = $Inf.VersionInfo.FileBuildPart
|
||||
if ($Ver -ge 22000) {$Run = $Exe + $Srv} else {$Run = $Exe + $Cli}
|
||||
if ($Ver -ge 22000 -and !(test-path $Cfg)) {[io.file]::WriteAllText($Cfg, $EI)}
|
||||
|
||||
$D=@(); $T=@(); $A=@(); $M=[AppDomain]::CurrentDomain.DefineDynamicAssembly(1,1).DefineDynamicModule(1)
|
||||
foreach ($x in 0..2) {$D+=$M.DefineType('AveYo_'+$x,1179913,[ValueType])}; foreach ($x in 1..2) {$D+=$D[$x].MakeByRefType()}
|
||||
$S=[string]; $I=[int32]; $U=[uintptr]; $y=0; $z=0; foreach ($x in $U,$U,$I,$I) {$9=$D[2].DefineField('f'+$y++,$x,6)}
|
||||
foreach ($x in $I,$S,$S,$S,$I,$I,$I,$I,$I,$I,$I,$I,[int16],[int16],$U,$U,$U,$U) {$9=$D[1].DefineField('f'+$z++,$x,6)}
|
||||
$9=$D[0].DefinePInvokeMethod('CreateProcess','kernel32',8214,1,[void],($S,$S,$I,$I,[bool],$I,$I,$S,$D[3],$D[4]),1,4)
|
||||
$9=$D[0].DefinePInvokeMethod('DebugActiveProcessStop','kernel32',8214,1,[void],($I),1,4)
|
||||
foreach ($x in 0..2) {$T+=$D[$x].CreateType()}; foreach ($x in 1..2) {$A+=[Activator]::CreateInstance($T[$x])}
|
||||
$R=$null, $Run, $null, $null, $false, 0x02000011, $null, $null, $A[0], $A[1]
|
||||
$T[0].GetMethod('CreateProcess').invoke(0, $R); $T[0].GetMethod('DebugActiveProcessStop').invoke(0, $R[9].f2)
|
||||
$W=get-process -pid $R[9].f2 -ea 0; for (;;) {sleep 1; if (0-eq $R[9].f2 -or $null-eq $W -or $W.HasExited) {return} }
|
||||
'@ -replace '\r?\n|\r', '; ' <# lines 20-29 are needed for escaping ifeo, remain calm ;) #>
|
||||
|
||||
$IFEO = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\SetupHost.exe'
|
||||
$Prog = join-path $([Environment]::SystemDirectory[0..2] -join '') '$WINDOWS.~BT\Sources\SetupHost.exe'
|
||||
$Skip = "powershell -win 1 -nop -c iex (get-itemproperty '$IFEO\0' 'Code' -ea 0).Code; write-host --%"
|
||||
if (test-path "$IFEO\0") {
|
||||
remove-item $IFEO -rec -force -ea 0 >''
|
||||
write-host -fore 0xf -back 0xd "`n Skip TPM Check on Dynamic Update v7 [REMOVED] run again to install "
|
||||
} else {
|
||||
new-item "$IFEO\0" -force -ea 0 >''
|
||||
set-itemproperty "$IFEO\0" 'Debugger' $Skip -force -ea 0; set-itemproperty "$IFEO\0" 'Code' $Code -force -ea 0
|
||||
set-itemproperty "$IFEO\0" 'FilterFullPath' $Prog -force -ea 0; set-itemproperty $IFEO 'UseFilter' 1 -type dword -force -ea 0
|
||||
write-host -fore 0xf -back 0x2 "`n Skip TPM Check on Dynamic Update v7 [INSTALLED] run again to remove "
|
||||
}
|
||||
remove-item $($IFEO -replace 'SetupHost', 'vdsldr') -rec -force -ea 0 >''; rmdir (split-path $Prog) -rec -force -ea 0 >''
|
||||
$N = 'Skip TPM Check on Dynamic Update' <# also remove wmi-based v1 if somehow still installed, not just vdsldr-based v2 - v5 #>
|
||||
$U = 'root\subscription'; $C = gwmi -Class CommandLineEventConsumer -Namespace $U -Filter "Name='$N'" -ea 0
|
||||
$B = gwmi -Class __FilterToConsumerBinding -Namespace $U -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
|
||||
$F = gwmi -Class __EventFilter -NameSpace $U -Filter "Name='$N'" -ea 0; $B,$C,$F |% {$_|rwmi -ea 0}; timeout /t 5
|
||||
} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
|
||||
$_Press_Enter
|
||||
#::
|
||||
|
@ -1,29 +0,0 @@
|
||||
@(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
|
||||
#:: v1 of the toggle script works perfectly fine for most people with a non-botched windows installation
|
||||
#:: uses a fast, fileless wmi subscription to watch for the Virtual Disk Service Loader process running during setup,
|
||||
#:: then launches a cmd erase of appraiserres.dll - that's all there is to it, no rocket science, just a great implementation
|
||||
#:: 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
|
||||
|
||||
$_Paste_in_Powershell = {
|
||||
$N = 'Skip TPM Check on Dynamic Update'; $off = $false
|
||||
$0 = sp 'HKLM:\SYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0
|
||||
$0 = ri 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe' -force -ea 0
|
||||
$0 = sc.exe config Winmgmt start= demand; sp HKLM:\SOFTWARE\Microsoft\Wbem 'Enable Costly Providers' 0 -type dword -force -ea 0
|
||||
$B = gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
|
||||
$C = gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name='$N'" -ea 0
|
||||
$F = gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name='$N'" -ea 0
|
||||
if ($B) { $B | rwmi; $off = $true } ; if ($C) { $C | rwmi; $off = $true } ; if ($F) { $F | rwmi; $off = $true }
|
||||
if ($off) { write-host -fore 0xf -back 0xd "`n $N [REMOVED] run again to install "; timeout /t 5; return }
|
||||
$P = "$([environment]::SystemDirectory)\cmd.exe"; $T = "$P /q $N (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q"
|
||||
$D = "$($P[0]):\`$WINDOWS.~BT"; $Q = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'"
|
||||
$F = swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{
|
||||
Name = $N; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = $Q} -PutType 2 -ea 0
|
||||
$C = swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{
|
||||
Name = $N; WorkingDirectory = $D; ExecutablePath = $P; CommandLineTemplate = $T; Priority = 128} -PutType 2 -ea 0
|
||||
$B = swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=$F;Consumer=$C} -PutType 2 -ea 0
|
||||
write-host -fore 0xf -back 0x2 "`n $N [INSTALLED] run again to remove "; timeout /t 5
|
||||
} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
|
||||
$_Press_Enter
|
||||
#::
|
@ -1,25 +0,0 @@
|
||||
@(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
|
||||
#:: v2 of the toggle script comes to the aid of outliers for whom v1 did not work due to various reasons (broken/blocked/slow wmi)
|
||||
#:: uses IFEO instead to attach to the same Virtual Disk Service Loader process running during setup, then launches a cmd erase
|
||||
#:: of appraiserres.dll - but it must also do some ping-pong renaming of the exe in system32\11 - great implementation nonetheless
|
||||
#:: (for simplicity did not use powershell invoking CreateProcess and DebugActiveProcessStop to overcome IFEO constrains)
|
||||
#:: in v2 the cmd window will briefly flash while running diskmgmt - so it is not "better" per-se. just more compatible / reactive
|
||||
#:: 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
|
||||
|
||||
$_Paste_in_Powershell = {
|
||||
$N = 'Skip TPM Check on Dynamic Update'
|
||||
$0 = sp 'HKLM:\SYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0
|
||||
$B = gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
|
||||
$C = gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name='$N'" -ea 0
|
||||
$F = gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name='$N'" -ea 0
|
||||
if ($B) { $B | rwmi } ; if ($C) { $C | rwmi } ; if ($F) { $F | rwmi }
|
||||
$C = "cmd /q $N (c) AveYo, 2021 /d/x/r>nul (erase /f/s/q %systemdrive%\`$windows.~bt\appraiserres.dll"
|
||||
$C+= '&md 11&cd 11&ren vd.exe vdsldr.exe&robocopy "../" "./" "vdsldr.exe"&ren vdsldr.exe vd.exe&start vd -Embedding)&rem;'
|
||||
$K = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe'
|
||||
if (test-path $K) {ri $K -force -ea 0; write-host -fore 0xf -back 0xd "`n $N [REMOVED] run again to install "; timeout /t 5}
|
||||
else {$0=ni $K; sp $K Debugger $C -force; write-host -fore 0xf -back 0x2 "`n $N [INSTALLED] run again to remove ";timeout /t 5}
|
||||
} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
|
||||
$_Press_Enter
|
||||
#::
|
@ -1,28 +0,0 @@
|
||||
@(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
|
||||
#:: v3 of the toggle script hides the flashing cmd window via vbs, and sets all reg overrides for good measure
|
||||
#:: uses IFEO to attach to Virtual Disk Service Loader process running during setup, then erases appraiserres.dll
|
||||
#:: it must also do some ping-pong renaming of vdsldr in system32\11
|
||||
#:: 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
|
||||
|
||||
$_Paste_in_Powershell = {
|
||||
$N = "Skip TPM Check on Dynamic Update"; $X = @("' $N (c) AveYo 2021 : v3 IFEO-based with no flashing cmd window")
|
||||
$X+= 'C = "cmd /q AveYo /d/x/r erase /f/s/q %systemdrive%\$windows.~bt\appraiserres.dll&"'
|
||||
$X+= 'M = "md 11&cd 11&ren vd.exe vdsldr.exe &robocopy ""../"" ""./"" ""vdsldr.exe""&ren vdsldr.exe vd.exe&"'
|
||||
$X+= 'D = "start vd.exe -Embedding" : CreateObject("WScript.Shell").Run C & M & D, 0, False'
|
||||
$U = 'root\subscription'; $C = gwmi -Class CommandLineEventConsumer -Namespace $U -Filter "Name='$N'" -ea 0
|
||||
$B = gwmi -Class __FilterToConsumerBinding -Namespace $U -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
|
||||
$F = gwmi -Class __EventFilter -NameSpace $U -Filter "Name='$N'" -ea 0; $B,$C,$F |% {$_|rwmi -ea 0} # undo v1
|
||||
$L = 'HKLM:\SYSTEM\Setup\LabConfig'; $M = 'HKLM:\SYSTEM\Setup\MoSetup'; $L,$M |% {ni $_ -force -ea 0 >''}
|
||||
'sCPU','sRAM','sSecureBoot','sStorage','sTPM' |% {sp $L "Bypas${_}Check" 1 -type dword -force -ea 0 >''}
|
||||
sp $M 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0 >''
|
||||
$K = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe'
|
||||
$V = "wscript 11.vbs //B //T:5"; $S = [environment]::SystemDirectory; if (test-path $K) {
|
||||
ri $K -force -ea 0 >''; del "$S\11.vbs" -force -ea 0; rmdir "$S\11" -force -re -ea 0
|
||||
write-host -fore 0xf -back 0xd "`n $N v3 [REMOVED] run again to install " } else {
|
||||
ni $K -force -ea 0 >''; sp $K Debugger $V -force -ea 0; [io.file]::WriteAllText("$S\11.vbs", $X-join"`r`n")
|
||||
write-host -fore 0xf -back 0x2 "`n $N v3 [INSTALLED] run again to remove " } ; timeout /t 5
|
||||
} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
|
||||
$_Press_Enter
|
||||
#::
|
@ -1,26 +0,0 @@
|
||||
@(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
|
||||
#::
|
@ -1,26 +0,0 @@
|
||||
@(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
|
||||
#:: v5 of the toggle script uses programdata instead of system32, no longer deletes appraiserres.dll, and clears bypass folder
|
||||
#:: 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 v5 [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 v5 [INSTALLED] run again to remove "
|
||||
} ; rmdir $([Environment]::SystemDirectory[0]+':\\$Windows.~BT\\Sources\\Panther') -rec -force -ea 0; timeout /t 5
|
||||
} ; start powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}" -verb runas
|
||||
$_Press_Enter
|
||||
#::
|
Loading…
Reference in New Issue
Block a user