Chrome history keeps clearing itself? Here's the real fix

Cybersecurity & Malware Intermediate 👁 8 views 📅 Jun 29, 2026

Your browser history vanishes on its own. Malware or a sneaky Group Policy is usually the cause. Here's how to stop it for good.

You open Chrome, Edge, or Firefox, and your history is just... gone. You didn't clear it. No one else touched your PC. But every time you restart the browser, the visited sites list is empty. I've seen this most often after someone installs a free tool from a shady site, or after a Windows update that flips a hidden switch.

The root cause is almost always one of two things: a piece of malware that's set to wipe your history on exit (common with browser hijackers), or a Group Policy setting that forces the browser to clear data when it closes. Sometimes it's both. Let's kill it.

Step 1: Check for malware first

Don't trust your regular antivirus here — Windows Defender is actually pretty good for this. Run a full scan, but also use Malwarebytes Free. Download it, update it, run a custom scan of your browser folders. Look for anything named like historycleaner.exe or cacheclear.dll. Remove whatever it finds, then restart your PC.

Step 2: Turn off the browser's own auto-clear setting

Chrome and Edge have a setting that says "Clear browsing data on exit." It's often turned on by malware or a misbehaving extension. Here's how to check:

  • Chrome: Go to chrome://settings/clearBrowserData. Scroll down to Advanced. Make sure Clear on exit is toggled OFF. No, really — look. Some malware toggles it silently.
  • Edge: Go to edge://settings/clearBrowserData. Same deal, turn off Choose what to clear every time you close the browser.
  • Firefox: Go to about:preferences#privacy. Under History, set it to Remember history. If it says Never remember history, change it.

Step 3: Check Group Policy (the sneaky one)

This is the fix that catches most people. Windows Group Policy can force browsers to clear history even if you turned off the setting. Hit Windows Key + R, type gpedit.msc, and hit Enter. Then drill down to:

Computer Configuration > Administrative Templates > Google Chrome (or Microsoft Edge) > Privacy

Look for Enable saving browser history. If it's set to Disabled, that's your problem. Change it to Not Configured or Enabled. Also check Clear browsing data on exit in that same folder — set it to Not Configured.

If you don't have gpedit.msc (Windows Home users), you can edit the registry directly. Open regedit and go to:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\

Look for SavingBrowserHistoryDisabled. If it's there and set to 1, delete the entry or set it to 0. Same for ClearBrowsingDataOnExit. Reboot after.

Step 4: Check extensions

Some extensions claim to protect your privacy but really just clear your history. Go to chrome://extensions (or the equivalent in Edge/Firefox). Disable anything you don't recognize, or that has "cleaner" or "shield" in its name. One common culprit is History Eraser or Secure Browsing. Remove them.

Step 5: Reset the browser

If everything else fails, reset the browser completely. In Chrome, go to chrome://settings/reset and click Restore settings to their original defaults. This removes extensions, clears temporary data, and resets startup pages. It won't delete your bookmarks or passwords, just the bad settings.

What to check if it still fails

You've done all this and the history still vanishes? Check for a scheduled task. Open Task Scheduler and look under Task Scheduler Library for anything named like "ClearHistory" or "BrowserCleanup." Disable it. Also, run sfc /scannow in Command Prompt (Admin) to fix corrupted system files. Rarely, a bad Windows Update can reapply Group Policies — if nothing else works, consider a system restore point from before the issue started.

One last thing: if you're on a work or school computer, the IT department might have set this policy intentionally. In that case, you can't override it — talk to your admin. But if it's your personal machine, the steps above will kill it. This tripped me up the first time too, but now you're set.

Was this solution helpful?