Deactivate / activate the touch screen function with PowerShell!
Deactivating or activating the touch screen function with PowerShell is also possible on all MS Windows Desktop and MS Server OS!
Everyone knows the simple method to ► deactivate the touchscreen under Windows , why not deactivate or activate it with a simple PowerShell command!
Start PowerShell as administrator ( Ctrl + Shift + Enter )
Enter the following command:
Get-PnpDevice | Where-Object {$_.FriendlyName -like "*touchscreen*"} | Disable-PnpDevice -Confirm:$false
As soon as you execute the command, the touchscreen is deactivated. Run this command to reactivate the touchscreen:
Get-PnpDevice | Where-Object {$_.FriendlyName -like "*touchscreen*"} | Enable-PnpDevice -Confirm:$false
(Image-1) Deactivate / activate the touch screen function with PowerShell!
FAQ 7: Updated on: 8 May 2022 14:34
Windows
If there are a lot of pending jobs in the print queue, PowerShell can be used to delete all of the print jobs and thus reset everything 1. The command
Checking the PowerShell version in all MS Windows 11, 10, and MS Server OS is quite easy and easy to find out even without PowerShell expertise If you
In order to work easily with Powershell commands, you can list them, filter them, or get help for the individual Powershell commands Contents: 1. Listing
The display language in Windows 11, 10, is the display language you have selected, the default language is used by all Windows settings, file explorer,
The command history in PowerShell should be used because it is practical, the integrated command history function is very popular under Windows 11, 10,
In Powershell you can also change and adapt the font and add more, under Windows 11, 10, and MS Server OS, how is no longer a question 1. Use a
»» My question is not there in the FAQ
Keywords: powershell, deactivate, activate, touch, screen, function, deactivating, activating, possible, windows, desktop, server, simple, Questions, Answers, Software