Quick fix: Windows 11 removed Live Tiles entirely (replaced with widgets and pinned apps). To reset Start menu / pinned apps layout: open Settings → Personalization → Start → Reset to default button isn’t there. Manual: unpin all from Start, re-pin only what you want. Or PowerShell: Get-StartApps | Format-Table Name, AppID to see and customize.
Live Tiles ended with Windows 11. The Start menu now shows static app pins. To reset the layout: unpin existing items, re-pin from All apps. For Widgets panel (replacing Live Tiles partially), Settings has its own customization.
Affects: Windows 11.
Fix time: ~10 minutes.
What causes this need
Windows 11’s Start menu has Pinned apps section (replacing Live Tiles from Win10). Need to reset:
- Too many pinned apps; want to start fresh.
- Pinned apps disorganized.
- Migrating from Win10 brought over Live Tile pins that don’t fit Win11.
- Want to remove default Microsoft-recommended apps.
- Multi-user PC; new user setup.
Method 1: Unpin all and re-pin manually
The standard route.
- Open Start menu.
- Right-click each pinned app → Unpin from Start. Repeat for each.
- Click All apps (top right) to see full app list.
- Right-click apps you want → Pin to Start.
- Drag pinned apps to arrange.
- For folders: drag one app onto another to create folder. Name folder.
- For Microsoft Store apps: Start menu shows them when installed; right-click → Pin to Start.
- For Win32 apps: same. Pin to Start works.
- For chronic mess: use PowerShell to bulk-manage (Method 3).
This is the manual reset.
Method 2: Apply a default layout via XML
For consistent layout across users / PCs.
- Microsoft provides Export-StartLayout and Import-StartLayout for managed deployment.
- Open PowerShell as Admin.
- Export current layout:
Export-StartLayout -Path "C:\Layout.xml" - Edit XML to define desired pins.
- Apply to new users:
Import-StartLayout -LayoutPath "C:\Layout.xml" -MountPath "C:\" - For Windows 11: layout uses .json instead of .xml in some builds. Check learn.microsoft.com for current syntax.
- For corporate Intune deployment: Configuration Profile with Start menu layout.
- For per-user reset: delete
%LOCALAPPDATA%\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\TempState\start.bin+ restart Explorer.
This is the managed deployment.
Method 3: Reset Start menu via PowerShell registry
For nuclear reset.
- Backup first:
reg export "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" C:\backup.reg. - Reset Start menu layout:
Remove-Item -Path "$env:LOCALAPPDATA\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\TempState\*" -Force Stop-Process -Name StartMenuExperienceHost -Force Stop-Process -Name explorer -Force Start-Process explorer - Start menu shows default layout (Microsoft’s default Win11 pins).
- Now customize: pin only apps you want.
- For Widgets reset: Widgets has its own Customize button (top right of Widgets panel).
- For Taskbar (related): Settings → Personalization → Taskbar → Taskbar behaviors → reset.
- For full personalization reset: Settings → System → Recovery → Reset PC → Keep my files. Comprehensive.
This is the nuclear reset.
How to verify the fix worked
- Start menu → Pinned section shows your chosen apps only.
- No leftover Live Tiles from Windows 10.
- Layout matches your preference.
- Layout persists across reboots.
If none of these work
If layout doesn’t reset: Group Policy: corporate-managed PCs may enforce specific layout. For OEM defaults restoring: vendor utilities (Lenovo Vantage, ASUS Armoury) may re-pin their apps. Disable. For pinned apps reappearing: Settings → Privacy & security → General → Show me suggested content in the Settings app. Disable. For Microsoft Store re-pinning: separate Microsoft Store account setting. For chronic mess: clean local user profile, create new, transfer files. For Insider builds: Start menu redesign in progress. Layout may shift. For Live Tiles desire: Live Tiles removed in Win11. Use Widgets instead. Old apps that had Live Tiles now show as static.
Bottom line: Right-click each pin → Unpin from Start. Re-pin from All apps. PowerShell delete start.bin + restart Explorer for nuclear reset. Live Tiles gone in Win11; use Widgets for dynamic content.