4

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

dch2404
  • 51

1 Answers1

1

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)

Hardoman
  • 1,092