Overview – Task View in Windows 11
The Task View in Windows is an efficient way to organize multiple tasks at a same time. It provides an overview of all open applications and allows you to switch between them by creating virtual desktops, which are collections of virtual screens that can viewed on the screen at the same time.
It appears that you either don’t use Task View very often and hence want to remove the Task View button from your taskbar, or that you want to start utilizing it to better manage your projects and want to display its icon on the taskbar. By the end of this article, you’ll be able to remove task view button from the taskbar in Windows:
1. Remove Task View Icon From Taskbar using Windows Settings
Step 1: Open the Windows Settings from the Start menu or press the “Windows Logo key + I” key combination on the keyboard.

Step 2: Select the “Personalization” tab from the Start menu and click the “Taskbar” option from the right pane.

Step 3: To hide the task view icon from the taskbar, toggle off the “Task View” button. To unhide it, toggle on it.

2. Show or Hide Task View using Registry Editor
Step 1: Open the Registry Editor from the Start menu or press the “Windows Logo key + R” key combination on the keyboard, type: regedit and hit the enter key.

Step 2: Navigate to the following path:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced and double-click the “ShowTaskViewButton” value.

Step 3: To hide the task view icon, set the “value data” to 0. Set the value data to “1” to show the task view icon.

Step 4: Reboot the computer to make changes take effect and the next time you sign-in, the task view (virtual desktop) will be disabled.

Suggested Article: Backup Registry Editor in Windows.
3. Show or Hide Task View Icon using Batch Script (BAT File)
Step 1: Right-click and create a new text document file.

Step 2: To remove the task view icon from taskbar, copy the script below and paste it into the newly created text document.
@echo off
REG DELETE “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MultiTaskingView\AllUpView” /V Enabled /F
REG ADD “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced” /V ShowTaskViewButton /T REG_DWORD /D 0 /F

To show the task view icon on taskbar, copy the script below and paste it into the newly created text document.
@echo off
REG DELETE “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MultiTaskingView\AllUpView” /V Enabled /F
REG ADD “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced” /V ShowTaskViewButton /T REG_DWORD /D 1 /F

Step 3: On the top left side, click the “File” button and click the “Save as” option.

Step 4: Rename the file, change the file extension from “File_Name.txt” to “File_Name.bat” and save it.

Step 5: Double-click the newly created BAT File to execute the script.
Note: On some devices, you might need to restart the computer to reflect changes.
Note: If the script doesn’t work, manually type it into the text document.
Next Steps
We’ve covered how to show or hide Task View Icon from taskbar in Windows 11.
The Task View can help you manage tasks while working on numerous desktops at the same time and keep them organized. However, if you don’t use this feature often, you can prevent it from appearing it on the taskbar by following any one of the methods listed above.
Improve your device’s overall network connectivity by following the related articles below.
Related Articles
Virtual Desktop in Windows (Complete Guide)
Recently enabled the Task View Button? Learn how to create virtual desktops to improve your productivity by organizing multiple tasks.
Disable Widgets in Windows 11
Don’t use Windows Widgets often? Learn how to disable it from running in the background and reduce the RAM Consumption.
Auto Hide Taskbar in Windows
Automatically Hide and Unhide the taskbar when not in use increase your screen size by some pixels.