How to Change Which Taskbar Shows Apps on Multiple Screens in Windows 11
Multiple monitors in Windows 11 let you spread out your work across two or more screens using the built-in taskbar settings. Controlling where app icons appear stops your desktop from getting messy and helps you find open programs fast.
Windows 11 gives you three simple choices for your extra displays. You can show taskbar buttons on every screen, only on the screen where the app is open, or just on the main display.
Open Settings , go to Personalization, then Taskbar. Expand Taskbar behaviors and select your preferred app display option from the dropdown menu. Ensure “Show my taskbar on all displays” is enabled if the option is greyed out.
Multiple Displays and Taskbars
Showing a taskbar on each screen helps track open apps across monitors. Multiple displays make workspaces feel organized and manageable.
- Main display: This is where the clock and special icons appear on the taskbar .
- Other displays: They can also show taskbars, but these usually don’t have the clock or corner icons.
App presentation across multiple screens requires choosing a specific taskbar layout.
How to Choose Where Your Taskbar Shows Apps
Multiple screens in Windows 11 offer three main choices for app placement on taskbars. Apps can appear on all taskbars, only the main taskbar, or solely on the taskbar where the active window sits.
- All taskbars: Apps you pinned or opened appear on every taskbar on all screens.
- Main taskbar and taskbar where the app is open: Pinned apps only show on the main taskbar. Open apps show on the main taskbar and also on the screen where the app is open.
- Taskbar where the app is open: Pinned apps only show on the main taskbar. Open apps only show on the screen where the app is open.
—
Option 1Change Taskbar App Display Using Windows Settings
- Press Windows key + I to open Settings.
- Click Personalization on the left menu, then select Taskbar on the right.
- Scroll down and click on Taskbar behaviors to expand it.
- Find the dropdown next to When using multiple displays, show my taskbar apps on.
- Choose one of the three options mentioned above:
All taskbars, Main taskbar and taskbar where window is open, or Taskbar where window is open.
- Close Settings when done.

Taskbar app locations change through the Settings app. Navigate to Personalization > Taskbar, expand Taskbar behaviors, and select the preferred option from the dropdown menu for multiple displays.

---
Option 2Change Taskbar App Display Using a Batch File
A batch file (a small script that automates tasks) bypasses the menu clicks entirely. Three scripts below handle each distinct taskbar app display method.
Show apps on All taskbars:
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V MMTaskbarEnabled /T REG_DWORD /D 1 /F
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V MMTaskbarMode /T REG_DWORD /D 0 /F
taskkill /f /im explorer.exe
start explorer.exe
Show pinned apps on main taskbar, open apps on main and open window taskbar:
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V MMTaskbarEnabled /T REG_DWORD /D 1 /F
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V MMTaskbarMode /T REG_DWORD /D 1 /F
taskkill /f /im explorer.exe
start explorer.exe
Show pinned apps on main taskbar, open apps only on taskbar where window is open:
To quickly show pinned apps only on your main taskbar, while open apps appear on their own screen's taskbar, use a simple batch script. You can create this by pasting code into Notepad and saving it as a .bat file.
- Open Notepad on your PC.
- Copy one of the code blocks and paste it into Notepad.
- Save the file with a
.batextension, likechange_taskbar.bat. Make sure "Save as type" is set to "All files". - Right-click the saved file and choose Run as administrator.
- Your taskbar will restart, and the new setting will apply.
---
Summary
- Multiple Display Options: You can pick how and where taskbar apps show when using more than one screen.
- Easy Settings: Change this anytime in the Windows Settings under Personalization Taskbar
- Quick Changes with Scripts: Use batch files to switch settings fast if you prefer.
- Better Workflow: Adjusting taskbar behavior helps keep your workspace organized and easy to use.
- Consistent Look: Make sure your taskbars look and act the way you want on all screens.
Multiple monitors in Windows 11 provide several display methods for taskbar apps. Windows Settings under Personalization Taskbar manages these preferences, or batch files apply the changes instantly.
Why is my taskbar not showing on both monitors?
All displays recover their taskbars. Secondary monitors show the taskbar alongside the primary display, allowing additional customizations.
Why are my taskbar icons only on one monitor?
Settings Personalization Taskbar holds the configuration options for multi-monitor taskbar behavior.
Was this guide helpful?
0% of readers found this helpful (1 votes)
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!