Knowing how to turn off the touch screen on Windows 10 and 11 laptops is useful when you experience ghost touches, accidental screen taps during typing, or simply prefer using a trackpad and keyboard exclusively. The touch screen digitizer can be disabled without affecting any other functionality — your display, stylus (in some cases), and all other input devices continue working normally.

Windows does not include a dedicated touch screen toggle in Settings, so you need to use Device Manager, PowerShell, or the Registry Editor to disable it. All three methods are fully reversible.

⚡ Quick Fix

Open Device Manager (Windows + X > Device Manager), expand Human Interface Devices, right-click HID-compliant touch screen, and select Disable device. The touch screen turns off immediately — no restart needed.

Method 1: Disable Touch Screen via Device Manager

Device Manager is the simplest and most commonly used method to turn off the touch screen on any Windows laptop. This works on HP, Dell, Lenovo, ASUS, Acer, and all other brands.

1

Open Device Manager

Right-click the Start button (or press Windows + X) and select Device Manager from the menu.

2

Find Human Interface Devices

Scroll down the device list and click the arrow next to Human Interface Devices to expand the category.

3

Locate the Touch Screen Device

Look for HID-compliant touch screen in the list. If you see multiple entries, you only need to disable the one labeled "HID-compliant touch screen." Some systems list it as "Touch Screen Device" or with the manufacturer name.

4

Disable the Device

Right-click HID-compliant touch screen and select Disable device. Click Yes on the confirmation prompt. The touch screen stops responding to touch input immediately.

Tip: To re-enable the touch screen later, repeat these steps but select Enable device in Step 4. The change takes effect instantly.

Method 2: Disable Touch Screen Using PowerShell

PowerShell provides a command-line approach that is faster if you are comfortable with terminal commands. This method also allows you to create a script to toggle the touch screen on and off.

1

Open PowerShell as Administrator

Press Windows + X and select Terminal (Admin) or Windows PowerShell (Admin). Click Yes on the UAC prompt.

2

Find the Touch Screen Device ID

Run: Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'}. This lists all touch screen devices with their Instance IDs and current status.

3

Disable the Touch Screen

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

4

Verify the Change

Run the command from Step 2 again. The Status column should show Error (which means disabled in this context). To re-enable, replace Disable-PnpDevice with Enable-PnpDevice.

Method 3: Disable Touch Screen via Registry Editor

The Registry Editor method is more advanced and persists through driver updates that might re-enable the touch screen. Use this if Device Manager keeps re-enabling the touch screen automatically.

1

Open Registry Editor

Press Windows + R, type regedit, and press Enter. Click Yes on the UAC prompt.

2

Navigate to the Touch Setting Key

Go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wisp\Touch. If the "Touch" key does not exist, right-click "Wisp" and select New > Key, then name it "Touch".

3

Create the Disable Value

Right-click in the right pane, select New > DWORD (32-bit) Value. Name it TouchGate. Set its value to 0 to disable the touch screen (1 enables it).

4

Restart Your Computer

Unlike Device Manager, the registry change requires a restart to take effect. After rebooting, the touch screen will be disabled.

Warning: Always back up the registry before making changes. An incorrect registry edit can cause system instability. Export the current key by right-clicking it and selecting Export before modifying any values.

Method 4: Disable Touch Screen Using Group Policy (Windows Pro/Enterprise)

If you are running Windows 10 or 11 Pro/Enterprise, Group Policy Editor offers an administrative way to control touch input across the system.

1

Open Group Policy Editor

Press Windows + R, type gpedit.msc, and press Enter. This tool is not available on Windows Home editions.

2

Navigate to Touch Settings

Go to: Computer Configuration > Administrative Templates > Windows Components > Touch Input.

3

Disable Touch Input

Double-click Turn off Windows touch input for all but the necessary number of touch points. Set it to Enabled. Click Apply, then OK.

4

Restart to Apply

Restart your computer for the group policy to take effect.

Why Disable the Touch Screen?

Common reasons to turn off the touch screen include: ghost touch issues where the screen registers phantom taps, conserving battery life (the touch digitizer consumes power even when not in use), preventing accidental touches while typing on 2-in-1 laptops, reducing screen smudges and fingerprints, and improving performance on older systems where the touch driver consumes resources.

Frequently Asked Questions

Yes, but the difference is modest — typically 2-5% longer battery life. The touch digitizer draws a small amount of continuous power to detect input. Disabling it stops that power drain.

It depends. Active styluses (like Surface Pen) that use a separate digitizer may continue working. Passive styluses that rely on the capacitive touch screen will stop working when touch is disabled.

If you do not see it, your laptop may not have a touch screen, or the driver is not installed. Click View > Show Hidden Devices to reveal disabled devices. If it still doesn't appear, your display is not touch-enabled.

If both monitors are touch-enabled and appear as separate HID-compliant touch screen entries in Device Manager, you can disable one while keeping the other active. You may need to test which entry corresponds to which screen.

No, as of Windows 11 24H2, there is no built-in toggle in the Settings app to enable or disable the touch screen. Device Manager remains the primary method.

Occasionally, yes. Major Windows updates can re-enable disabled devices. If this happens, simply disable it again via Device Manager. The Registry method (Method 3) is more persistent against updates.

Completely safe. Disabling the touch screen does not affect your display, resolution, brightness, or any other functionality. It only stops the screen from responding to finger/touch input.

These methods are for Windows only. On Chromebook, you can disable touch via chrome://flags/#ash-debug-shortcuts. Macs do not have touch screens (except the Touch Bar on older MacBook Pro models).

Ghost touches are caused by a faulty digitizer, moisture or dirt on the screen, static electricity, driver issues, or electromagnetic interference. Cleaning the screen and updating drivers may fix it without disabling touch entirely.

Save the PowerShell disable and enable commands from Method 2 as .ps1 scripts. Create desktop shortcuts pointing to each script with "Run as Administrator" enabled. You can then toggle touch with a double-click.