Fix Start Menu Folders Lost After a Cumulative Update on Windows 11
🔍 WiseChecker

Fix Start Menu Folders Lost After a Cumulative Update on Windows 11

After installing a cumulative update on Windows 11, some users find that folders they created in the Start Menu have disappeared. This happens because the update process can reset or overwrite the Start Menu layout database. The folders are not deleted. Windows 11 stores them in a specific location that the update sometimes fails to read correctly. This article explains why the folders vanish and provides three methods to restore them without reinstalling the operating system.

Key Takeaways: Restore Start Menu Folders After a Windows 11 Cumulative Update

  • File Explorer > %AppData%\Microsoft\Windows\Start Menu\Programs: The default location where Windows 11 stores Start Menu folders and shortcuts. Check here first to confirm folders still exist.
  • Settings > Personalization > Start > Folders: Toggle system folder visibility for items like File Explorer, Settings, and Documents. This does not restore custom folders but controls what appears in the power user menu.
  • Windows PowerShell (Admin) > Get-AppxPackage -AllUsers | Select Name, PackageFullName: Use this command to verify the Start Menu experience package is intact. A missing or corrupted package can cause folder display issues.

ADVERTISEMENT

Why Cumulative Updates Cause Start Menu Folders to Disappear

Windows 11 cumulative updates replace system files and refresh the Start Menu layout cache. The cache is stored in a database at %LocalAppData%\TileDataLayer\Database. When the update runs, it may recreate this database from a default template, causing custom folders to appear missing.

The actual folder structure in %AppData%\Microsoft\Windows\Start Menu\Programs is rarely deleted. The update simply stops Windows 11 from reading the custom folders. This means the data is still on the drive. You can restore the folders by forcing the operating system to re-index the Start Menu or by manually refreshing the layout.

Another factor is the Start Menu experience package. Cumulative updates can corrupt or reset this package, which handles folder grouping in the All Apps list. If the package becomes unstable, folders collapse into a flat list of shortcuts.

Steps to Restore Missing Start Menu Folders

Use the methods below in order. Start with the simplest fix and proceed only if needed.

Method 1: Restart the Start Menu Process

  1. Open Task Manager
    Press Ctrl + Shift + Escape to open Task Manager. If you see the compact view, click More details at the bottom.
  2. Find Windows Explorer
    On the Processes tab, scroll down to Windows Explorer under the Windows processes section.
  3. Restart Windows Explorer
    Right-click Windows Explorer and select Restart. The taskbar and Start Menu will disappear briefly and then reappear. Check if your folders are back.

This restart forces the shell to reload the Start Menu layout from the database. It resolves cases where the database is intact but not being read correctly.

Method 2: Re-register the Start Menu Experience Package

  1. Open PowerShell as Administrator
    Right-click the Start button and select Windows Terminal (Admin). If you see Command Prompt, switch to PowerShell by clicking the down arrow or pressing Ctrl + Shift + 1.
  2. Run the re-registration command
    Type the following command and press Enter:
    Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  3. Wait for the process to finish
    PowerShell will display progress for each app package. Do not close the window until the prompt returns.
  4. Restart your computer
    Click Start > Power > Restart. After reboot, open the Start Menu and verify that folders are restored.

This method reinstalls all Windows app packages, including the Start Menu experience. It corrects package corruption that prevents folder display.

Method 3: Manually Recreate the Folder Structure

  1. Open the Start Menu folder location
    Press Win + R, type %AppData%\Microsoft\Windows\Start Menu\Programs, and press Enter.
  2. Check existing folders
    Look for folders you created. If they are present, skip to step 4. If they are missing, create new folders by right-clicking in the window, selecting New > Folder, and naming each folder.
  3. Move shortcuts into folders
    Drag shortcuts from the Programs folder into the appropriate folders. Shortcuts are .lnk files. You can also create new shortcuts by right-clicking an empty area, selecting New > Shortcut, and browsing to the target app.
  4. Restart the Start Menu
    Use Method 1 to restart Windows Explorer. The folders should now appear in the All Apps list.

Use this method when the database is corrupted beyond repair. It rebuilds the folder structure from scratch.

ADVERTISEMENT

If Start Menu Folders Still Do Not Appear After the Main Fix

Folders exist in File Explorer but not in the Start Menu

This indicates the Start Menu database is not syncing with the file system. Open File Explorer and navigate to %LocalAppData%\TileDataLayer\Database. Delete all files inside the Database folder. Windows 11 will recreate the database on the next restart. This forces a fresh index of the Programs folder.

Start Menu shows no folders at all after the update

The cumulative update may have removed the Start Menu folder shortcuts. Open File Explorer and go to %AppData%\Microsoft\Windows\Start Menu\Programs. If the folder is empty, check C:\ProgramData\Microsoft\Windows\Start Menu\Programs. Copy any missing folders from the ProgramData location to the AppData location. Then restart Windows Explorer.

System folders like Settings or File Explorer are missing from Start

Open Settings > Personalization > Start > Folders. Toggle each system folder you want to appear. This setting controls the power user menu and the pinned area, not the All Apps list. It is separate from custom folders.

Start Menu Folder Restoration Methods: Manual vs Automatic

Item Restart Windows Explorer Re-register Packages Manual Folder Creation
Description Reloads the shell process to refresh the Start Menu layout Reinstalls all Windows app packages to fix corruption Manually creates folder structure in the Programs directory
Time required 30 seconds 5-10 minutes Variable based on number of folders
Data risk None None Low if shortcuts are backed up
Effectiveness Resolves display-only issues Fixes package-level corruption Works when database is irreparable

After a cumulative update on Windows 11, Start Menu folders can disappear due to a refreshed layout cache or a corrupted experience package. You can restore them by restarting Windows Explorer, re-registering app packages, or manually recreating the folder structure. For persistent issues, delete the TileDataLayer database to force a fresh index. If you frequently organize apps into folders, consider exporting your Start Menu layout using the Export-StartLayout PowerShell cmdlet before future updates. This creates a backup file that you can import with Import-StartLayout after an update.

ADVERTISEMENT