I am trying to write a Powershell script that automatically sets up a Windows 10 platform that uses only a touch screen monitor as it's interface.
I've found this registry key and wrote it into the script:
$registryPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI"
$Name = "ShowTabletKeyboard"
$value = "1
But, we still have to go into Settings>Devices>Typing and manually enable "Show the touch keyboard" and "Add standard keyboard as an option".
I've found ways to set this up for individual applications but not for a system wide configuration.
Any advice? Thanks!