Created
December 3, 2011 19:40
-
-
Save cdwilson/1427923 to your computer and use it in GitHub Desktop.
Enable / disable driver signing in Windows 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS | |
bcdedit -set TESTSIGNING ON | |
bcdedit /deletevalue loadoptions | |
bcdedit -set TESTSIGNING OFF |
DDISABLE_INTEGRITY_CHECKS seems no longer work since windows 7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actually, the command for disabling is "bcdedit -set loadoptions DDISABLE_INTEGRITY_CHECKS", not "bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS"