How to delete browser history and activity in Windows 11

Last update: 24/04/2026
Author Isaac
  • Windows 11 saves recent file, activity, and browsing histories that can affect your privacy.
  • Explorer allows you to delete or disable recent files and paths using options and Registry editing.
  • Activity history and browser data (Edge, Chrome, Firefox, IE) can be cleared in a few steps.
  • Applying these cleanings regularly reduces traces of use and helps optimize performance and discretion.

Delete browser history in Windows 11

Controlling what data your PC stores is key to maintaining Privacy and performance in Windows 11Between browsing histories, recent file lists, and activity logs, the system accumulates a lot of information about what you do every day, and it's not always desirable for that to stay there, especially if you share a computer.

Throughout this article you will see, step by step, how Delete and disable different histories in Windows 11: the file explorer history, the system activity history, and also how the trace you leave in browsers like Edge, Chrome, Firefox or even the veteran Internet Explorer and classic Microsoft Edge are managed on computers where they are still used.

What types of history does Windows 11 save and what is actually deleted

Before you start deleting things willy-nilly, it's worth understanding What histories exist and what disappears when you delete them?Not all records are the same or stored in the same place, and that influences the steps you will follow.

On one side is the Windows 11 File ExplorerThis feature displays recent files and folders on the Explorer's Home screen and in quick access. This helps you quickly find what you use often, but it also leaves your activity very visible to anyone sitting in front of the PC.

In addition, Windows 11 maintains a System-level activity historyThis history records the apps you use, documents you open, and pages you visit in Microsoft Edge. It's saved locally and, if you allow it, can also sync with your Microsoft account for continuity across devices.

Furthermore, each browser (Edge, Chrome, Firefox, Internet Explorer, or the old Edge) stores its own browsing history, cookies, cache and other dataAlthough they are related to your activity in Windows, they are managed independently.

When you choose to clear browsing history, Windows and browsers may delete different types of information. Some typical examples of what gets deleted are:

  • Browsing history: List of websites you have visited, including those you visit frequently.
  • Cookies and website data: small files that store logins, page preferences, and other personalized information.
  • Cached files and data: Copies of pages, images, and other resources to load websites you visit faster.
  • Download history: List of downloaded files (without deleting the files themselves, only the record).
  • Form data: information that you usually write in forms (names, addresses, emails, etc.).
  • Saved passwords: keys that browsers store so you don't have to type them every time.
  • Media licenses and DRM: protected content licenses (e.g., PlayReady or video/streaming DRM).
  • Pop-up window exceptions: list of websites that you allow to open pop-ups.
  • Location permissions: websites authorized to know your location.
  • Full screen permissions: sites you allow to open in full screen mode without asking.
  • Compatibility settings: sites that open automatically with Internet Explorer or compatibility modes.

Having all this clear in your mind helps you decide what you want delete for privacy reasons only and what you want to keep to maintain convenience in your daily life (for example, passwords or form data).

Delete recent files and traces in Windows Explorer 11

By default, File Explorer displays a section with recently used files and foldersIt's useful for opening things quickly, but it also leaves documents visible that you might prefer to hide, especially if other people have access to your session or your computer.

Windows 11 offers several ways to manage these recent items: you can delete specific items, clear the entire history at once, or even completely disable the feature so that it stops recording what you open.

Manually delete recent items This is the gentlest option. Simply open File Explorer, go to Start or Quick Access, and right-click on the file or folder you don't want to appear there, choosing the "Remove from Recents" option. This way, you only clear what you want, without affecting the rest of your history.

If you want to go a step further and delete recent accesses at the file system levelYou can clean up the folder where Windows stores these shortcuts. To do this:

  • Press the Windows + R key combination to open the Run dialog box.
  • Write %AppData%\Microsoft\Windows\Recent\ (exactly like that) and click OK.
  • An Explorer window will open with all recently accessed items stored.
  • Select what you want to delete or select all the content and delete it as if it were normal files.

With this method you clean the References that Windows uses to display recent itemsThis means that many of the lists you see on a daily basis within the system are emptied.

