Skip to content
Follow
Browsers 🟡 Intermediate

How to Enable or Disable ‘Add Profile’ in Microsoft Edge

Richard
Written by
Richard
Apr 23, 2024 Updated Aug 15, 2026 4 min read
Microsoft Edge add profile
Microsoft Edge add profile

The “Add Profile” button in Microsoft Edge lets people create new browser accounts on your PC to keep bookmarks and passwords separate. Turning off this feature stops guests, kids, or coworkers from adding extra profiles and cluttering your shared computer.

Locking down version 120 and newer of Microsoft Edge takes just a few moments using the Windows Registry Editor, which is the built-in system tool for changing advanced settings. Blocking this option keeps your browsing data private and stops unwanted browser changes on school labs, public kiosks, or shared family PCs.

⚡ Quick Answer

You can enable or disable the ‘Add Profile’ option in Microsoft Edge by modifying the BrowserAddProfileEnabled registry value. Navigate to 🗝️HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge, create or modify BrowserAddProfileEnabled, and set it to 0 to disable or delete it to enable.

Before You Get Started

Microsoft Edge add profile changes require a few basic checks before you start tweaking your system settings. You must have Microsoft Edge installed on a Windows computer running Windows 10 or Windows 11. You also need administrator rights on your PC to make these changes stick, so make sure you are signed in with an admin account.

  • Microsoft Edge must be installed on your Windows computer.
  • You need administrator rights on your PC to make these changes. (Admin Rights Required)
  • These steps work on all editions of Windows 11 and Windows 10, including Windows Home.
⚠️Warning
You will be making changes to your computer system registry. Follow the steps carefully, because modifying the wrong registry keys can cause system instability.

Method 1Use the Registry Editor to Hide the Add Profile Button

Microsoft Edge add profile controls can be set up using the Windows Registry Editor to hide the profile creation button from users. The Windows Registry stores core system and app settings, and adding a specific instruction here forces the browser to remove the option entirely, which is great for keeping shared computers tidy.

Open the Run command box by pressing the Windows Key + R on your keyboard simultaneously. A small box appears in the bottom-left corner of the screen. Tip: You can also right-click the Windows Start button and select “Run” from the menu that appears.

Launch the Registry Editor. Type regedit into the search field inside the Run box and press Enter on your keyboard. Windows will likely ask if you want to allow the app to make changes to your device. Click "Yes" to proceed.

Navigate to the Edge policy folder. Look at the left-hand sidebar of the Registry Editor window. Click the small arrows next to the folders to expand them in this exact order: HKEY_LOCAL_MACHINE, then SOFTWARE, then Policies, then Microsoft, and finally click on Edge. Note: If you do not see a folder named Edge inside the Microsoft folder, you will need to create one. Right-click the Microsoft folder, hover over "New," select "Key," and type Edge as the name.

Create the profile control setting. Right-click any empty space in the main white pane on the right side of the screen while you have the Edge folder selected. Hover your mouse over "New" and click on "DWORD (32-bit) Value."

⚠️Warning
Name your new value. Type BrowserAddProfileEnabled as the name for the new item and press Enter. Make sure you spell it exactly like that, paying close attention to the capital letters.

Disable the profile creation feature. Double-click your newly created BrowserAddProfileEnabled item. A small window will pop up asking for a value data number. Type 0 into that box and click the "OK" button. Tip: Setting this value to 0 turns the feature off completely. If you ever want to turn it back on later, come back to this exact spot and change that number to 1 instead.

Restart your browser. Close out of the Registry Editor window completely. Shut down Microsoft Edge and open it back up. You can also restart your entire computer to ensure the new rule takes effect immediately.

Method 2Use PowerShell for Quick Configuration

Microsoft Edge add profile rules can also be applied quickly using PowerShell if you prefer typing commands instead of clicking through menus. This command-line method lets you manage browser settings in seconds, making it a handy choice if you need to update multiple computers at once.

Open PowerShell with administrator rights. (Admin Rights Required) Click the Windows Start button, type PowerShell into the search bar, right-click "Windows PowerShell" in the search results, and choose "Run as administrator." Click "Yes" on the security prompt.

Disable the profile button with a command. Copy and paste the following command into your PowerShell window, then press Enter:

💻Code
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge" -Force
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge" -Name "BrowserAddProfileEnabled" -PropertyType DWord -Value 0 -Force

Explanation: The first command makes sure the Edge policy folder exists on your system, and the second command creates the disabling rule and sets its value to zero.

Verify the change worked. You should see a status readout in PowerShell confirming the property was created successfully. Close the PowerShell window when you finish.

Re-enable the feature if needed later. If you change your mind down the road and want to let people add profiles again, open PowerShell as an administrator and run this command instead: Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge" -Name "BrowserAddProfileEnabled" -Value 1

Summary

Microsoft Edge add profile restrictions help you keep your browser locked down and stop unwanted profile clutter on shared computers. This guide walked you through two simple ways to get the job done by using either the Windows Registry Editor or a quick command in PowerShell with administrator privileges.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Repair Microsoft Edge in Windows 11
Windows How to Repair Microsoft Edge in Windows 11
How to Enable or Disable Browse with Copilot in Microsoft Edge on Windows 11
Browsers How to Enable or Disable Browse with Copilot in Microsoft Edge on Windows 11
How to Enable or Disable Microsoft Edge Sign-In
Browsers How to Enable or Disable Microsoft Edge Sign-In
How to Back Up and Restore Windows 11 Registry
Windows How to Back Up and Restore Windows 11 Registry

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *