To use Device Manager to disable the touch screen in Windows 11, follow these steps:
#At this point, your touch screen is disabled - no reboot required.
If you later want to re-enable the touch screen on your Windows 11 PC, follow these steps:
You should be able to continue using the touch screen at this point. If not, restart your PC to ensure any underlying changes have taken effect.
You can also use the new Windows Terminal app to disable or enable the touch screen in Windows 11. You can also use Windows PowerShell to do this, but you won't be able to use older command-line tools.
To do this:
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Disable-PnpDevice -Confirm:$false
Run After the above command, the touch screen will be disabled. No need to restart.
If you disable the touchscreen using Windows Terminal, you may want to turn it back on later. Of course, you can always go into Device Manager to re-enable it or use the Terminal app to restore functionality.
To enable the touch screen in Windows 11 using the Windows Terminal app:
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Enable-PnpDevice -Confirm:$false
The above steps should Can help you quickly enable or disable touch screen in Windows 11. If you're having trouble enabling your touchscreen, don't forget to give your PC a quick restart and check for new updates.
The above is the detailed content of How to disable the touch screen in Windows 11. For more information, please follow other related articles on the PHP Chinese website!