O que eu tentei, (editando o registro, winaero tweaker), eu não consegui fazer o alt-tab clássico funcionar no Win10 2016 LTSB. A solução no final foi simular o Right-Alt Tap ao pressionar Left-Alt usando o seguinte script AutoIT. Isso funciona para mim, mas pode quebrar certas combinações de atalhos de teclado que envolvem as teclas Ctrl esquerda e Alt esquerda ...
#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Run_Au3Stripper=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <WinAPISys.au3>
#include <WinAPI.au3>
#include <Misc.au3>
If _Singleton ( "My_Alt_Tabber", 1 ) = 0 Then
MsgBox ( 0, "", "Alt tabber is already running!" )
Exit
EndIf
Dim $LALT = 0xA4
Dim $RALT = 0xA5
Dim $TAB = 0x09
Dim $CTRL = 0x11
Dim $hDLL = DLLOpen ( "user32.dll" )
While True
If _IsPressed ( "12", $hDLL ) Then
_KeyDown ($RALT)
_KeyUp ($RALT)
_KeyUp ($CTRL) ; RALT Is actually Ctrl-Alt so must release Ctrl!
While _IsPressed ( "12", $hDLL )
;
WEnd
EndIf
WEnd
Func _KeyDown ( $KEY )
_WinAPI_Keybd_Event ( $KEY, $KEYEVENTF_EXTENDEDKEY)
EndFunc
Func _KeyUp ( $KEY )
_WinAPI_Keybd_Event ( $KEY, $KEYEVENTF_KEYUP)
EndFunc