Wednesday, September 8, 2021

How to permanently disable driver signature enforcement permanently

 Sometimes you want to disable Driver Signature Enforcement to install an unsigned driver, like driver used for Valorant's anti cheat in Windows 7. To disable Driver Signature Enforcement, open Command Prompt ( CMD ) as administrator and type these 2 commands separately followed by pressing enter for each command :

bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS

bcdedit -set TESTSIGNING ON

 After that, restart your windows and if you see "Test Mode" at bottom right corner that means you have succeed disable Driver Signature Enforcement.

 To re-enable Driver Signature Enforcement, open Command Prompt ( CMD ) as administrator and type these 2 commands separately followed by pressing enter for each command :

bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS

bcdedit -set TESTSIGNING OFF

 If you don't see "Test Mode" at bottom right corner that means you have succeed re-enable Driver Signature Enforcement.

No comments:

Post a Comment