Files
management-scripts/Disable-TabletMode.ps1
T

14 lines
455 B
PowerShell
Raw Normal View History

2020-10-25 09:39:25 -04:00
$RegKey = 'HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell'
2021-05-24 14:05:59 -04:00
2020-10-25 09:39:25 -04:00
## Make sure endpoint is running at least Windows 8
If ( IsWindowsVersion -ge '6.3' )
{
LogMsg "Disabling tabled mode"
Try
{
Set-ItemProperty $RegKey -Name 'TabletMode' -Value 0
Set-ItemProperty $RegKey -Name 'SignInMode' -Value 1
}
Catch { LogErr $_.Exception.Message }
}
Else { LogMsg "Tablet mode is only supported on Windows 8 and higher" }