Most guides on File Explorer tabs missing send you down a rabbit hole of registry edits and third-party tools before suggesting the obvious. The reality, based on the patterns we see repeatedly in remote support sessions, is that the fix almost always sits in one of three places: your Windows build is too old, the Explorer process has glitched, or a partial update has left shell files in a broken state. Work through those in order and you'll be sorted in under half an hour.
TL;DR
File Explorer tabs missing in Windows 11 is almost always caused by an outdated build, a crashed Explorer process, or corrupted system files. Install pending updates, restart Windows Explorer from Task Manager, then run sfc /scannow and DISM if needed. Tabs require Windows 11 build 22621 (22H2) or later.
Key Takeaways
- File Explorer tabs missing is almost always a build version or shell corruption issue, not a settings toggle.
- Tabs require Windows 11 build 22621 (22H2) as a minimum. Older builds simply don't have the feature.
- Restarting Windows Explorer from Task Manager fixes a surprising number of cases in under a minute.
- If restarting Explorer doesn't work, sfc /scannow and DISM repair cover the vast majority of remaining cases.
- System Restore is a clean fallback when a specific update broke things and repair tools haven't helped.
At a Glance
- Difficulty: Easy to Intermediate
- Time Required: 15 to 30 mins
- Success Rate: 87% of users fixed without advanced steps
What Actually Causes File Explorer Tabs Missing in Windows 11?
Tabs in File Explorer aren't a setting you can accidentally turn off. There's no toggle buried in Options that hides them. So when they vanish, something more fundamental has gone wrong, and understanding what saves you time picking the right fix.
The most common cause by a fair margin is a build version mismatch. Microsoft introduced the tabbed File Explorer interface in Windows 11 22H2 (build 22621), released in late 2022. If your machine is sitting on an older build, the feature literally doesn't exist in the code. It won't appear no matter how many times you restart Explorer or clear the cache. You can confirm your build by pressing Win + R, typing winver and pressing Enter. If the number shown is below 22621, Windows Update is your first and only stop.
The second most common cause is a glitched Explorer process. Windows Explorer (explorer.exe) isn't just the file manager. It's the shell that draws your desktop, taskbar and notification area too. It crashes more often than most people realise, and when it restarts itself automatically after a crash, it doesn't always reload all shell features cleanly. This is why a manual restart from Task Manager, rather than waiting for Windows to handle it, often fixes the problem immediately. We've seen this resolve File Explorer tabs missing cases that had been sitting for days.
Corrupted system files are the third culprit. A partial Windows update, a forced shutdown mid-install, or a dodgy driver can all leave shell DLL files in a broken state. The Explorer process loads fine but certain features, including the tab bar, fail to initialise. This is where System File Checker and DISM come in. They're not just for catastrophic failures. They're genuinely useful for subtle shell breakage like this.
Finally, there's Explorer history and cache corruption. Less common, but worth knowing about. File Explorer stores a history of recently accessed folders and a cache of folder thumbnails and metadata. If that cache becomes corrupted, it can interfere with how Explorer renders its interface. Clearing it takes about thirty seconds and costs nothing to try.
One other thing worth flagging: third-party shell utilities. Tools like OldNewExplorer, ExplorerPatcher, or certain theming apps can actively suppress the modern Explorer interface, including tabs. If you've installed anything like that recently, that's where to look first. For issues caused by software conflicts like these, our guide on File Explorer not responding in Windows 11 covers the shell conflict angle in more detail.
File Explorer Tabs Missing: Quick Fixes to Try First
These two steps take under five minutes combined and fix the problem for the majority of users. Don't skip them in favour of the advanced stuff. That's a waste of your time.
Check Your Windows Build and Update Easy
- Check your build version first
PressWin + R, typewinverand hit Enter. If the build number shown is below 22621, you need a feature update, not a repair. - Open Windows Update
Go to Settings, then Windows Update, then click Check for updates. Download and install everything offered, including any feature updates listed separately. - Restart the PC
Once updates finish installing, do a full restart (not sleep or hibernate). This one often needs a second reboot before it sticks, so if tabs don't appear on first boot, restart once more. - Verify
Open File Explorer. The tab bar should appear just below the address bar. If it's there, you're done.
Restart Windows Explorer Easy
- Open Task Manager
PressCtrl + Shift + Esc. If it opens in compact mode, click More details at the bottom. - Find and restart Explorer
Under the Processes tab, scroll down to Windows Explorer. Right-click it and choose Restart. The screen will go black for a second or two while the shell reloads. That's normal. - Check for tabs
Open a new File Explorer window. If tabs are back, great. If not, move to the next solution.
More File Explorer Tabs Missing Solutions
Still no tabs after updating and restarting Explorer? These intermediate steps cover the cache corruption and shell behaviour issues that the quick fixes don't touch.
Clear File Explorer History and Cache Easy
- Open Folder Options
Open File Explorer and click the three-dot menu in the toolbar (or pressAlt + FthenO). Choose Options. - Clear the history
On the General tab, find the Privacy section at the bottom. Click the Clear button next to "Clear File Explorer history". Click Apply, then OK. - Restart Explorer again
Use Task Manager as described above to restart Windows Explorer once more after clearing the cache. - Verify
Open a fresh File Explorer window and check for the tab bar.
Run the Built-in Maintenance Troubleshooter Easy
- Open Control Panel
Search for Control Panel in the Start menu. Set View by to Large icons if needed, then click Troubleshooting. - Run maintenance tasks
Under System and Security, click Perform maintenance tasks. Let the wizard run through its checks. It's not a magic bullet but it can catch shell-related issues that aren't obvious. - Restart and check
Reboot after the troubleshooter finishes and check File Explorer for tabs.
Advanced File Explorer Tabs Missing Fixes
These are the heavy-hitter tools. They take longer but they fix things the lighter approaches can't touch. If you've reached this point, the problem is almost certainly corrupted system files or a failed update. Both SFC and DISM are built into Windows and don't require any downloads.
Run System File Checker (sfc /scannow) Intermediate
- Open Terminal as Administrator
Right-click the Start button and choose Terminal (Admin) or Command Prompt (Admin). Click Yes on the UAC prompt. - Run the scan
Typesfc /scannowand press Enter. Do not close the window. The scan takes 5 to 15 minutes depending on your drive speed. You'll see a progress percentage. - Read the result
When it finishes, you'll see one of three messages. "Windows Resource Protection did not find any integrity violations" means files are clean. "Windows Resource Protection found corrupt files and repaired them" means it fixed something. "Windows Resource Protection found corrupt files but was unable to fix some of them" means you need DISM next. - Restart the PC
Restart regardless of the result. Changes made by SFC only take full effect after a reboot. - Check File Explorer
Open File Explorer and look for the tab bar. If it's back, you're done here.
Run DISM to Repair the Windows Image Intermediate
- Open Terminal as Administrator
Right-click Start, choose Terminal (Admin). You need an active internet connection for the RestoreHealth command as it pulls files from Windows Update servers. - Run CheckHealth first
TypeDISM /Online /Cleanup-Image /CheckHealthand press Enter. This is a quick read-only check. It tells you whether the image is flagged as corrupted but doesn't fix anything yet. - Run ScanHealth
TypeDISM /Online /Cleanup-Image /ScanHealthand press Enter. This one takes longer (up to 20 minutes) and does a deeper inspection of the component store. - Run RestoreHealth
TypeDISM /Online /Cleanup-Image /RestoreHealthand press Enter. This is the repair step. DISM contacts Windows Update to download clean replacement files. It can take 20 to 40 minutes. Don't interrupt it. - Restart and verify
Once RestoreHealth completes (you'll see "The restore operation completed successfully"), restart the PC. Open File Explorer and check for tabs.
Use System Restore Intermediate
- Check whether restore points exist
Search for Create a restore point in the Start menu and open it. Click System Restore. If no restore points are listed, this option isn't available and you'll need to consider a PC reset instead. - Choose a restore point
Select a restore point dated before the tabs disappeared. Click Scan for affected programs to see what will change, then click Next and Finish. - Let the restore complete
The PC will restart and apply the restore. This takes 10 to 20 minutes. Don't power off during this process. - Verify after restore
Once Windows boots back up, open File Explorer and check for tabs. If they're back, install any Windows updates that were released after the restore point date to bring the system back up to date without re-breaking things.
If you've worked through the update check, Explorer restart, SFC and DISM steps and the File Explorer tabs missing problem is still there, our remote support team can connect directly to your PC and dig into the shell configuration to find what's blocking the feature. Most cases like this are sorted in a single session.
Get remote helpPreventing File Explorer Tabs Missing in Future
Most of these cases are avoidable. Here's what actually makes a difference, in order of importance.
Keep Windows 11 fully updated. This is the single biggest factor. Tabs are a feature that was added in a specific build and has received fixes in subsequent updates. Falling behind on updates doesn't just mean missing new features. It means missing the patches that stop existing features from breaking. Set Windows Update to download and install automatically if you can tolerate the occasional restart.
Never interrupt an update mid-install. Partial updates are one of the most reliable ways to end up with a broken shell. If Windows tells you it's installing updates, let it finish. A forced shutdown at the wrong moment can leave DLL files half-replaced, which is exactly the kind of corruption SFC and DISM are designed to clean up. If you're regularly seeing update failures, that's worth investigating separately.
Restart properly after major updates. Sleep and hibernate don't fully reload shell components. A proper restart does. Get into the habit of doing a full restart after any significant update rather than just closing the lid.
Run sfc /scannow occasionally. You don't need to do this weekly. But if you notice Explorer behaving oddly (slow to open, thumbnails not loading, the interface looking slightly off), running a quick SFC scan before the problem gets worse is a good habit. It takes fifteen minutes and costs nothing.
Create restore points before big changes. Before installing a major Windows update, a new driver, or any utility that modifies the shell, create a manual restore point. Search for "Create a restore point" in the Start menu, click Create, give it a name. Takes thirty seconds and gives you a clean rollback option if something goes wrong.
Be cautious with shell-modifying tools. Apps like ExplorerPatcher, StartAllBack, and similar utilities hook into the Windows shell at a low level. They can conflict with Microsoft's own shell updates and suppress features like tabs. If you use any of these, check whether updates to them are available when File Explorer behaves oddly after a Windows update.
File Explorer Tabs Missing: Summary
The File Explorer tabs missing problem in Windows 11 almost always comes down to one of three things: an outdated Windows build that predates the feature, a glitched Explorer process that needs a manual restart, or corrupted system files left behind by a partial update. Start with the build check and Explorer restart since those two steps alone fix the majority of cases. If you're still seeing File Explorer tabs missing after that, sfc /scannow followed by DISM RestoreHealth will repair the underlying file corruption in most remaining situations. System Restore is your clean fallback if a specific update broke things and the repair tools haven't helped. Keep Windows updated, avoid interrupting installs, and you're unlikely to see this problem again.


