
- To disable the Drag Tray feature on Windows 11, you must edit the Registry, as there is no option in the Settings app.
- Create a new key at
HKLM\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\14\3895955085
and setEnabledState
to1
andEnabledStateOptions
to0
, and then restart your computer to apply the change.
On Windows 11, you can disable the “Drag Tray” feature, but not from the Settings app. Instead, you have to modify the Registry, and in this guide, I’ll explain how to complete this process.
The Drag Tray is a feature that makes it easier to share files with other people, apps, and devices. The Drag Tray appears at the top of the screen when dragging a supported file to the top edge of the screen.
You cannot share a collection of files, a folder, or a container, such as “.zip” files. Also, the suggestions for apps depend on the supported applications installed on your computer.
Although the Settings app doesn’t offer an option to turn off this feature, it’s possible to disable this implementation completely from the operating system by modifying the Registry.
In this guide, I’ll outline the steps to disable the Drag Tray on Windows 11.
Disable the Drag Tray feature on Windows 11
To disable the Windows Share Drag Tray UI on Windows 11, use these steps:
-
Open Start on Windows 11.
-
Search for regedit and click the top result to open the Registry.
-
Navigate to the following path:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides
-
Right-click the Overrides key, select the New menu, and select the Key option.
-
Confirm 14 as the name of the key and press Enter.
-
Right-click the newly created key, select the New menu, and select the Key option.
-
Name the key 3895955085 and press Enter.
-
Right-click the newly created key, select the New menu, and select the “DWORD (32-bit) Value” option.
-
Confirm the EnabledState name for the entry and press Enter.
-
Right-click the newly created key, select the New menu, and select the “DWORD (32-bit) Value” option.
-
Confirm the EnabledStateOptions name for the entry and press Enter.
-
Double-click the EnabledState entry and change the value from 0 to 1.
-
Click the OK button.
-
Double-click the EnabledStateOptions entry and ensure the value is 0.
-
Click the OK button.
-
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.
If you want to undo the changes, you can use the same instructions outlined above. However, on step 5, right-click the “14” key and choose the “Delete” option.
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.