Windows Spotlight shows a lock screen or desktop image you want to keep, but Windows doesn’t provide a “Save” button. The pictures are stored in a hidden cache, so you can copy and convert them into regular JPEG files.
Fix #1: Turn on Windows Spotlight
Windows must download at least one Spotlight picture before its cache contains anything useful.
- Press
Windows + Ito open Settings. - In Windows 11, select Personalization > Lock screen.
- Set Personalize your lock screen to Windows Spotlight.
- In Windows 10, select Personalization > Lock screen.
- Set Background to Windows Spotlight.
- Lock your computer with
Windows + L.
You should see a Spotlight picture on the lock screen. Windows may need an active internet connection and a little time to download its first image.
Fix #2: Open the Windows Spotlight cache
The cache contains files with long names and no extensions. Copy them elsewhere before changing anything.
- Press
Windows + Rto open Run. - Paste this path:
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
- Press
Enter.
File Explorer should open a folder containing extensionless files. If the folder is empty, keep Spotlight enabled and check again after Windows displays a few different pictures.
Fix #3: Copy the usable image files
The Assets folder also contains thumbnails and supporting files. Larger files are more likely to be full-resolution pictures.
- In File Explorer, select View > Show > Hidden items in Windows 11.
- In Windows 10, open View and select Hidden items.
- Select View > Details.
- Click the Size column to put the largest files first.
- Create a folder named Spotlight inside your Pictures folder.
- Select files larger than about 200 KB in the Assets folder.
- Press
Ctrl + C. - Open Pictures > Spotlight.
- Press
Ctrl + V.
Copy the files; don’t move them. Windows manages the original cache and can replace its contents whenever Spotlight downloads new pictures.
Fix #4: Add JPG extensions to the pictures
Adding .jpg makes File Explorer and photo apps recognize the copied files.
- Open Pictures > Spotlight.
- Select View > Show > File name extensions in Windows 11.
- In Windows 10, open View and select File name extensions.
- Right-click one copied file and select Rename.
- Add
.jpgto the end of its existing name. - Press
Enter.
- Open the renamed file in your default photo viewer.
The picture should now open and display a thumbnail in File Explorer.
Some converted files won’t be wallpapers. Delete thumbnails, icons, and portrait images from your copied folder without touching the original Assets folder.
Fix #5: Rename all copied files at once
Command Prompt can add .jpg to every extensionless file in the destination folder.
- Open Pictures > Spotlight in File Explorer.
- Click the address bar.
- Type
cmd. - Press
Enter. - Run this command:
ren * *.jpg
- Close Command Prompt.
- Return to File Explorer.
You should see previews for the valid images. This method is quick, but you’ll still need to remove small graphics and unwanted portrait versions.
Fix #6: Copy Spotlight images with PowerShell
PowerShell handles the folder creation, size filtering, copying, and renaming in one pass.
- Right-click Start.
- Select Terminal or Windows PowerShell, depending on which option appears.
- Paste this script:
$src = "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets"
$dst = "$env:USERPROFILE\Pictures\Spotlight"
New-Item -ItemType Directory -Path $dst -Force | Out-Null
Get-ChildItem $src |
Where-Object { $_.Length -gt 200KB } |
ForEach-Object {
$newName = Join-Path $dst ($_.Name + ".jpg")
Copy-Item $_.FullName $newName -Force
}
- Press
Enter.
- Open Pictures > Spotlight.
The folder should contain JPEG copies of the larger cached files. I’d use this method if you expect to collect new Spotlight pictures regularly.
Fix #7: Save Windows 11 desktop Spotlight images
Windows 11 can rotate Spotlight pictures on the desktop as well as the lock screen.
- Open Settings.
- Select Personalization > Background.
- Set Personalize your background to Windows Spotlight.
- Check the ContentDeliveryManager cache using Fix #2.
- If the current desktop picture isn’t there, open this folder in File Explorer:
C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\DesktopSpotlight\Assets\Images
- Copy the wanted image into Pictures > Spotlight.
The exact desktop cache contents can vary between Windows 11 builds. Stick with the ContentDeliveryManager folder if Windows blocks access to the system-owned Client.CBS directory.
Fix #8: Use a Spotlight-saving app
A Spotlight-saving app can watch the cache, add image extensions, and copy new pictures automatically. This addresses the repetitive part of the manual method.
- Open the Microsoft Store.
- Search for a Windows Spotlight saver or an app such as Dynamic Theme.
- Check that the app supports your Windows version and lets you choose a destination folder.
- Review its requested permissions before installing it.
- Set Pictures > Spotlight as the save location.
- Enable automatic saving if the app provides that option.
The old SpotBright app was built for this job, but check its current Store listing and compatibility before paying or installing it.
A maintained utility should filter small files and separate landscape pictures from portrait versions. That saves cleanup time on a 4K monitor.
Fix #9: Download a collected Spotlight album
A shared album avoids extracting anything from Windows, but it won’t necessarily contain the picture currently displayed on your computer.
- Open the Windows Spotlight album on Imgur.
- Select the image you want.
- Download the full-resolution copy to Pictures > Spotlight.
- Open the downloaded file and confirm its resolution before setting it as wallpaper.
Treat Spotlight pictures as personal-use wallpapers. Don’t redistribute the collection or sell the images as stock photography.
Set a saved picture as your wallpaper
- Open Pictures > Spotlight.
- Right-click the JPEG you want.
- Select Set as desktop background.
For a lock screen picture, open Settings > Personalization > Lock screen, change the background option to Picture, and select the saved file.
You can also copy the JPEGs to an external SSD or a cloud storage service for use on your other devices.
If Windows Spotlight is stuck on one image
- Open Settings > Personalization > Lock screen.
- Change the lock screen background to Picture.
- Press
Windows + Lonce. - Sign back in.
- Return to Lock screen settings.
- Select Windows Spotlight again.
Confirm that the computer has internet access. Privacy software, workplace policies, or firewall rules that block Microsoft content services can stop new pictures from downloading.
Identify where a Spotlight photo was taken
- Save the picture as a JPEG.
- Open Bing Visual Search in your browser.
- Upload the saved image.
- Review the landmark and visually similar image results.
The result should help identify a city, landscape, or building, though pictures of remote scenery may produce several possible matches.
Conclusion
Fix #6, the PowerShell method, usually solves the awkward Spotlight-saving workflow with the least repeated work. If the cache stays empty after re-enabling Spotlight, a network restriction or workplace policy is probably blocking the downloads. Check your Windows 11 updates and consider reinstalling Windows 11 without bloatware. You may also need to run Windows applications as administrator or set up Windows Hello on your local account.