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
Listing arguments / parameters of running programs or services with PowerShell is quite practical on MS Windows 11, 10, and Server OS Start PowerShell
The simple and fast optimization of VHD and VHDX files with simple PowerShell commands on MS Windows 11, 10, or MS Server OS is very popular The "Optimize-VHD"
Its easy to enable Hyper-V PowerShell on MS Windows Desktop and Server to handle, optimize, virtual PCs and virtual hard disks, Hyper-V is already
Here is the solution to open the PowerShell directly in each folder without much effort on all Windows 11, 10, and MS Server operating systems 1.
»» 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