Kernel Mode
Definition
Highly privileged processing mode where core drivers operate.
Detailed explanation
Kernel mode is the most privileged CPU execution level, where the Windows core and many hardware drivers run with unrestricted access to memory and processor instructions. Storage controllers, network adapters, and graphics cards often operate here because they need to handle hardware interrupts quickly. The trade-off is that a bug in kernel-mode code can corrupt memory used by the entire system, which is why a faulty package may produce a blue-screen stop instead of merely closing one application. Driver signing, Windows security features, and hardware certification all reduce this risk. After a crash, the named .sys module in the Windows minidump can help connect the failure to a specific device package.