Quick fix: Open Settings → Personalization → Lock screen. Under Personalize your lock screen: pick something other than Windows spotlight, click Apply, then switch back to Windows spotlight. This re-initializes. If still stuck: delete %LOCALAPPDATA%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets folder. Reboot. Spotlight resets and downloads fresh images.
Windows Spotlight rotates daily lock screen images from Microsoft. Sometimes stops updating — same image for weeks. Cause: cache corruption, network restriction, or content delivery state issue. Reset re-triggers download.
Affects: Windows 11.
Fix time: ~10 minutes.
What causes this
Windows Spotlight downloads images via Content Delivery Manager. Stops updating when:
- Cache corrupted; can’t apply new images.
- Network restricted (metered, proxy, firewall).
- Content Delivery Manager state stuck.
- Microsoft account region change.
- Disk space full at cache location.
Method 1: Toggle Personalization to reset
The standard route.
- Open Settings → Personalization → Lock screen.
- Under Personalize your lock screen:
- Pick Picture. Pick any image.
- Click somewhere else briefly.
- Switch back to Windows spotlight.
- This triggers Content Delivery Manager to re-initialize.
- Wait a few minutes. Lock screen should refresh.
- Lock PC (Win+L) to see current Spotlight image.
- For chronic stuck: continue to Method 2.
This is the simple reset.
Method 2: Clear Spotlight cache
For deeper reset.
- Open PowerShell as the current user (not Admin needed for user-level cache).
- Stop Content Delivery Manager:
Get-Process explorer | Stop-Process -Force(Explorer auto-restarts.)
- Delete Assets folder:
Remove-Item -Path "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets" -Recurse -Force -ErrorAction SilentlyContinue - Also delete Settings cache:
Remove-Item -Path "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\Settings\*" -Recurse -Force - Reboot.
- Settings → Personalization → Lock screen → pick Windows spotlight again.
- Wait few minutes. Fresh images download.
- Test by locking screen (Win+L).
This is the cache reset.
Method 3: Re-register Content Delivery Manager
For service-level repair.
- Open PowerShell as Admin.
- Re-register the Content Delivery Manager package:
Get-AppxPackage -allusers *ContentDeliveryManager* | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode} - Reboot.
- Settings → Personalization → Lock screen → Windows spotlight.
- Wait. Images should resume.
- For verifying network:
Test-NetConnection -ComputerName "g.live.com" -Port 443in PowerShell. Should succeed. - For proxy users: ensure proxy allows g.live.com and arc.msn.com (Spotlight endpoints).
- For metered connection: Settings → Network & internet → toggle Metered off.
- For firewall: ensure outbound for Content Delivery Manager not blocked.
This is the re-register route.
How to verify the fix worked
- Lock screen (Win+L) shows a different image than before.
- Day later: image changes again.
- Right-click lock screen image → I like it! / Not a fan options visible (Spotlight active).
- Cache folder regenerates with new files.
If none of these work
If still stuck: Group Policy blocking Spotlight: gpedit.msc → Computer Configuration → Administrative Templates → Windows Components → Cloud Content → Turn off Microsoft consumer experiences. Set to Not Configured. Or registry: HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent → values blocking. For corporate-managed PCs: IT may block Spotlight. For region-specific content: ensure account region is recognized; Spotlight content varies by region. For Insider builds: Spotlight may have rolling issues. For chronic image not updating: Settings → Personalization → Lock screen → pick Picture or Slideshow as alternative. Use Bing daily image scripts as substitute. For network restrictions: Spotlight needs full HTTPS access to Microsoft CDN.
Bottom line: Toggle Personalization away from Spotlight and back. If persistent: delete %LOCALAPPDATA%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets + reboot + re-pick Spotlight.