Browser History allows Microsoft Edge to record a chronological log of all websites visited by the user, storing URLs, page titles, and timestamps in a local SQLite database (History) within the user’s profile directory. While convenient for users attempting to locate previously viewed content, persistent history logging is a significant operational security (OPSEC) liability in strict enterprise environments, particularly on kiosk terminals, shared workstations, or devices handling highly sensitive or classified data. If history data is retained, subsequent users or malicious actors with local file system access can reconstruct a complete timeline of the previous user’s web activity, exposing sensitive internal URLs, session tokens within GET parameters, or proprietary research targets.
This guide explains how to completely disable ‘Browser History’ (Saving History) via Group Policy in Microsoft Edge, enforcing a strict zero-trust model where the browser is cryptographically prevented from writing visitation data to the local disk.
Disable Browser History via Group Policy
To enforce a strict block that permanently neutralizes the history recording engine globally across the OS, we must deploy an administrative template. Note that this requires Windows 11 Pro, Enterprise, or Education editions.
- Log into Windows 11 with an Administrator account.
- Press the Windows Key + R to open the Run dialogue box.
- Type
gpedit.mscand press Enter to launch the Local Group Policy Editor. - In the left-hand navigation pane, strictly follow this exact path:
Computer Configuration > Administrative Templates > Microsoft Edge - In the right-hand pane, locate the policy named Saving browser history disabled.
- Double-click the policy to open its configuration window.
- Select the radio button next to Enabled. (By explicitly enabling this restriction, we instruct the Edge rendering engine to bypass the SQLite transaction sequence that normally writes URL visits to the `History` database file, permanently keeping the log empty regardless of user action).
- Click Apply, then click OK.
Verify the Configuration Lockdown
Group Policy changes require the browser to read the registry upon its next launch.
Close all active instances of Microsoft Edge. To force the policy update immediately across the OS, open Command Prompt as Administrator and run gpupdate /force. To verify the restriction is active, launch Microsoft Edge and navigate to several different websites. Press Ctrl + H to open the History flyout menu. The menu will state “Your history is empty” or similar messaging, and no URLs will be recorded. Furthermore, attempting to type previously visited URLs into the address bar will not yield auto-complete suggestions based on local history. The browser is now cryptographically bound to an amnesiac state regarding user navigation.