Disabling TPM

This is a guide on how to disable TPM.

Methods to Disable TPM

Method 1: BIOS Settings

  1. Enter BIOS/UEFI Settings:

    • Restart your computer

    • Press the BIOS key during startup (usually F2, Del, F12)

  2. Locate TPM Settings:

    • Look under "Security," "Advanced," or "Trusted Computing"

    • Find "TPM Device," "Security Device," or "TPM Security"

    • Set to "Disabled" or "Off"

  3. Save and Exit:

    • Save changes (usually F10)

    • Allow system to restart

Method 2: Removing TPM.sys (Advanced)

Backup Warning

This method involves modifying system files. Create a backup before proceeding.

  1. Backup TPM.sys:

    copy C:\Windows\System32\drivers\tpm.sys C:\tpm_backup.sys
  2. Take Ownership:

    takeown /f C:\Windows\System32\drivers\tpm.sys
    icacls C:\Windows\System32\drivers\tpm.sys /grant administrators:F
  3. Delete or Rename:

    ren C:\Windows\System32\drivers\tpm.sys tpm.sys.old

    or

    del C:\Windows\System32\drivers\tpm.sys

Method 3: Services Disable (Permanent)

  1. Open Command Prompt as Administrator

  2. Disable TPM Services:

  3. Disable Additional Related Services:

Method 4: Registry Modifications

  1. Open Registry Editor:

    • Press Windows + R

    • Type regedit and press Enter

  2. Navigate to:

  3. Modify Values:

    • Find "Start" value

    • Change to "4" (Disabled)

  4. Additional Registry Keys:

    • Set "Start" to "4" for each

Group Policy Method

  1. Open Group Policy Editor:

    • Press Windows + R

    • Type gpedit.msc

  2. Navigate to:

    • Computer Configuration > Administrative Templates > System > Trusted Platform Module Services

  3. Disable TPM:

    • Find "Turn off TPM"

    • Set to "Enabled" (yes, "Enabled" turns off TPM)

Verifying TPM Status

Command Line Check

or

System Information

  1. Press Windows + R

  2. Type msinfo32

  3. Look for "TPM Status"

Restoring TPM

If you need to restore TPM functionality:

  1. If you renamed tpm.sys:

  2. If you backed up tpm.sys:

  3. Re-enable Services:

Important Notes

  1. Some Windows features may not work with TPM disabled

  2. Create system restore point before making changes

  3. Keep backup of tpm.sys in safe location

  4. Document any changes made for future reference

Troubleshooting

Common Issues

  1. Services Keep Re-enabling:

    • Use both registry and service methods

    • Check for Windows updates resetting settings

    • Consider using Group Policy method

  2. Windows Security Warnings:

    • These are normal when TPM is disabled

    • Can be ignored if TPM disable is intended

  3. Boot Issues:

    • Boot in safe mode if problems occur

    • Restore from backup if necessary

    • Use system restore point

For additional support, contact our support team or consult your system manufacturer's documentation. if none help search on youtube.

Last updated

Was this helpful?