Another possibility is to disable Windows from continuing to display and log these files in the Explorer interface. From the File Explorer options You can do it very easily:

  • Open File Explorer and go to the Home view.
  • Click on the three-dot icon in the top bar.
  • Select the "Options" option to open the Folder Options window.
  • On the "General" tab, scroll down to the "Privacy" section.
  • Uncheck the boxes "Show recently used files" and "Show frequently used folders".
  • Save the changes with OK or Apply.
  How to Install Grok Code Fast 1 on Windows 11: A How-To Guide

From that moment on, the Explorer will stop show and update lists with recent itemsTherefore, whoever opens that window will not see your recent activity reflected there.

If you want a complete removal of what appears on the browser's Home screen, you can also clear the history in one fell swoop From the same Options window, in the Privacy section, you'll see a "Clear" button that removes the history of recent files and folders handled by Explorer. This completely cleans up the list, ideal if you've shared a computer and don't want any trace left behind.

Delete or clear the route address bar history

Beyond recent files, Windows 11 File Explorer also saves a route history in the address barIn other words, when you access servers, network folders, or custom paths, these addresses are saved and Windows displays them as drop-down suggestions when you type something similar again.

This is convenient if you always connect to the same resources, but it can be quite annoying and even a privacy issue if you work with routes that constantly change or involve sensitive serversIn that case, having the drop-down menu full of old addresses and unexpected autofills doesn't exactly help.

Windows stores these written paths in a Registry key, specifically in HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPathsEvery time you type a new path into your browser, an entry is created. If you want to clear this history, the idea is simple: periodically empty that key or automate the emptying process each time it is modified.

An advanced method for automatically clearing the address bar history involves audit the Registry key and launch a scheduled task It runs a PowerShell script every time a change is detected (i.e., a new path typed). It's a somewhat geeky approach, but incredibly effective if you don't want to leave any trace of what you type.

The general procedure can be summarized in three main steps: enable Registry modification auditing, create a scheduled task that responds to that event, and finally, write a script that deletes the entries in the TypedPaths key when the task is triggered.

To get started, you need Activate Registry access auditso that Windows generates security events every time something changes in that specific key:

  • Press Windows + R, type secpol.msc and press Enter to open the Local Security Policy.
  • Navigate to Advanced Audit Policy Settings > Object Access > Audit Logging.
  • Enable Success and Failure to Audit Logs so that changes are recorded.
  • Open the Registry Editor (regedit) and go to HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths.
  • Right-click on the TypedPaths key and go to "Permissions".
  • Click on "Advanced" and then go to the "Audit" tab.
  • Add a user or group to monitor (for example, "Everyone") and select Full Control or Full Access, logging Success and Error.

With this, every time something is modified in that key, Windows will generate a security event with ID 4657 which you can use as a trigger for your automation.

The next step is to create a programmed task that reacts to that eventIn short, it's about telling Task Scheduler that when event 4657 with certain characteristics occurs, it should run a PowerShell script:

  • Open Task Scheduler with Windows + R, typing taskschd.msc and pressing Enter.
  • In the Actions panel, select "Create task".
  • On the General tab, give it a descriptive name (for example, "Delete TypedPaths subkeys") and check the box to run it with the highest privileges.
  • Select to run whether the user is logged in or not, so that the behavior is consistent.
  • On the Triggers tab, create a new trigger "When an event occurs" and choose the custom filter option.
  • Go to the XML tab of the filter, check that you want to edit the query manually, and paste a query that selects security events with ID 4657 related to changes in the Registry and the specific operation that interests you (for example, those of type %%1904, which correspond to certain modifications).

Once the trigger is defined, you must configure the action that will execute the taskIn this case, it will involve starting PowerShell with a specific script:

  • Go to the Actions tab and create a new action of type "Start a program".
  • In "Program or script" enter powershell.exe.
  • In "Add arguments" specify something like: -WindowStyle hidden -ExecutionPolicy Bypass -File «C:\ScriptsNeed\DeleteTypedPathsSubkeys.ps1» (adjusting the path to where your script is located).

