Wednesday, 16 Dec, 2015 RUN "CMD" As Administrator. First things first - run a command prompt As Administrator! [Win 7] Win + R -> cmd -> CTRL + SHIFT + ENTER [Win 8/8.1/10] Win -> cmd -> CTRL + SHIFT + ENTER. [GUI]: To DISABLE "Driver Signing" (so you CAN install UNSIGNED Drivers): 1) Disable "Integrity Checks". 2) Enable "Test Mode". 3) Restart your System. Copy-Paste code to install unsigned drivers: bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS bcdedit -set TESTSIGNING ON shutdown /r /t 0 above commands will: "DISABLE Integrity checks" so unknown drivers could be installed. Allow "Test" signatures. Restart your computer. To ENABLE "Driver Signing" (so you CAN'T install UNSIGNED Drivers): 1) Enable "Integrity Checks". 2) Disable "Test Mode". 3) Restart your System. Copy-Paste below code: bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS bcdedit -set TESTSIGNING OFF shutdown /r /t 0 above commands will: "Enable Integrity checks" so unknown drivers won't be installed. Disable/Disallow "Test" signatures. Restart your computer. 4.7/5 - (3 votes) Andrea MatesiSenior Professional Network and Computer Systems Engineer during work hours and father when home. Andrea strives to deliver outstanding customer service and heaps of love towards his family. In this Ad-sponsored space, Andrea shares his quest for "ultimate" IT knowledge, meticulously brought to you in an easy to read format. Share this:LinkedIn Related