Checking for and turning off digitally unsigned drivers

Yepkoo

Yepkoo
Staff member
Open the run command with Windows + R key and write the following code.

Code:
sigverif

In the window that opens, you click the Start button and when the process is complete, it will list the drivers on your computer that are not digitally signed.

To turn off digital signature verification;

Code:
bcdedit /set testsigning on
bcdedit /set nointegritychecks ON
bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS

To turn digital signature verification back on;

Code:
bcdedit /set testsigning off
bcdedit /set nointegritychecks OFF
bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS

If you get an error, turn off the Secure Boot option in the Bios settings.
 
Top