need install unsigned drivers permanent on Windows 8, i tested shutdown -o -r -t 0 opcions advance and restrar opción 7 to disable drivers unsigned the problem is when i restar my pc. i lost drivers. i need restar again to use this driver.
Yea, thats never going to happen. Driver Signing Enforcement is built into Windows 8 at kernal level.
I've used this with mixed success. In an elevated command prompt type Code: bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS bcdedit -set TESTSIGNING ON To turn it off again, use these commands: bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS bcdedit -set TESTSIGNING OFF" Some issues, secure boot needs to be disabled to avoid errors for some people. After the drivers are installed, AFAIK you can turn test signing back off. I haven't tested this part though.
there's still a way to use unsigned drivers in windows 8 create a temp folder like win8mod, extract your install.wim in there, inside this folder create 2 folders: WIN8 + drivers, copy all your required drivers inside the drivers folder - no mather if signed or not, make a batch file drivers-update.bat and insert Code: MD %~dp0WIN8 Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0WIN8 Dism.exe /Image:%~dp0WIN8 /Add-Driver /Driver:"%~dp0drivers" /Recurse /ForceUnsigned Dism.exe /Unmount-Wim /MountDir:%~dp0WIN8 /commit then start the batch file in the same folder with install.wim from commandline and get some coffee or a cup of tea. afterwards all drivers will be included in the windows installtion WIM, you can use them independent if unsigned or not, flawlessly. best regards PS: I did the same with an EDID override driver for my monitor to use stereoscopic display on my HDTV.