While I have most of the ps written to change the registry value "config flag" on a system level I'm running into access issues. The model is HP EliteBook 810 G1 and the driver is Atmel Touch screen which needs to be disabled. Any assistance would be appreciated.
Powershell
Last Comment
rastoi
8/22/2022 - Mon
rastoi
what kind of access issues ? And why you need to go to the registry for services ?
What about something like this:
Get-Service | where displayname -like *maxTouch* | Set-Service -StartupType Disabled
@rastoi We were able to figure out Windows "Devcon", an exe that can run remotely using psexec and query installed drivers, disable/enable and all that. Although I cannot script this to work across multiple devices it can be run without user interaction and disable the touch screen on a system level for all users.
What about something like this:
Open in new window