You can temporarily disable the touchscreen easily in no time but permanently disabling it will require some effort. You can disable the touchscreen in windows 11 using the device manager, registry editor, or windows terminal.
Let’s learn about these methods in more detail:
Using Device Manager
Device manager is an in-built tool in Windows 11 that helps to view and manage hardware devices and their drivers. Disabling the touchscreen through the device manager is the easiest method you can follow.
- Press Windows key +R to open Run.
- Type,
devmgmt.msc
- In Device Manager, search for the Human Interface Devices option and expand it.
- From the list select “HID-compliant touch screen.”
- Right-click on it and select Disable device option.
- A new pop-up will appear. Click on Yes.
Disabling the touchscreen through the device manager will re-enable it after a reboot. So if you permanently want to disable it, you should use the other methods discussed below:
Using Registry Editor
In windows 11, permanently disable the touchscreen using the registry editor. It won’t re-enable after a reboot. But playing with registry settings can sometimes land you in trouble. So be careful with this method:
- Click on the Start button.
- Type
regedit.exe
and press Enter key. - Click on Yes to open the Registry Editor.
- Copy this address:
HKEY_CURRENT_USER\Software\Microsoft\Wisp\Touch
- Paste this address into the address bar of Registry Editor.
- Right-click on the blank space and select the option New > DWORD (32-bit) Value.
- A new Edit-box opens. Type TouchGate in the Value name and set value data to 0.
- Click on the OK button and restart your device to save the modifications.
If you want to re-enable the touch screen again, set the value data to 1. Then, save the settings.
Using Windows Terminal
This method will also permanently disable your touch screen in Windows 11. You need to follow these steps:
- Right-click on the Start button.
- Click on Windows Terminal (Admin) from the list.
- On the ‘User Account Control’ dialog box, choose Yes.
- Copy and paste the following command on the Windows Terminal to disable the touch screen:
Get-PnpDevice | Where-Object {$_.FriendlyName -like ‘*touch screen*’} | Disable-PnpDevice -Confirm:$false
- Run the following command to enable it again:
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Enable-PnpDevice -Confirm:$false
How to Disable the Touchscreen Indicator?
Whenever you touch a touchscreen, it shows a small circle in the place of contact. It is the touchscreen indicator. If you feel uncomfortable with this feature, you can disable it easily. Follow these steps to disable it:
- Open Settings and navigate to the Accessibility tab in the left pane.
- Click on the Mouse pointer and touch option.
- Under Touch Indicator, you will see a toggle button. Toggle it off to disable the touchscreen indicator.
In contrast, if you like the feature of the touch indicator, you can make it more visible. Check the Make the circle darker and larger option shown under the Touch Indicator, and you are done.