Hi artoo —
yes, mostly. Windows stores File Explorer address-bar typed history in the registry, and you can clear it. You can also reduce/disable the autocomplete drop-down behavior, but Windows may still show some built-in location suggestions depending on build/settings.
Option 1: Clear the current address-bar history
- Close all File Explorer windows.
- Open Command Prompt or Windows Terminal.
- Run:
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths" /f
- Restart File Explorer:
Code:
taskkill /f /im explorer.exe
start explorer.exe
Expected result: previously typed File Explorer address-bar entries should be gone.
Option 2: Disable address-bar AutoSuggest
This may stop or reduce the drop-down suggestions when clicking/typing in the address bar.
- Open Command Prompt as your normal user.
- Run:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete" /v AutoSuggest /t REG_SZ /d no /f
- Restart File Explorer:
Code:
taskkill /f /im explorer.exe
start explorer.exe
Stronger policy-level option
If the per-user setting does not stick, try the policy location. This requires
Administrator Command Prompt:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete" /v AutoSuggest /t REG_SZ /d no /f
Then restart Explorer or sign out and back in.
To undo the change
For the per-user setting:
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete" /v AutoSuggest /f
For the policy-level setting:
reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete" /v AutoSuggest /f
Then restart Explorer again.
Important note
The TypedPaths key clears what you typed before. The AutoSuggest setting attempts to prevent suggestions from appearing again. Windows 11 may still show some normal shell/location suggestions, so this may not make the address bar completely blank in every situation. Before changing registry settings, it is a good idea to create a restore point.