How to disable Drag Tray (Drop Tray) sharing UI on Windows 11

If you don't like the Drop Tray UI on Windows 11, you can use these steps to disable it.

Windows 11 disable Drop Tray / Image: Mauro Huculak
Windows 11 disable Drop Tray / Image: Mauro Huculak
  • To disable the Drop Tray (formerly Drag Tray) feature on Windows 11, open Settings > System > Multitasking, and turn off the feature.
  • On devices without the latest update, open Settings > System > Nearby sharing, and turn off the feature.
  • Alternatively, you can edit the Registry because there is no option in the Settings app.
  • Create a new key at HKLM\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085 and set EnabledState to 1 and EnabledStateOptions to 0, and then restart your computer to apply the change.
  • On newer versions of Windows 11, the Drag Tray feature has been renamed to Drop Tray.

On Windows 11, you can disable the “Drop Tray” (formerly Drag Tray) feature through the Settings app or by modifying the Registry, and in this guide, I’ll explain how to complete this process.

The Drop Tray (or Drag Tray) is a feature that makes it easier to share files with other people, apps, and devices. The flayout appears at the top of the screen when dragging a supported file to the top edge.

Although you can share one or multiple files, it’s not possible to send a folder or a container, such as “.zip” files. Also, the app suggestions depend on the applications installed on your computer.

In this guide, I’ll outline the steps to disable the Drop Tray on Windows 11. The new name and location of the settings became available with the May 2026 Security Update and higher releases.

Warning: Before proceeding, it’s crucial to acknowledge the risks associated with modifying the Windows Registry. Incorrect changes can lead to system instability or operational issues. Therefore, ensure you have a full system backup before making any changes. Proceed with caution and understanding.

Disable the Drop Tray feature on Windows 11 (new)

To disable the Drop Tray flyout at the top of the screen on Windows 11, follow these steps:

  1. Open Settings on Windows 11.

  2. Click on System.

  3. Click the Multitasking page.

  4. Turn off the Drop Tray toggle switch.

    Disable Drop Tray

Once you complete the steps, the Drop Tray will be disabled, and dragging a file will no longer open the flyout at the top of the screen on Windows 11.

Get the Pureinfotech newsletter

Expert Windows guides, practical tips, and the latest updates that make your PC easier to use, delivered to your inbox

Disable the Drag Tray feature on Windows 11 (old)

To disable the Drag Tray flyout at the top of the screen, follow these steps:

  1. Open Settings.

  2. Click on System.

  3. Click the Nearby sharing page.

  4. Turn off the Drag Tray toggle switch.

    Windows 11 Settings disable Drag Tray

After you complete the steps, dragging a file will no longer open the flyout at the top of the screen on Windows 11.

The option in the Settings app to disable this feature is available starting with the December 2025 Security Update for Windows 11

Disable the Drag Tray feature from Registry

You should be able to use the Registry settings to disable the feature, regardless of the settings’ name or location.

To disable the Windows Share Drag Tray UI on Windows 11, follow these steps:

  1. Open Start.

  2. Search for regedit and click the top result to open the Registry.

  3. Navigate to the following path:

    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides
  4. Right-click the Overrides key, select the New menu, and select the Key option.

    Registry create 14 key

  5. Confirm 14 as the name of the key and press Enter.

  6. Right-click the newly created key, select the New menu, and select the Key option.

    Registry create 3895955085 key

  7. Name the key 3895955085 and press Enter.

  8. Right-click the newly created key, select the New menu, and select the “DWORD (32-bit) Value” option.

    Registry create EnabledState DWORD

  9. Confirm the EnabledState name for the entry and press Enter.

  10. Right-click the newly created key, select the New menu, and select the “DWORD (32-bit) Value” option.

  11. Confirm the EnabledStateOptions name for the entry and press Enter.

  12. Double-click the EnabledState entry and change the value from 0 to 1.

    Registry disable Drag Tray

  13. Click the OK button.

  14. Double-click the EnabledStateOptions entry and ensure the value is 0.

  15. Click the OK button.

  16. Restart the computer.

Once you complete the steps, the Drag Tray part of the Windows Share experience will no longer be available on Windows 11.

To undo the changes, follow the same instructions outlined above. However, in step 5, right-click the “14” key and select “Delete”.

Disable the Drag Tray using commands

Alternatively, you can run this command using Command Prompt (admin) to add the Registry changes to disable the Drag Tray:

reg add "HKLM\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" /v EnabledState /t REG_DWORD /d 1 /f & reg add "HKLM\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" /v EnabledStateOptions /t REG_DWORD /d 0 /f

You can also use this Command Prompt command to remove this configuration: 

reg delete "HKLM\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" /f

If you prefer using PowerShell (admin), you can run this command:

New-Item -Path "HKLM:\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" -Force; New-ItemProperty -Path "HKLM:\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" -Name "EnabledState" -Value 1 -PropertyType DWord -Force; New-ItemProperty -Path "HKLM:\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" -Name "EnabledStateOptions" -Value 0 -PropertyType DWord -Force

You can also use this PowerShell command to remove this configuration:

Remove-Item -Path "HKLM:\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085" -Recurse -Force

At the time of writing, this feature is available through the Windows Insider Program in the Beta and Dev Channels.

Update May 20, 2026: This guide has been updated to ensure accuracy and reflect changes to the process.

Thank you for your feedback!
About the author

Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech in 2010. With over 22 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS.

Certifications: Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+.

Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central.

You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at [email protected].