Skip to content
Follow
Windows

How to Save Windows Spotlight Images in Windows 11

Richard
Written by
Richard
Feb 3, 2023 Updated Jun 19, 2026 2 min read
How to Save Windows Spotlight Images in Windows 11
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.

⚡ Quick Answer

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.

  1. Open File Explorer and paste this path into the address bar: %LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
  2. You will see a list of files with no extensions.
  3. Copy these files to a new folder on your desktop.
  4. Rename each file by adding .jpg to 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.

  1. Open PowerShell as an administrator.
  2. 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"
  3. Run this command to rename them: Get-ChildItem -Path "$HOME\Pictures\Spotlight" | Rename-Item -NewName { $_.Name + ".jpg" }
Windows Spotlight images on Windows command prompt
Windows Spotlight images on Windows command prompt

Comparison of Extraction Methods

MethodDifficultySpeed
ManualEasySlow
PowerShellIntermediateFast
Third-Party ToolsEasyFast

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.

Windows Spotlight images on Windows
Windows Spotlight images on Windows

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?

Tags: #Windows 11
Was this helpful?
Richard

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.

📚 Related Tutorials

How to Enable or Disable Windows Spotlight in Windows 11
Windows How to Enable or Disable Windows Spotlight in Windows 11
How to Change Your Desktop Background in Windows 11
Windows How to Change Your Desktop Background in Windows 11
How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Find the Pictures Folder in Windows 11
Windows How to Find the Pictures Folder in Windows 11

1 Comment

Leave a Comment

Your email address will not be published. Required fields are marked *