How to Disable Touch Screen on Windows 10 and 11

Touch screens on Windows laptops can sometimes be more of a nuisance than a helpful feature. Whether you’re dealing with erratic inputs, want to conserve battery life, or simply prefer using a mouse and keyboard, disabling the touch screen functionality is a straightforward process. This guide covers multiple methods to turn off touch input on Windows 10 and 11 devices.

Using Device Manager

The Device Manager provides the quickest way to disable your laptop’s touch screen:

Step 1: Right-click the Start button and select “Device Manager” from the menu.

Step 2: Expand the “Human Interface Devices” category.

Step 3: Look for an entry labeled “HID-compliant touch screen” or something similar.

Step 4: Right-click on the touch screen device and select “Disable device.”

Step 5: Confirm the action when prompted.

This method is reversible - you can re-enable the touch screen at any time by following the same steps and selecting “Enable device” instead.


Using PowerShell

For those comfortable with command-line interfaces, PowerShell offers a quick way to disable the touch screen:

Step 1: Search for “PowerShell” in the Start menu.

Step 2: Right-click on “Windows PowerShell” and select “Run as administrator.”

Step 3: Copy and paste the following command:

Get-PnpDevice | Where-Object {$_.FriendlyName -like "*touch screen*"} | Disable-PnpDevice -Confirm:$false

Step 4: Press Enter to execute the command.

This command identifies all touch screen devices and disables them without requiring confirmation. To re-enable the touch screen later, use this command:

Get-PnpDevice | Where-Object {$_.FriendlyName -like "*touch screen*"} | Enable-PnpDevice -Confirm:$false

Using Registry Editor

For a more permanent solution, especially if other methods don’t persist after reboots, you can modify the Windows Registry:

Step 1: Press Win + R, type “regedit”, and press Enter to open the Registry Editor.

Step 2: Navigate to the following key:

HKEY_CURRENT_USER\Software\Microsoft\Wisp\Touch

Step 3: Look for a DWORD value named “TouchGate” on the right side.

Step 4: Double-click “TouchGate” and set its value to 0 to disable the touch screen.

Step 5: Click OK and restart your computer for the changes to take effect.

To re-enable touch input later, change the “TouchGate” value back to 1.

Caution: Modifying the registry can cause system instability if done incorrectly. It’s recommended to create a backup of your registry before making changes.


Using Group Policy (Windows 10/11 Pro and Enterprise)

If you’re using Windows 10 or 11 Pro or Enterprise, you can use Group Policy to disable the touch screen:

Step 1: Press Win + R, type “gpedit.msc”, and press Enter to open the Group Policy Editor.

Step 2: Navigate to Computer Configuration > Administrative Templates > Windows Components > Tablet PC > Hardware.

Step 3: Double-click on “Turn off the Hardware Touch Screen.”

Step 4: Select “Enabled” and click Apply, then OK.

Step 5: Restart your computer for the changes to take effect.

This method provides a centralized way to manage touch screen settings, especially useful in enterprise environments.


After disabling your touch screen, you may notice improved battery life and reduced accidental inputs. Remember that these methods can be reversed if you decide to use touch functionality again in the future. If you encounter any issues or the touch screen re-enables itself after updates, try the registry method for a more permanent solution.