/
/

How to Enable or Disable Double-Click Close Tabs in Edge

by Mauro Mendoza, IT Technical Writer
How to Enable or Disable Double-Click to Close Tabs 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.

Key Points

  • Configure the double-click to close tabs feature to either enable a faster workflow or prevent disruptive accidental tab closures.
  • Individual users can toggle this setting directly in Edge’s Settings under Appearance, provided the option is available in their region.
  • IT administrators can enforce a standard across all company devices using the Group Policy “Double Click feature in Microsoft Edge enabled”.
  • For scripting and automation, deploy the settings via PowerShell or tools like NinjaOne by modifying the DoubleClickCloseTabEnabled registry value.
  • Always verify the configuration by testing the double-click gesture and checking the edge://policy page to confirm enforcement.
  • Note that the administrative policy for this feature is officially documented as being only available in China for Microsoft Edge version 104 or later.

Microsoft Edge’s double-click to close tabs feature offers convenience but can lead to accidental data loss during busy work sessions or in shared environments.

This guide outlines methods for both individual users and IT administrators to reliably enable or disable this gesture across Windows 11 systems, ensuring browser behavior matches your productivity and policy needs.

Methods for managing the “Double-Click to Close Tabs” feature in Microsoft Edge

Configuring how you close tabs in Microsoft Edge helps tailor the browser to your personal workflow or your organization’s IT policy.

📌Use case: Adjust this setting to prevent accidental tab loss during multitasking, to standardize behavior across teams for easier support, to accommodate specific accessibility needs, or to lock down browser customization in controlled environments like kiosks.

📌Prerequisites: Ensure you are using a Windows 11 device with a supported version of Microsoft Edge (v104+). To change settings via Registry or Group Policy, you will need administrative rights. Remember to fully restart Edge after applying any changes for them to take effect.

Method 1: Use Microsoft Edge Settings (If available)

For individual users, the built-in browser settings offer the simplest way to manage this feature.

📌Use case: This is the ideal method for configuring your own browser or assisting a single user, as it requires no administrative system rights. It’s perfect for quickly enabling a faster tab close tab shortcut or preventing accidental loss if you find the gesture disruptive.

Step-by-step procedure:

  1. Open Microsoft Edge.
  2. Click the Settings and more (···) menu or press Alt+F.
  3. Select Settings > Appearance.
  4. Under Customize browser, find “Use double-click to close browser tabs”.
  5. Toggle the switch On or Off.
  6. Restart Edge for the change to fully apply.

This toggle changes a setting in your local Edge profile. If the option is unavailable, it may be due to a regional or version-specific rollout of the feature, requiring an alternative method. Once set and the browser is restarted, double-clicking on a tab will either close it or do nothing, based on your selection.

Method 2: Use Group Policy to enforce behavior

Group Policy lets IT administrators uniformly enforce this setting across all enterprise devices.

📌Use case: Use this to mandate or prohibit the feature for all users on a domain or local Windows 11 PC, ensuring standardized browser behavior.

Step-by-step procedure:

  1. Open gpedit.msc in the Run dialog box (Win+R).
  2. Navigate to Computer Configuration > Administrative Templates > Microsoft Edge.
  3. Find and configure the “Double Click feature in Microsoft Edge enabled” policy.
  4. Run gpupdate /force and restart Edge.

This policy overrides and locks the user setting. Note: Official docs state this policy is only available in China for Edge v104+. The setting is enforced for all users and cannot be changed in Edge’s own settings, guaranteeing compliance.

Method 3: Configure via Registry Editor

For precise system-level control when Group Policy isn’t an option, the Windows Registry offers a direct configuration method.

📌Use case: This approach is ideal for IT technicians who need to script the setting, apply it to individual Windows 11 machines without a domain, or enforce it when the user interface option is unavailable in their region.

⚠️Warning: Misconfiguration of the Windows Registry can cause system instability. Read this guide on how to back up your registry.

Step-by-step procedure:

  1. Press Win + R, type regedit, and press Enter.
  2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge.
    • If the Edge key doesn’t exist:
      • Right-click Microsoft
      • Select New > Key
      • Name it Edge.
  3. Right-click in the right pane, select New > DWORD (32-bit) Value, and name it DoubleClickCloseTabEnabled.
  4. Double-click the new value and set its data to 1 to enable or 0 to disable the feature.
  5. Close Registry Editor and restart Microsoft Edge.

After the registry edit and a browser restart, the double-click behavior will be set as configured. The toggle in Edge’s Settings will become inactive, showing it’s managed by your system administrator.

Method 4: Apply PowerShell for automation

PowerShell scripts enable bulk configuration of this feature across a Windows 11 enterprise.

📌Use case: Deploy the setting automatically during device provisioning or via management tools like Intune for consistent policy application.

Step-by-step procedure:

  1. Open PowerShell as Administrator.
  2. Run the command corresponding to your goal:
  3. To Enable:

Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge" -Name "DoubleClickCloseTabEnabled" -Value 1

  1. To Disable:

Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge" -Name "DoubleClickCloseTabEnabled" -Value 0

  1. Force-close and restart Edge to apply:

Stop-Process -Name msedge -Force; Start-Process msedge

