WINDOWS 11

How to Auto-Hide the Taskbar in Windows 11: Fix Issues, Shortcuts, and More

Auto-hiding the taskbar in Windows 11 frees up screen space and keeps the desktop tidy. Whether it is a distraction-free work environment or additional space for videos, Windows 11 is simple with flexible settings and tweaks.

Deepak Yadav

11/29/2024 01:57:01
Using Taskbar Settings (Quick Way)
  1. Right-click on the taskbar (the blank space).

  2. Click Taskbar settings.

  3. Scroll down to Taskbar behaviors.

  4. Check the box that says Automatically hide the taskbar.

  5. That’s it! Your taskbar will now disappear unless you hover your mouse at the bottom of the screen.

Once enabled, the taskbar hides when not in use and appears when you move the mouse down.

Hide Taskbar with Registry Editor
  1. Press Win + R, type regedit, and hit Enter.

  2. In the Registry Editor, navigate to: 

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3.

  3. Double-click Settings.

  4. Change the fifth value in the second row from 03 to 02.

  5. Click OK and restart your computer.

Always back up your registry before making changes. This can be done by going to File > Export in the Registry Editor.

Use AutoHotKey Script to Hide Taskbar
  1. Download and install AutoHotKey.

  2. Create a new script file named HideTaskbar.ahk.

  3. Paste the following code: 
    ahk

    ^+h::WinHide, ahk_class Shell_TrayWnd
    ^+u::WinShow, ahk_class Shell_TrayWnd
    return

  4. Save the file and double-click to run it.

  5. Use Ctrl + Shift + H to hide the taskbar and Ctrl + Shift + U to unhide it.

You can modify the hotkeys to your preference. Just change the ^+ in the script to different key combinations if you want.

Use Group Policy (For Windows Pro Users)
  1. Press Win + R, type gpedit.msc, and hit Enter.

  2. Navigate to: User Configuration > Administrative Templates > Start Menu and Taskbar.

  3. Find Automatically hide the taskbar and set it to Enabled.

  4. Apply the changes and restart your computer.