From 5d946079df9fc79c0fe1c22308a408ab653c139b Mon Sep 17 00:00:00 2001 From: serverhorror Date: Thu, 28 Dec 2023 13:34:20 +0000 Subject: [PATCH] Dec 28, 2023, 2:34 PM --- notes/kb.windows-alt-tab.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/notes/kb.windows-alt-tab.md b/notes/kb.windows-alt-tab.md index 1f7f3a3..1e77e01 100644 --- a/notes/kb.windows-alt-tab.md +++ b/notes/kb.windows-alt-tab.md @@ -2,7 +2,7 @@ id: nxlvjm6hui0yaltptr19hok title: Windows Alt Tab desc: '' -updated: 1703770177491 +updated: 1703770452905 created: 1703770067787 --- @@ -18,3 +18,23 @@ created: 1703770067787 taskkill /f /im explorer.exe start explorer.exe ``` + +### Alternative via registry file + +1. Save the following as a `.reg` file. + + ```reg + Windows Registry Editor Version 5.00 + + [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] + "AltTabSettings"=dword:00000001 + ``` + +2. Double-click the file to apply the change. + +3. Restart Windows Explorer or sign out and sign in again to apply the change. + + ```batch + taskkill /f /im explorer.exe + start explorer.exe + ```