
- To disable driver signature enforcement on Windows 10, open Settings > Update & Security and click “Restart now,” then open the “Startup Settings” page, click “Restart,” and type “F7” or “7” to select the “Disable driver signature enforcement” option.
- On Windows 10, it’s also possible to disable the signature enforcement through Command Prompt using the “bcdedit /set nointegritychecks on” command.
UPDATED 9/8/2025: On Windows 10, you can turn off the driver signature enforcement feature when you need to install unsigned drivers. In this guide, I’ll walk you through the two most reliable methods to get it done.
The driver signature enforcement is a built-in security mechanism that protects your system by allowing only drivers that Microsoft has digitally verified and signed, ensuring the code hasn’t been tampered with.
While this safeguard is useful, there are times when you may need to bypass it. For example, you might need to install a legacy driver that no longer receives updates, connect hardware that was released without a signed driver, or test a custom driver you built yourself as a developer.
Whatever the case, Windows 10 gives you at least two options to disable driver signature enforcement. You can do this through the Startup Settings available in the Windows Recovery Environment (WinRE) or by enabling test mode with Command Prompt, which allows unsigned drivers to run on your computer.
In this guide, I’ll outline the steps to disable signature enforcement, allowing the installation of unsigned drivers on Windows 10.
- Disable driver signature enforcement on Windows 10 from Settings app
- Disable driver signature enforcement on Windows 10 from Command Prompt
Disable driver signature enforcement on Windows 10 from Settings app
To disable signature enforcement on Windows 10, follow these steps:
-
Open Settings on Windows 10.
-
Click on Update & Security under the “Advanced startup” section.
-
Click the “Restart now” button.
-
Click on Troubleshoot.
-
Click on Advanced options.
-
Click on Startup Settings.
-
Click the Restart button.
-
Press the “F7” or the “7” key to select the “Disable driver signature enforcement” option on Windows 10.
Once you complete the steps, Windows 10 will boot with the signature enforcement disabled, allowing you to install unsigned drivers as necessary. Then, during the next restart, the driver signature enforcement will be enabled again, and you’ll need to repeat the steps to install another driver.
Disable driver signature enforcement on Windows 10 from Command Prompt
To turn off signature enforcement temporarily from the Command Prompt on Windows 10, follow these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to enable the test signing mode and press Enter:
bcdedit /set testsigning on
-
Restart your computer.
After you complete the steps, you can install unsigned drivers on Windows 10, even after restarting the computer.
When you no longer need to install drivers, you can use the same instructions to disable the Windows 10 test mode, but on step 3, make sure to use this command bcdedit /set testsigning off
and then reboot the device.
If, while enabling test mode, you receive a message indicating that your device has Secure Boot enabled, it’s best to use the approach shown in the Settings app, as above.
Disable signature enforcement permanently
To disable driver signature enforcement permanently on Windows 10, follow these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to disable driver signature enforcement on Windows 10 and press Enter:
bcdedit /set nointegritychecks on
-
Restart your computer.
Once you complete the steps, you should be able to install unsigned drivers on your computer.
If you no longer need the feature, you can revert the changes with the same instructions, but in step 3, make sure to use this command bcdedit /set nointegritychecks off
and then restart the device.
Update September 8, 2025: This guide has been updated to ensure accuracy and reflect changes to the process.