How to Disable Paging Executive in Windows Regedit
By default, the Windows memory manager pages kernel-mode drivers and
system components out of physical memory and onto the storage drive when
RAM is needed. This guide explains how to disable executive worker
thread and driver paging using the Windows Registry Editor
(regedit), forcing the operating system to keep core kernel
processes resident in physical RAM for reduced latency and faster
response times.
Step-by-Step Guide to Disabling Executive Paging
To modify this behavior, you will adjust the
DisablePagingExecutive value in the Windows Registry.
1. Open the Registry Editor
- Press
Win + Ron your keyboard to open the Run dialog. - Type
regeditand pressEnteror click OK. - If prompted by User Account Control (UAC), click Yes to grant administrative privileges.
2. Navigate to the Memory Management Key
In the Registry Editor address bar or left-hand navigation pane, navigate to the following path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
3. Modify the DisablePagingExecutive Value
- In the right-hand pane, locate the
DisablePagingExecutiveentry. (If it does not exist, right-click an empty area in the right pane, select New > DWORD (32-bit) Value, and name itDisablePagingExecutive.) - Double-click
DisablePagingExecutiveto open its properties. - Under Base, select Hexadecimal.
- Change the Value data from
0to1.0(Default): Allows kernel-mode drivers and executive system code to be paged out to the pagefile on the disk.1(Enabled): Forces the system to keep drivers and kernel code in physical RAM at all times.
- Click OK to save the changes.
4. Restart Your System
Close the Registry Editor and restart your computer for the changes to take effect.
System Considerations
- RAM Requirements: This tweak is recommended only for systems with sufficient physical RAM (typically 8 GB or more). On low-memory systems, disabling executive paging can cause system instability or “Out of Memory” errors.
- Reverting Changes: To restore the default Windows
behavior, navigate back to the same registry key and change the
DisablePagingExecutivevalue back to0.