How to Save Windows Spotlight Images in Windows 11
You can save Windows Spotlight images in Windows 11 by locating them in a hidden system folder and copying them to a new location.
Windows Spotlight is a feature that automatically downloads beautiful, high-resolution images from Microsoft for your lock screen and desktop background. These images are sourced from various locations and often feature stunning photography.
While Windows Spotlight downloads these images, they are stored in a temporary, obfuscated folder, making them difficult to access directly. You might want to save a particular image you love for your personal wallpaper or to share with others.
This process involves navigating to the specific AppData folder where Spotlight stores its assets, typically found within 📁C:\Users\[YourUsername]\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy. By following these steps, you will create a dedicated folder to store all your favorite Spotlight images.
Access the hidden Assets folder at 📂%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets. Copy the files from this folder to a new location and rename each one by adding .jpg to the end of its filename.
Manual Extraction Method
You can manually save Windows Spotlight images by finding them in a hidden folder on your PC.
- Open File Explorer and paste this path into the address bar:
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets - You will see a list of files with no extensions.
- Copy these files to a new folder on your desktop.
- Rename each file by adding
.jpgto the end of the filename.
Automated Extraction with PowerShell
Saving Windows Spotlight images is much faster using a simple PowerShell script that grabs and sorts them for you.
- Open PowerShell as an administrator.
- Run the following command to create a folder and copy the files:
New-Item -Path "$HOME\Pictures\Spotlight" -ItemType Directory; Copy-Item -Path "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*" -Destination "$HOME\Pictures\Spotlight" - Run this command to rename them:
Get-ChildItem -Path "$HOME\Pictures\Spotlight" | Rename-Item -NewName { $_.Name + ".jpg" }

Comparison of Extraction Methods
| Method | Difficulty | Speed |
|---|---|---|
| Manual | Easy | Slow |
| PowerShell | Intermediate | Fast |
| Third-Party Tools | Easy | Fast |
Troubleshooting and Limitations
Sometimes you may find files that are not images. These are often small icons or system files. If a file doesn’t open as an image, delete it. Windows updates the cache frequently, so check back every few days for new photos.

Summary
You can save your favorite Windows Spotlight images by finding them in a hidden folder or using a quick PowerShell script.
Are Windows Spotlight images free to use for personal projects?
Windows Spotlight images are free for you to use as your desktop background on your own computer.
Why are some Spotlight images saved in portrait orientation?
Some Windows Spotlight images are saved in portrait style because they’re meant for devices like phones or tablets that are held upright.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
[…] Windows uses this feature so you can set their desktop background with Spotlight collections, save Spotlight images for use, and see new photos on your […]