What to do if a folder opens in a new window when you open it in Win11

This time, we will show you how to deal with the situation when a folder opens in a new window instead of the same window when you open it in Windows 11.

There may be a problem with Explorer itself, but first let's check the settings.

table of contents

What to do if a folder opens in a new window

1. Check Folder Options (File Explorer Options)

1. Press Windows Key + R to open Run, type the following command and press Enter:

rundll32.exe shell32.dll,Options_RunDLL 0

2. Folder Options (File Explorer Options) will open. Check "Don't create new windows when opening other folders" and click OK.

File Explorer Options
File Explorer Options

If "Do not create a new window when opening another folder" is already checked, check "Create a new window each time I open a folder", click "Apply", then check "Do not create a new window when opening another folder" and click OK.

Check if this has resolved the issue.

2. Check the registry value

1. Press Windows key + R to open Run, type "regedit" and press Enter.

Run
Run

2. The Registry Editor will open, so open the following key:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState

3. With the "CabinetState" key selected, check the value data for "Setting" in the right column.

Are the numbers next to the arrow "0a"? If it's "2a", a new window will open every time you open a folder.

レジストリエディター
レジストリエディター

Addendum 2025/12/27: If "Show full path in title bar" is checked in Folder Options

If you have checked "Show full path in title bar" in Folder Options, the alphanumeric characters in the arrow area will change as follows:

  • For "0b": Normal (no new window created when opening another folder)
  • For "2b": Bug (creating a new window every time you open a folder)

If you use the batch file introduced below, the value will be rewritten to a standard value such as "0a" (or "0c"),Does not affect the behavior of "Show full path in title bar"(Your settings will be maintained), so please use it with confidence.

Editing value data in Registry Editor is a bit difficult, soBatch filePrepared.

Explorer-New Window.zip

Download and run "Explorer-New Window.zip"UnzipThen double-click the file "Create a new window every time a folder is opened.bat" or "Do not create a new window when opening another folder.bat" inside to run it.

Batch file contents

When you run the batch file, it will rewrite the registry value, close all open Explorer windows (including the desktop), turn the screen black or white, and then open the desktop after 3 seconds.

Create a new window every time you open a folder.

@echo off

reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState /v Settings /t REG_BINARY /d 0c0002002a01000060000000 /f

taskkill /f /im explorer.exe&ping -n 3 127.0.0.1>nul&start explorer

Do not create a new window when opening another folder.bat

@echo off

reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState /v Settings /t REG_BINARY /d 0c0002000a01000060000000 /f

taskkill /f /im explorer.exe&ping -n 3 127.0.0.1>nul&start explorer

Check if this has resolved the issue.

The same changes will be made as if you were making the changes in Folder Options, but if for some reason the changes from Folder Options are not applied, you may be able to resolve the issue by changing the registry value and restarting Explorer.

If this does not solve the problem, your system files may be corrupted. Please refer to the following page to repair your system files.

Repairing system files in Win10/Win11 with "System File Checker"

Check how to open a folder

If the folder opens in a new window even though "Don't create a new window when opening another folder" is checked in the folder options, please check the following method for opening folders.

  • When you press Windows key + E to open File Explorer, it will open in a new window regardless of your settings.
  • When you open a folder or folder shortcut on your desktop, it will open in a new window regardless of your settings.
  • When you open a subfolder within a folder by clicking the middle mouse button,Tab FunctionIf you disable it, it will open in a new window regardless of the setting. If the tab feature is enabled, it will open in a new tab.
folder
folder
  • When you open a folder, any subfolders within it will open in the same window.
  • When you open a folder, it will open in the same window as opening it from the folder tree on the left side of Explorer.
  • Start buttonWhen you open "File Explorer" by right-clicking on the folder, if no folders are open, it will open in a new window, and if at least one folder is open, the window of that folder will be brought to the foreground. Or, if a folder other than "Home" or "This PC," which are opened when File Explorer starts, is open, it will open in a new window.
If you found this article helpful, please share it on social media.

Person who wrote this article

Driven by questions arising from my daily PC use and the desire to "do more," I have been pursuing self-study in Windows since around 2008. I am sharing the "aha!" techniques and solutions I discovered through trial and error with the sole purpose of helping you in your PC life.

View profile

Comment:

Comment list (2)

  • Are the numbers next to the arrow "0a"? If it's "2a", a new window will open every time you open a folder.

    This description was not helpful as the display on my PC was different.

    • Thank you for your comment, Valefa.

      Thank you for your valuable information. I conducted some testing based on your comment, and as you pointed out, I was able to confirm that the values ​​change as shown below when "Show full path in title bar" is checked in the folder options.

      "0b": Normal

      In case of "2b": Bug (created in a new window)

      I apologize for not explaining in the article how the reference values ​​change depending on the environment. Thanks to your help, I was able to identify a very important pattern, so I added a note about the "0b / 2b" case to the article.

      Regarding the correction batch file introduced in the article, we have confirmed that running it does not affect the "Show full path in title bar" setting itself (the setting does not disappear), so you can continue to use it even if the values ​​are different.

      Thank you very much for your insightful comments that will help improve the article. If you notice anything else, I would appreciate it if you could let me know.

To comment

[About submissions]
We welcome any questions or information regarding the content of the article.
However, please note that content unrelated to the purpose of the article, criticism of specific individuals or organizations, offensive language,Inappropriate wordsComments containing the above may be deleted or made private without notice at the discretion of the administrator.
Please note that spam may be automatically deleted by anti-spam measures.

CAPTCHA


table of contents