Disable Touch Screen PowerShell
Hello,
Nowadays, a lots of laptops/hybrid comes with touchscreen. A lot of people are also used to touch your screen to show you something on it, it it’s a touchable one, you may experienced some unwanted clicks with those people. This is a great feature, but when you need to clean it, you need to either : Lock your laptop, shut it down, put it to sleep, or don’t care if you click anywhere.There is a more convenient solution, you can disable it :
Disable Touch Screen – GUI
Disable Touch Screen PowerShell
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Disable-PnpDevice -Confirm:$false
Enable Touch Screen PowerShell
Get-PnpDevice | Where-Object {$_.FriendlyName -like '*touch screen*'} | Enable-PnpDevice -Confirm:$false
Of course, you need to be an administrator to be able to perform those actions.