Disable driver signature enforcement through WinDbg

Hi,

Is it possible to disable driver signature enforcement through WinDbg?
I know we can do it with F8 during startup, but suppose one misses that opportunity then is it possible to still do it through WinDbg with say setting Initial Break?

Regards,
Suresh

Signature enforcement is disabled when the debugger is attached, there is nothing else you need to do.

If you’re trying to disable signature enforcement on boot start drivers, you need to enable boot debugging:

bcdedit /set bootdebug on

-scott
OSR
@OSRDrivers