The Windows taskbar is one of the most familiar parts of the operating system. Positioned by default at the bottom of your screen, it provides quick access to pinned applications, open windows, system functions like search/Cortana, the clock, network icons, system tray, and more.
But for some power users, the taskbar mainly takes up space that could be better utilized in full screen or immersive applications. Based on my experience as a full-stack developer constantly working across four monitors, hiding the taskbar can greatly improve productivity by letting you focus on full screen code editors or creative tools.
According to StatCounter GlobalStats, Windows 10 now powers over 80% of Windows devices globally. So techniques for customizing the user experience – like hiding the taskbar – are in high demand for millions of users and IT professionals worldwide.
In this comprehensive guide, you’ll learn multiple methods to completely hide the taskbar in Windows 10:
- Via Settings for auto-hide functionality
- Through Registry Editor tweaks for permanent invisibility
- Using desktop shortcuts for quick toggle ability
- With Command Prompt commands for fast scripting
I’ll also cover how to restore the hidden taskbar, re-enable startup apps to launch correctly, advanced customization options, and more. Let’s get right into it!
Before We Begin
Here are some best practices to follow before attempting to hide your Windows 10 taskbar:
-
Back up the Registry – We‘ll be modifying Registry keys related to taskbar visibility. If you haven‘t backed up the Registry recently, do it now in case you need to undo changes.
-
Note startup apps – Hiding the taskbar prevents apps pinned to it from auto-starting correctly. Review your existing startup apps first so you can re-enable them later.
-
Tweak on a test machine first – Before adjusting any system-wide settings on your production machine, test out these taskbar tweaks on a secondary test Windows 10 PC first to understand their behavior.
Now with those best practices handled, let‘s start adjusting some settings to hide your taskbar.
Auto Hide with Taskbar Settings
The simplest way to clean up your taskbar is by enabling the auto-hide feature in Windows Settings:
-
Right click an empty area on the taskbar and click Settings.

-
Scroll down to the "Automatically hide the taskbar in desktop mode" option and toggle it On.

Now whenever your mouse cursor moves away from the bottom of the screen, the taskbar will automatically disappear. As soon as you move the mouse over where the taskbar is hidden, it quickly fades back into view temporarily.
Auto hiding the taskbar is great for keeping your desktop clean while still retaining easy access to taskbar functions. And there‘s zero risk involved thanks to the straightforward Settings toggle.
However, the taskbar will still pop up whenever you hover near it with the cursor. For true set-it-and-forget-it behavior where the taskbar stays completely invisible, keep reading to the Registry tweaks section below.
Permanently Hide Taskbar with Registry Editor
The Windows Registry stores configuration settings that control virtually every aspect of the operating system‘s appearance and functionality. By modifying a specific Registry value, we can force the taskbar into a perpetually hidden state.
Warning: Editing the Registry incorrectly can seriously prevent Windows from functioning properly. Be extremely careful when making changes and precisely follow the steps outlined here. I also strongly suggest reviewing my best practices and testing on a secondary machine first!
Follow these steps to completely hide the taskbar by editing your Registry:
-
Open the Start menu and search for "regedit" to launch the Registry Editor app with admin access.
-
Navigate carefully to the following subkey:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -
In the right-hand pane, double click the value named Settings. This opens the Edit DWORD dialog box.
-
Change the Value data field to
3and click OK to set it.
-
Next, we need to restart Windows Explorer for this setting to take effect. Open Task Manager by right-clicking the taskbar and choosing Task Manager.
-
Under the Processes tab, select Windows Explorer then click Restart to relaunch it.

That‘s it! Your taskbar will now remain permanently invisible at all times, even when you move your mouse to the bottom of the screen where the taskbar normally appears.
To bring the taskbar out of hiding, follow the same steps again but change the Settings DWORD value to 2 before restarting the Windows Explorer process.
Let‘s look at a quicker way to toggle taskbar visibility next…
Toggle Visibility with Desktop Shortcuts
If going through the Settings menus or editing the Registry is too inconvenient, you can create special desktop shortcuts for showing and hiding the taskbar instead.
Follow these steps to setup one-click desktop icons that instantly toggle your taskbar‘s visibility status:
-
Right-click an empty area of desktop, choose New > Shortcut.
-
Paste this script into the file location field:
powershell.exe -command "&{$p=‘HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3‘;$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v; &Stop-Process -f -ProcessName explorer}" -
Click Next, then name the shortcut something like "Show Taskbar" and click Finish.
-
Repeat steps 1-3 to create another shortcut. But this time, use this script:
powershell.exe -command "&{$p=‘HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3‘;$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v; &Stop-Process -f -ProcessName explorer}" -
Name the second shortcut "Hide Taskbar".
Now you have a pair of convenience desktop icons to quickly hide/show your taskbar with a double click! Much faster than digging through nested settings UIs.

