How to Show the Items Check Boxes in Windows 11

Table of Contents

Windows 11 gives you the ability to select multiple items in whichever order you want inside File Explorer and the desktop. By implementing checkboxes, the user can now hover with the pointer over each item to reveal the selection check box.

Note

But keep in mind that this feature is not enabled by default on Windows 11.

How to Show the Items Check Boxes in Windows 11

In this post, we’ll go through three different ways that will allow you to enable (show) the use of checkboxes to select files, folders and drives on Windows 11.

Show the Checkboxes via Command Bar on Windows 11

1. Press Windows key + E to open up File Explorer. You can also open it by clicking on the any folder on your computer.

2. Inside the File Explorer window, use the ribbon bar at the top to click on View.

3. From the View context menu, expand the Show sub-menu, then click on Item checkboxes to enable the selection checkboxes on Windows 11.

How to Show the Items Check Boxes in Windows 11
How to Show the Items Check Boxes in Windows 11

Show the Checkboxes using the Folder Options menu

1. Press Windows key + R key to open up the Run window. Inside the prompt that just appeared, type control folders inside the text box and press Enter to open up the File Explorer Options.

How to Show the Items Check Boxes in Windows 11

2. In the File Explorer Options menu, access the View tab from the ribbon menu at the top. Inside the View tab, scroll down through the Advanced Settings menu and locate the Use check boxes to select items checkbox.

3. Check or uncheck the Use check boxes to select items box depending on if you want to enable the checkbox selection functionality then to click on Apply to save the changes.

How to Show the Items Check Boxes in Windows 11

Show the Checkboxes using Command Prompt or batch file

The last way, you can show/hide the check boxes using cmd or batch file. Read more: How to create a batch file on Windows.

1. Open an elevated Command Prompt (cmd) window.

How to Show the Items Check Boxes in Windows 11

2. Run one of the following codes, depending if you want to enable or disable the use of selection checkboxes on Windows 11:

Turn on the checkboxes to select items:

REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V AutoCheckSelect /T REG_DWORD /D 1 /F
taskkill /f /im explorer.exe
start explorer.exe
C:\Windows\System32>REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V AutoCheckSelect /T REG_DWORD /D 1 /F
The operation completed successfully.

C:\Windows\System32>taskkill /f /im explorer.exe
SUCCESS: The process "explorer.exe" with PID 4576 has been terminated.
SUCCESS: The process "explorer.exe" with PID 2528 has been terminated.

C:\Windows\System32>start explorer.exe

Turn of the checkboxes to select items:

REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V AutoCheckSelect /T REG_DWORD /D 0 /F
taskkill /f /im explorer.exe
start explorer.exe

If you use the batch file, don’t forget right click on it then Run as administrator. If you don’t want to create the batch file manually, you can download it from this link.

How to Show the Items Check Boxes in Windows 11

Leave a Comment

Required fields are marked *