Skipping the TPM Check (W11 23H2)

lbd1277

New Member
Hello,

I'm trying to skip the TPM Checks for the install.

I have tried Under settings to disable it
I used registry entries
Took my existing setup to create a new preset file as that had it disabled as well.

None of the above options work, any ideas what I'm doing wrong ?

I attached the reg files i used
 

Attachments

  • Windows 11 - Bypass TPM And Secure Boot DEFAULT.reg
    266 bytes
  • Windows 11 - Bypass TPM And Secure Boot.reg
    752 bytes
The 'default' file removes any Bypass reg keys. There's no point using it.

The second file must be applied to boot.wim (not install.wim) for it to work. Add the file under Registry, and under the Apply screen expand Reapply tasks across editions -> Configure - Settings -> boot.wim Windows Setup

If you have a licensed copy of NTLite, simply use Settings / System and look for the three Bypass settings grouped together. NTLite will insert the same keys, but you still need to follow the Reapply tasks across editions step.
 
Rufus won't touch your boot.wim or install.wim, and does it by inserting a hidden unattend.xml with the same reg commands.
If you have licensed NTLite, no need to have Rufus perform that task.
 
ok I do have a licensed version , Checked the options to disable 3 TPM options , reapplied across the editions as stated above, and the new iso still has the same issue where it does not bypass the TPM settings.

I have attached the preset file.

What am i doing wrong ?
 

Attachments

  • Skip_TPM.xml
    4.7 KB
I don't think you actually selected anything to apply:
Code:
        <Tweaks>
                <Settings></Settings>
                <Services></Services>
                <ExtraServices></ExtraServices>
                <ScheduledTasks></ScheduledTasks>
        </Tweaks>

Correct:
Code:
        <Settings>
            <TweakGroup name="System">
                <Tweak name="LabConfig\BypassRAMCheck">1</Tweak>
                <Tweak name="LabConfig\BypassTPMCheck">1</Tweak>
            </TweakGroup>
        </Settings>
 
ok I do have a licensed version , Checked the options to disable 3 TPM options , reapplied across the editions as stated above, and the new iso still has the same issue where it does not bypass the TPM settings.

I have attached the preset file.

What am i doing wrong ?
Change Settings\ System\ Setup reguirement - TPM and Secure Boot from Default to Disabled and you're good to go.
 
Back
Top