This method programs the Registry. Official policy availability is limited to China for Edge v104+. The feature is set enterprise-wide. The Edge settings toggle becomes inactive, showing successful administrative control.

Verification: Confirm behavior in Microsoft Edge

Always test after configuration to ensure the double-click to close tabs feature behaves as intended in Microsoft Edge.

📌Use case: Test immediately after applying any configuration change, when troubleshooting unexpected behavior, or as part of a standard IT compliance check to ensure policies are active.

Validation procedures:

  1. Direct Test.
    • Open multiple tabs and double-click on one.
      • It should close if enabled, or do nothing if disabled.
  2. Check Edge Settings.
    • Navigate to Settings > Appearance.
      • The “Use double-click to close browser tabs” toggle will show On/Off.
      • If grayed out, a policy is managing it.
  3. For IT Admins.
    • Type edge://policy into the address bar and press Enter to see all enforced policies, including DoubleClickCloseTabEnabled.

If the feature doesn’t apply, verify the Edge version and check for registry errors. Remember, the administrative policy is officially only available in China for Edge v104+. Successful verification means the tab responds correctly to your double-click, confirming your setup is complete.

Key considerations for configuring the “Double-Click to Close Tabs” Edge feature

Understanding these technical nuances ensures the successful management of the tab closing feature across different environments.

Version and policy availability

The settings toggle may not appear in all Edge versions. The administrative policy (DoubleClickCloseTabEnabled) is officially only available in China for Edge v104+.

Policy hierarchy

A Group Policy setting always overrides local registry edits or user interface toggles. Administrative controls take final precedence.

Interface compatibility

The double-click gesture is designed for the horizontal tab strip. Behavior may be inconsistent with vertical tabs or touch navigation.

Special browser modes

In locked-down modes like kiosk or public browsing, broader system policies may disable this and other user interface customizations entirely.

Policy application timing

Enterprise policies require a policy refresh (gpupdate /force) and a restart of Microsoft Edge to take effect. Changes are not instant.

Troubleshooting common issues

If your configuration isn’t working as expected, these steps will help you diagnose and resolve the most common problems.

The setting is missing in the Edge interface

If the toggle is not in Settings > Appearance, update Microsoft Edge to the latest version. For administrators, also ensure the latest Edge ADMX templates are installed in your Group Policy Central Store.

The registry or local setting is ignored

A configured Group Policy always takes precedence over local settings. Check edge://policy to see if an administrative policy is actively enforced, which would gray out the user toggle.

Tabs close unexpectedly

If tabs close with a double-click when the feature is disabled, check for third-party mouse utilities or browser extensions that might be remapping mouse gestures to the Ctrl+W close tab shortcut.

Group policy option unavailable in your region

The policy is officially only available in China. If the UI toggle is absent and you are outside this region, you cannot enable it natively. Alternative mouse gestures or keyboard shortcuts are recommended.

Inconsistent behavior across profiles

For inconsistent behavior on the same device, test with a new Edge profile. Corrupted profile data or synced settings from a personal Microsoft account can sometimes interfere with local policy application.

Maximize wide configuration with NinjaOne

Tools like NinjaOne let IT teams automate browser policy enforcement across all managed Windows devices. This RMM distributes PowerShell scripts that set the DoubleClickCloseTabEnabled registry value, identical to Method 4. This can be automated during device setup or via scheduled policies.

Key Capabilities:

  • Push registry configurations via script deployment.
  • Validate policy compliance across your entire device fleet.
  • Target specific device groups for flexible management.

This automates the manual setup into a scalable policy. Remember: The administrative policy is only available in China for Edge v104+. Verify regional availability before deployment.

Controlling the “Double-Click to Close Tabs” feature for optimal workflow

Maximizing the double-click to close tabs setting in Microsoft Edge allows you to perfectly balance speed and stability, whether you’re an individual user aiming to prevent frustration or an IT team enforcing standardized browser policies.

As covered, you can achieve this through simple UI toggles, definitive Group Policy enforcement, direct registry edits, or automated scripts for enterprise-scale deployment.

Ultimately, applying the right method from this guide ensures your browser environment supports productivity, minimizes errors, and maintains the consistency required in modern work.

Related topics:

FAQs

Before making any changes, open the Registry Editor (regedit), click “File” in the top menu, and select “Export.” Choose “All” for the export range, save the .reg file to a safe location, and you can double-click it later to restore the registry if needed.

Since the official Group Policy is region-restricted, the most reliable enterprise method is to use a PowerShell script (Method 4) or an RMM tool like NinjaOne to deploy the registry configuration (DoubleClickCloseTabEnabled value) across all managed Windows devices.

No, these are independent actions. Enabling or disabling the double-click to close tab gesture has no impact on the middle-click (mouse wheel) function, which will continue to close a tab when clicked, offering an alternative fast-close method.

No, this specific configuration is treated as a local device or policy-based setting. It will not sync through your Microsoft account profile. You must configure it on each device individually or via centralized management tools.

The most common reasons, aside from regional restrictions, are having Edge Workspaces enabled (a known compatibility issue on macOS) or using vertical tab mode, as the gesture is primarily designed for the standard horizontal tab strip.

You might also like

Ready to simplify the hardest parts of IT?