How to disable touch screen in Windows 11

The touch screen is a great piece of equipment, but it doesn't seem to be an indispensable element on Windows computers in general.

The touch screen is a great piece of equipment, but it doesn't seem to be an indispensable element on Windows computers in general. According to previous surveys, there have been many cases of laptop users with touch screens confessing that they rarely touch the screen.

This is because platforms like Windows, Mac, or Chrome OS themselves are optimized for use with a mouse and keyboard, rather than touch screens like mobile operating systems. Therefore, users only need a mouse and keyboard to be able to take advantage of the operating system's potential.

This article will show you how to disable the touch screen in Windows 11, avoiding the case of mistaken operations when accidentally touching the screen.

Turn off the touch screen using Device Manager

To get started, click the Windows Search icon (magnifying glass) on the taskbar, enter the keyword 'Device Manager' in the search bar, then click on the corresponding result.

How to disable touch screen in Windows 11 Picture 1How to disable touch screen in Windows 11 Picture 1

On the Device Manager interface that opens, find the Human Interface Devices section and click the right arrow next to that device.

How to disable touch screen in Windows 11 Picture 2How to disable touch screen in Windows 11 Picture 2

In the list that appears, find the HID-Compliant Touch Screen item. Right click on it and select 'Disable Device'.

How to disable touch screen in Windows 11 Picture 3How to disable touch screen in Windows 11 Picture 3

In the dialog box that appears, click 'Yes' to confirm that you really want to disable the touch screen.

How to disable touch screen in Windows 11 Picture 4How to disable touch screen in Windows 11 Picture 4

The device's touch screen is now disabled. In case you change your mind and want to re-enable the Touch Screen, simply follow the same steps and select 'Enable Device' from the menu that appears.

How to disable touch screen in Windows 11 Picture 5How to disable touch screen in Windows 11 Picture 5

Turn off the touch screen using Windows Terminal

You can also run a command in Windows Terminal to disable the touch screen.

To do this, you need to first launch Windows Terminal as an administrator. Right-click the Windows icon on the taskbar (or press Windows + X) to open the Power User menu. Next, click on the 'Windows Terminal (Admin)' option.

How to disable touch screen in Windows 11 Picture 6How to disable touch screen in Windows 11 Picture 6

In the Windows Terminal interface that opens, run the following command:

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

How to disable touch screen in Windows 11 Picture 7How to disable touch screen in Windows 11 Picture 7

After you run the command, the touch screen will be disabled. To turn it back on, run the following command:

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

How to disable touch screen in Windows 11 Picture 8How to disable touch screen in Windows 11 Picture 8

Hope you are succesful.

4 ★ | 1 Vote