However, this approach could confuse less tech-savvy users accessing your computer. For the most universal control, utilizing hidden Command Prompt commands may be ideal.
Let‘s explore how next!
Hide Taskbar via Command Line
The Command Prompt in Windows provides powerful automation capabilities through an old school text-based interface. We can take advantage of that to conceal our taskbar entirely via the following one line command:
powershell -command "&{$p=‘HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3‘; $v=(Get-ItemProperty -Path $p).Settings; $v[8]=3; &Set-ItemProperty -Path $p -Name Settings -Value $v; &Stop-Process -f -ProcessName explorer}"
Here‘s how you run it to hide the taskbar:
- Open the Start menu and search for "Command Prompt". Right-click on it and select Run as administrator.
- Paste the command string above into the Command Prompt window.
- Press Enter to execute the command and hide your taskbar instantly!
This approach directly sets the required Registry value we explored earlier behind the scenes. Without having to touch the Registry Editor at all.
To unhide the taskbar, input this shorter command:
powercfg -restoredefaultschemes
Now you can completely conceal and restore your taskbar instantly with these quick copy/paste commands! No folders or UI hunting needed.
However, hiding the taskbar does disrupt how some Windows features work. Let‘s look at why startup apps break next and I‘ll show you how to fix them when hiding the taskbar.
Fixing Startup Apps After Hiding Taskbar
You may notice one unexpected consequence after hiding the Windows taskbar – your usual startup applications no longer launch automatically on login!
This failure occurs because apps set to run at boot have shortcuts pinned to the (now hidden) taskbar, which Windows is unable to locate and launch.
To fix startup apps after hiding your taskbar, follow these steps:
-
Open the Start Menu, search for "Task Scheduler" and launch the Task Scheduler administrative tool.
-
In the panel on the left, navigate to Task Scheduler Library > Microsoft > Windows > Application Experience.
-
Select each of your startup apps underneath Application Experience one by one. Then right-click on them and choose Enable.

This migrates those apps over to a new task launching system separated from the hidden taskbar. Now when you restart your PC, they should open as normal again even with an invisible taskbar!
Advanced: Customize Hidden Taskbar Appearance
The main method for hiding the taskbar relies on a Registry DWORD value we set to 3. But what happens if we use other values instead?
As covered in Microsoft Documentation, additional options exist for customizing the visibility of a hidden taskbar:
| Value | Effect |
|---|---|
| 1 | Hides taskbar fully without transitions |
| 2 | Restore default visible taskbar behavior |
| 3 | Fades taskbar visibility on mouse hover |
| 4 | Shows translucent taskbar |
| 5 | Applies blur effect to hidden taskbar |
So feel free to experiment with other values like 4 or 5 for advanced transparency effects! Just be cautious and back up your Registry first as always before making edits.
You can also reference this Reddit thread for additional customization pointers.
Manage via Group Policy for Central Control
If you need to hide the taskbar across your business or enterprise Windows devices, using the Registry hack on each local machine would be time consuming.
Instead, Group Policy lets IT administrators centrally define system policies and settings from a remote server. This includes options to force the taskbar visibility behavior company-wide.
Refer to this policy configuration guide for full details on the required Group Policy Objects (GPOs) and specific steps to rollout hidden taskbars remotely across your organization.
Conclusion
While the Windows taskbar delivers important user experience functions, hiding it entirely serves valid use cases as well. Full screen applications, gaming, video/photo editing, and maximizing screen real estate all benefit from removing the taskbar from view.
The easiest option is the auto-hide setting built right into Windows Settings. Just toggle it on for disappearing taskbar until you hover over it.
For true set-and-forget hiding without any auto pop ups, modifying the StuckRects Registry value forces permanent invisibility. Pair that Registry change with desktop shortcuts or Command Prompt scripts for quick taskbar toggling as needed.
Just be wary that startup apps can break after hiding the taskbar fully. But I walked you through steps to identify and re-enable those seamlessly.
Hopefully this complete guide has taught you multiple methods to hide the Windows taskbar for good – along with customization options, Group Policy management, and troubleshooting for when issues arise.
Let me know if you have any other great Windows 10 taskbar tips or tricks in the comments below!


