Windows 10 command line to enable/disable tablet mode

tablet-modewindows 10windows-tabletpc

As title, does anyone know how to toggle tablet mode akin to swiping in the right then clicking Tablet Mode button?

Best Answer

In fact you need 3 registry keys:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell\TabletMode = 0

(this will only currently disable tablet mode before the next switch prompt)

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell\SignInMode = 1 (this will enable Desktop mode on Signin)

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell\ConvertibleSlateModePromptPreference = 0 (this will prevent prompts and will preserve desktop mode)

Related Question