The script itself can be quite simple, limited to Review the properties in TypedPaths and remove those that correspond to saved paths.For example, you could have a DeleteTypedPathsSubkeys.ps1 file in your chosen path with code that iterates through the key properties and deletes those that begin with something specific, such as "url":

  How to manage virtual network adapters in Windows 11

foreach ($property in $properties.PSObject.Properties) {
if ($property.Name -like «url*») {
Remove-ItemProperty -Path «HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths» -Name $property.Name
}
}

With all this set up, every time you type a new path in the address bar, Windows will generate an event, trigger the scheduled task, and the script will clean up the entries for that key, preventing... a history of routes used in the browser is accumulatedIt's an advanced solution, but perfect if you want that list to disappear.

Optimize privacy and performance by deleting leftover files

Beyond its own history, Windows 11 tends to accumulate piles of unnecessary files Over time, you accumulate old downloads, documents you no longer need, system temporary files, various caches, and so on. All of this takes up space and, in some cases, leaves a fairly clear trace of your activity.

File Explorer itself can be your ally in identifying items you no longer useBecause the Home screen shows recent files and locations you've accessed lately. From there, you can decide what's worth keeping and what you can send directly to the Recycle Bin.

If you work with sensitive documents or share a PC, it's advisable to combine manual cleaning with... deactivation of recent items in the interface, as we have seen before, so that no trace remains accessible with a click of what you have recently opened.

It is also very useful to regularly use disk cleaning tools, both those integrated into Windows and reliable third-party utilities, to Remove temporary files, installation caches, and update remnantsAlthough they are not strictly part of the browser's "history", they do contribute to making the system lighter, faster, and less intrusive.

In any case, the important thing is that you are the one who decides. what is preserved and what is erasedinstead of letting Windows store everything indefinitely without control.

Clear Activity History in Windows 11

Activity History is a Windows 11 feature designed to give you a A more integrated experience across applications, files, and browsingThe system saves information about the apps you use, the documents you open, and the websites you visit using Microsoft Edge, so it can suggest where you left off, show you a timeline of recent activities, or sync that information across devices with your Microsoft account.

By default, most of that information is stored locally on your deviceOnly if you activate synchronization with your Microsoft account will some data be associated with your online profile so that you can retrieve it on other computers or even on mobile devices where you use the same account.

If you're not convinced by the idea of ​​Windows keeping a detailed record of everything you do, you can delete that activity history and limit its functionality in a fairly direct way from the System Settings.

To clear Activity History in Windows 11, do the following:

  • Press the key combination Win + I to open the Settings app (or find it in the Start menu).
  • In the left panel, go to "Privacy and security".
  • Within the "Windows Permissions" section, locate and select "Activity History".
  • On that page you'll see a button that says "Clear activity history".
  • Click that button to delete the activity data stored on your device.

From that point on, your device will stop displaying the previous activities that I had recordedIf you also want Windows to stop proactively collecting this information or stop linking it to your Microsoft account, you can review the checkboxes and options in the same section to disable synchronization and limit what is saved.

If you ever become curious about exactly how this feature works, you can delve deeper into the official explanation of what Activity History is and what it collects, but for practical purposes, simply pressing the delete button and adjusting a couple of switches will do the trick. a much more private environment.

Clear history in Internet Explorer and classic Microsoft Edge

They still survive in many corporate environments or on older equipment Internet Explorer and classic versions of Microsoft EdgeAlthough Windows 11 is heavily focused on the new Chromium-based Edge, you may still encounter one of these browsers and want to clear its history.

Internet Explorer, from versions 7 to 9 in Windows Vista up to version 10, shares a similar way of delete browsing historyA very handy key combination, which also works in other modern browsers, is Ctrl + Shift + Delete (or Ctrl + Shift + Delete, depending on your keyboard).

If you are using Internet Explorer and you press Ctrl + Shift + DelA dialog box will open, allowing you to specify which data you want to delete and which you prefer to keep. In this window, you can check boxes for history, temporary files, cookies, form data, passwords, and other items.

