Skip to content
Follow
Windows

How to Save Windows Spotlight Images in Windows 11

Richard
Written by
Richard
Feb 3, 2023 Updated Jul 11, 2026 3 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.

Windows Spotlight downloads images, but these images store in a temporary, hidden folder, making direct access difficult. You might want to save a specific Windows Spotlight image for your personal wallpaper or to share.

The Spotlight image saving 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 save Windows Spotlight images manually by finding the images in a hidden folder on your PC. Open File Explorer and paste this exact path into the address bar: 📂%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets. You will see a bunch of files without names; copy these files to a new folder and add .jpg to the end of each file name to see the pictures.

  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. To do this, open PowerShell as an administrator and 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\*” “$HOME\Pictures\Spotlight”. This command makes a new folder and puts all the images there.

  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

If a file does not open as an image, delete that file. These files are often small icons or system files, not the Windows Spotlight images you seek. Windows updates the cache frequently, so check back every few days for new Spotlight 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 Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Change Your Desktop Background in Windows 11
Windows How to Change Your Desktop Background in Windows 11
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 *