Home  >  Article  >  Ways to hide the taskbar on Windows 11 using settings or the best apps available

Ways to hide the taskbar on Windows 11 using settings or the best apps available

PHPz
PHPzforward
2023-04-14 09:52:121670browse

Customizing Windows is something that most users take seriously. It improves productivity, aesthetics, and more importantly, it's a way to express your personality on your device. If you've been customizing Windows 11, you'll realize that you don't have a lot of screen space available.

However, you can take back some of that by hiding the taskbar in Windows 11. This will allow full-screen apps to actually run in full-screen mode, and more importantly, give you space below the screen where you can place third-party widgets and the like. Let’s take a look at the various ways to hide the taskbar in Windows 11.

How to Hide the Taskbar on Windows 11

You can temporarily hide the taskbar using the native options available in Windows. However, if you wish to hide the taskbar permanently, you will have to use a third-party application and check which one is available for your current version of Windows 11.

You have all the options below when hiding the taskbar in Windows 11.

Option 1: Temporarily hide the taskbar

You can temporarily hide the taskbar using the native option in Windows Settings, or choose a third-party app that helps perform the same action. Here's how you can get started.

Method 1: Use Autohide in Windows 11

The autohide option for the taskbar in Windows 11 can be accessed from the Settings app.

However, if you are unable to access File Explorer or are facing issues on your system, then you can perform the same operation on your PC using Registry Editor and CMD.

Follow any section below based on your current preferences.

Option 1: From the Settings app

Right-click the taskbar and select Taskbar Settings.

Ways to hide the taskbar on Windows 11 using settings or the best apps available

Note: You can also access the same page by going to Settings > Personalization > Taskbar.

Click Taskbar Behavior.

Ways to hide the taskbar on Windows 11 using settings or the best apps available

Select the Auto-hide taskbar checkbox.

Ways to hide the taskbar on Windows 11 using settings or the best apps available

That's it! You should see the changes immediately on your screen.

Option 2: Press
Windows R

to start the run from CMD.

Ways to hide the taskbar on Windows 11 using settings or the best apps available

Type the following and press Ctrl Shift Enter.

cmd

Ways to hide the taskbar on Windows 11 using settings or the best apps available

Command Prompt will now launch on your PC. Use the following command to turn on auto-hide for your system.

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}"

Ways to hide the taskbar on Windows 11 using settings or the best apps available0

That's it! After executing the command, your taskbar should now hide automatically.

You can then disable auto-hide at any time using the following command.

powershell -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}"

The above is the detailed content of Ways to hide the taskbar on Windows 11 using settings or the best apps available. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yundongfang.com. If there is any infringement, please contact admin@php.cn delete