/
/

How to Show or Hide the Mini Menu on Text Selection for Chosen Sites in Microsoft Edge

by Stela Panesa, Technical Writer
How to Show or Hide the Mini Menu on Text Selection for Chosen Sites in Microsoft Edge blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

In 2021, Microsoft Edge introduced a handy mini menu that pops up each time a user selects or highlights a line of text. It includes quick shortcuts to functions like search, translate, and share.

Although the feature is supposed to increase productivity, it sometimes does more harm than good in environments like intranet sites and web-based applications.

These sites have carefully designed interfaces and workflows where even the smallest disruptions can impact user experience.

An unexpected menu, like the mini menu can distract users and prevent them from doing critical tasks. That said, Microsoft Edge allows administrators to control where the mini menu appears and where it doesn’t.

In this guide, we’ll show you how to control the Microsoft Edge mini menu by managing its “disabled sites” list.

How to enable or disable the Microsoft Edge mini menu on selected sites

If you want to enable or disable the Microsoft Edge mini menu on specific sites, you must include those in the “Disabled sites” list.

📌 Prerequisites:

  • Your Microsoft Edge should be on version 84 or newer.
  • Your computer should run on Windows 11 or have the right policies applied.
  • You have administrator rights to make registry and GPO changes.
  • Familiarity with Edge’s policy settings, editing the registry, or using simple scripts is recommended.

📌 Recommended deployment strategies:

Click to Choose a Method 💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Using Edge Settings
Method 2: Using PowerShell
Method 3: Using Group Policy Preferences

Method 1: Using Edge Settings

📌 Use Case: This method configures the mini menu settings on a per-user basis. It’s ideal for making quick changes on personal devices.

  1. Go to the site where you want to disable the Mini Menu.
  2. Select some text on the page.
  3. In the Mini Menu, click the three dots (ᐧᐧᐧ).
  4. Choose “Hide menu” > “Hide menu for this site” to disable the mini menu for the site or “Hide menu always” to disable it on all sites.

Method 2: Using PowerShell

📌 Use Case: This method uses PowerShell scripting to deploy and manage Edge settings across multiple devices. It’s perfect for enforcing policies on managed environments.

Run the commands below to configure the “Disabled sites” list:

$path = "HKCU:\Software\Policies\Microsoft\Edge\MiniMenuDisabledSites"

New-Item -Path $path -Force | Out-Null

Set-ItemProperty -Path $path -Name "SitesList" -Value @("https://intranet.local", "https://app.corporate.com")

Restart Edge after executing the command to enforce the new policy.

Method 3: Using Group Policy Preferences

📌 Use Case: This method can be configured to apply the new setting per user or across all users, depending on the Group Policy setup.

⚠️Important: This method is only for computers joined to a domain and must be performed by a domain administrator.

  1. Open Group Policy Management Console (GPMC).
  2. Navigate to User Configuration > Preferences > Windows Settings > Registry.
  3. Right-click and select New > Registry Item.
  4. Configure:
    1. Action: Update
    2. Hive: HKEY_CURRENT_USER (or HKEY_LOCAL_MACHINE for all users).
    3. Key Path: Software\Policies\Microsoft\Edge\MiniMenuDisabledSites
    4. Value Name: SitesList
    5. Value Type: REG_MULTI_SZ
    6. Value Data: Each URL on a new line.
  5. Click OK, link the GPO to the target OU, and run gpupdate /force on clients.
  6. Restart Edge to apply the changes.

Additional notes on modifying Microsoft Edge’s mini menu

Here are some additional notes you should remember when modifying Microsoft Edge’s mini menu:

  • You need to restart your browser so the policy changes take effect.
  • The HKLM policy path affects all users, while the HKCU path only affects the current users.
  • Make sure your URLs are correctly formatted, including protocol and domain.
  • For the settings to work, your Microsoft Edge version must support policy-based configurations; versions earlier than 84 may not support this capability.

⚠️ Things to look out for

Keep these pitfalls in mind when following our guide.

Risks Potential consequences Reversal
Registry misconfigurations Adding the wrong keys to the Registry can lead to system instability or unintended behavior. Restore the latest backup of the registry before making any changes.
Incorrect URLs in the SitesList The mini menu will remain enabled on the specified sites. Check your URLs in the registry or script before applying them.
Incorrect policy path The setting may only apply to the current user instead of all users or vice versa. Check if your script is using the right policy path before execution.
Overriding behavior Enterprise policies may override manual configurations made in Edge’s settings. Review your existing Group Policies for any conflicting entries that may override your changes.

Avoid disruptions by learning how to control when and where Edge’s mini menu appears

Controlling when and where Microsoft Edge’s mini menu appears can significantly enhance a user’s browsing experience. Though the menu provides convenient access to useful tools, it doesn’t always work well with specific workflows and interfaces.

The good news is you can configure this setting straight from Edge or use command-line tools like Registry Editor to make precise adjustments to its behavior.

Related topics:

You might also like

Ready to simplify the hardest parts of IT?

NinjaOne Terms & Conditions

By clicking the “I Accept” button below, you indicate your acceptance of the following legal terms as well as our Terms of Use:

  • Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms.
  • Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party.
  • Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library belonging to or under the control of any other software provider.
  • Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations.
  • Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks.
  • Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script.
  • EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).