This tutorial shows you how to turn the guest browsing feature on or off in Microsoft Edge. This works for all users on Windows 10 and Windows 11.
What is Guest Mode?
Guest mode is a temporary, fresh profile. It lets you browse on someone else’s computer without changing their signed-in profile. When you close all guest windows, the browser forgets everything. Your favorites, history, passwords, and saved form information all disappear. Downloaded files stay on the device, but the download history is deleted.
Why Use Guest Mode?
Guest mode lets you browse the web without automatically signing into websites. Microsoft Edge does not tell websites that you are using guest mode. The browser only collects diagnostic data based on the profile that started the guest session. Once you close all guest windows, all browsing information for that session is erased.
What Policies Control Guest Mode?
You can use the BrowserGuestModeEnabled policy to let users choose whether to browse in guest profiles in Microsoft Edge.
You can use the BrowserGuestModeEnforced policy starting with Microsoft Edge 147 to force guest-only browsing.
For more information about Microsoft Edge privacy, visit User data and privacy in Microsoft Edge.
How to Enable or Disable Browse as Guest
🔒 You must be an administrator to change these settings.
- Open Windows Terminal as an administrator.
- Copy and paste one of the command sets below, depending on what you want to do.
- Press Enter to run the command.
Option 1: Let Users Choose to Browse as Guest (Default)
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnabled /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnforced /f
Option 2: Always Browse as Guest for All Users
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnabled /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnforced /t REG_DWORD /d 1 /f
Option 3: Turn Off Browse as Guest for All Users
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnabled /t REG_DWORD /d 0 /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v BrowserGuestModeEnforced /f
Summary
Guest mode in Microsoft Edge is a quick way to browse without affecting someone’s main profile. All your browsing data is erased when you close guest windows. You can use Windows Terminal commands to control whether users can access guest mode, must use it, or cannot use it at all. Remember that you need administrator rights to make these changes.




Leave a Reply