Once you have selected the categories you want to delete, simply click the "Delete" button to delete the selected browser dataThis way you clear both the traces of visited pages and other traces related to your browsing.

In Internet Explorer 10, in addition to the keyboard shortcut, you can follow these steps from the interface itself:

  • Open Internet Explorer on your computer.
  • Click on the Tools button (the icon that looks like a gear).
  • Go to the "Security" menu and select "Delete browsing history".
  • Check the boxes for the information you want to delete.
  • Press "Delete" to confirm and perform the deletion.
  Organize photos by album in the Windows 11 Photos app

In the case of Old Microsoft Edge (pre-Edge Chromium)You can also clear your browsing history from the browser's "hub." The steps are simple:

  • Tap or click on the hub icon (usually a sort of star with lines or a menu icon).
  • Select the "History" section within that hub.
  • Click on "Clear all history".
  • Choose which types of data and files you want to delete from your computer: history, cookies, cache, etc.
  • When you're sure, press the "Delete" button to complete the process.

By doing so, Edge removes the list of visited websites along with other elements associated with navigation, helping you maintain some discretion on shared or public computers where this browser is still used.

Clear your browsing history in Firefox, Chrome, and other modern browsers.

Firefox and Chrome, two of the most popular browsers on Windows 11, share the same with Internet Explorer keyboard shortcut to clear historyIn addition, both offer several time options to decide whether to delete only the most recent data or everything accumulated from the beginning.

En Mozilla FirefoxIf you want to delete the history, you can directly use the combination Ctrl + Shift + DelThis key opens the history clearing window, where you will see a list of what you can delete (history, cookies, cache, login data, etc.).

Clicking the "Details" arrow will give you a more detailed list so you can select the exact items you want to remove. Additionally, Firefox lets you choose the time interval to clean: the last hour, the last 2 hours, the last 4 hours, the last full day or the entire history.

Once you have selected both the time range and the categories of data to delete, simply press the "Delete Now" button for Firefox to do so. clear the data you indicatedIt's a quick and convenient way to do a quick clean after a browsing session.

In the case of Google ChromeYou will also use the key combination Ctrl+Shift+Delete While your browser is open. Tapping it will display Google's "Clear browsing data" dialog box.

There you can check the boxes for the types of data you want to delete: browsing history, cookies, other site data, cached images and files, saved passwords, autofill data, and more. Very important: at the top you have a drop-down menu for choose the period to delete, whether it's the last hour, the last day, the last week, the last month, or the entire available history.

Once you have configured the options to your liking, tapping on "Clear data" or "Clear browsing data" will take care of it. delete all that information from your current Chrome profileso that no one can see where you've been browsing during that time interval.

This same system of shortcuts and dialogs is very similar in other Chromium-based browsers (such as the new modern Edge), so in many cases it will be enough to remember the Ctrl + Shift + Delete combination to get to the data cleanup box.

Which equipment and products are affected by these histories?

Browsing, activity, and recent file histories depend less on the device model than on the operating system and the software you useEven so, many manufacturers list a long range of products in their support articles to make it clear which ranges the instructions apply to.

In the case of Windows 11 and its recent variants, everything we've seen affects a huge variety of devices: desktop towers, All-in-One PCs, laptops, workstations, tablets, miniPCs and gaming PCsBrands like Dell, for example, include in their support notes families such as Alienware, XPS, Inspiron, Vostro, OptiPlex, Latitude, G Series, Dell Pro ranges in their multiple versions (Plus, Max, Premium, Rugged, etc.), as well as fixed and mobile workstations and XPS or Latitude tablets.

In short, if you're using Windows 10 or 11 with browsers like Edge, Chrome or FirefoxYou can almost certainly use these methods to manage your browsing history. The important thing isn't the PC model, but the specific operating system and browser you're using.

Consciously managing your Windows 11 Explorer history, recent files, activity history, and browser data allows you to move more easily between work, leisure, and personal life; with a few adjustments and regular cleanups, you'll have a more private, lighter system without so much "memory" of everything you do.