How to Disable Touchscreen on Windows (And When You Actually Should)

Windows touchscreen support is built deep into the operating system — it's not a surface-level setting you toggle in Display preferences. Disabling it requires going through Device Manager, and the process is straightforward once you know where to look. But whether disabling it makes sense for your setup depends on more than just knowing the steps.

Why You Might Want to Disable Your Touchscreen

There are legitimate, practical reasons people turn this off:

  • Accidental input — On 2-in-1 laptops used in laptop mode, palms and fingers brush the screen constantly, causing misclicks and cursor jumps.
  • Screen smudging — Some users simply prefer keeping the display clean and find touch input an annoyance rather than a feature.
  • Driver conflicts — Touchscreen drivers occasionally interfere with stylus input, display calibration, or other pointer devices.
  • Performance or battery concerns — While the impact is minor, disabling unused hardware can marginally reduce background processing on older or lower-spec devices.
  • Child or kiosk setups — Restricting touch input can be useful in managed environments where mouse/keyboard control is preferred.

None of these are edge cases. They're common enough that Microsoft has made the disable option accessible — though not obvious.

How to Disable Touchscreen via Device Manager 🖱️

This method works on Windows 10 and Windows 11.

  1. Right-click the Start button and select Device Manager
  2. Scroll down and expand the Human Interface Devices (HID) category
  3. Look for an entry labeled HID-compliant touch screen — there may be more than one if your device has a multi-touch digitizer with multiple listed components
  4. Right-click it and select Disable device
  5. Confirm when prompted

Touch input should stop responding immediately. No restart required in most cases.

To re-enable, follow the same path and choose Enable device.

What If You See Multiple HID Entries?

On some devices — particularly Surface Pro models, certain Lenovo ThinkPads, and Dell XPS touchscreen variants — you'll see two or more HID-compliant touch screen entries. Disabling one may only partially disable touch input. You may need to disable all matching entries to fully stop touch response.

If you're unsure which entry controls touch (versus stylus or fingerprint), disable one at a time and test the screen after each.

Alternative Method: Using PowerShell

For users comfortable with the command line, this can be done faster via PowerShell (Admin):

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

This command finds any device with "touch screen" in its name and disables it. It's useful for scripting or remote administration — but requires elevated privileges and some care if you're running it on an unfamiliar machine.

To reverse it:

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

Does Disabling the Touchscreen Affect Anything Else? ⚠️

On most standard touchscreen laptops, disabling touch input has no effect on:

  • The display itself
  • Stylus or pen input (controlled by a separate digitizer driver in most devices)
  • Keyboard and trackpad functionality
  • Screen brightness or rotation

However, on some devices — particularly older convertibles or budget Windows tablets — touch and stylus input share a driver. Disabling the HID touch screen entry in those cases can also disable pen support. If stylus functionality matters to you, test this carefully before committing.

Key Variables That Change the Outcome

FactorWhy It Matters
Device typeTablets depend on touch more than laptops; disabling may be more disruptive
Windows versionSteps are identical on Win 10/11, but driver labels can differ slightly
Number of HID entriesMore entries = more components to disable for full effect
Stylus useShared drivers on some devices mean touch and pen are linked
Administrator accessDevice Manager changes require admin rights
OEM customizationSome manufacturers add their own touch control software that overrides Windows settings

Does the Change Survive a Restart?

Usually, yes — but not always. Some devices with aggressive driver auto-reinstall settings or OEM management software will re-enable the touch device on reboot. If you find touch input coming back after restart, the fix is to also disable automatic driver updates for that specific device in Device Manager (right-click → Properties → Driver tab → options vary by Windows version).

In enterprise or managed environments, Group Policy can enforce the disabled state more reliably than manual Device Manager changes.

The Part That Depends on Your Setup

The steps above work consistently across most Windows 10 and 11 devices. But whether fully disabling touch is the right call — versus temporarily toggling it, using a third-party lock utility, or adjusting touch sensitivity — comes down to how you actually use the device.

A Surface Pro running in tablet mode has a very different calculus than a touchscreen gaming laptop where the screen is rarely touched. A shared family device needs different handling than a solo workstation. And if stylus input is part of your workflow, the driver relationship on your specific hardware matters more than any general guide can account for.

The mechanics are simple. What fits your situation is the piece only you can evaluate.