Personalization Find and Save Windows Spotlight Images in Windows 11


Windows_Spotlight-new_header.webp

This tutorial will show you how to find and save the Windows Spotlight images displayed on your desktop and/or lock screen background in Windows 11.

You can have Windows Spotlight as a theme and display different background images on your desktop and lock screen in Windows 11.

Windows Spotlight uses the Bing daily wallpaper for images, and stores them on your computer to reference and show on your desktop and/or lock screen background.

See also Bing Wallpaper Gallery:

If wanted, you can find and save these cached Windows Spotlight images as JPG files to use as you like.


Here's How:

1 Click/tap on the Download button below to download the file below.

Find_and_save_Windows_Spotlight_images.zip


(Contents of BAT file for reference)
Code:
@echo off
pushd %cd%

md "%UserProfile%\Desktop\WindowsSpotlightImages" 2>nul

setlocal enabledelayedexpansion

cd "%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\"
for /r %%f in (*) do (
  set dest="%UserProfile%\Desktop\WindowsSpotlightImages\%%~nxf.jpg"
  for %%A in ("%%f") do (
    if %%~zA GEQ 51200 (
      if not exist !dest! copy "%%f" !dest!
    )
  )
)

cd "C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\DesktopSpotlight\Assets\Images\"
for /r %%f in (*.jpg) do (
  set dest="%UserProfile%\Desktop\WindowsSpotlightImages\%%~nxf"
  if not exist !dest! copy "%%f" !dest!
)

cd "%LocalAppData%\Packages\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\LocalCache\Microsoft\IrisService\"
for /r %%f in (*) do (
  if "%%~xf"==".jpg" (
    set dest="%UserProfile%\Desktop\WindowsSpotlightImages\%%~nxf"
    if not exist !dest! copy "%%f" !dest!
  )
)

popd

2 Save the ZIP file to your desktop.

3 Unblock the ZIP file.

4 Extract the BAT file from the ZIP file.

4 Run the BAT file.

5 A WindowsSpotlightImages folder will be created on your desktop containing a copy of all cached Windows Spotlight images as JPG files. (see screenshot below)

You can hover over an image in the WindowsSpotlightImages folder to see its Dimensions (ex: "1920 x 1080").

You can rename these image files if wanted.


WindowsSpotlightImages_folder.png



That's it,
Shawn Brink


 

Attachments

Last edited:
I use the Dynamic Theme app, it will auto-download the daily Bing image and the Spotlight image to any folder.
In 4K too.
 

My Computer

System One

  • OS
    Windows 11 Pro 25H2 (RP channel)
    Computer type
    PC/Desktop
    Manufacturer/Model
    MSI
    CPU
    AMD Ryzen 7 9800X3D 8-core
    Motherboard
    MEG X870E Godlike
    Memory
    64GB Corsair Titanium 6000/CL30
    Graphics Card(s)
    MSI Suprim 5080 SOC
    Sound Card
    Soundblaster AE-9
    Monitor(s) Displays
    ASUS TUF Gaming VG289Q
    Screen Resolution
    3840x2160
    Hard Drives
    Samsung 9100 Pro 4TB (gen 5 x4, system drive/games)
    Samsung 990 Pro 2TB
    Samsung 980 Pro 2TB
    Samsung 870 Evo 4TB
    Samsung 870 Evo 2TB
    Samsung T9 4TB
    PSU
    Seasonic PX-2200
    Case
    Bequiet! Dark Base Pro 901
    Cooling
    Noctua NH-D15S Chromax black
    Keyboard
    Logitech G915 X (wired)
    Mouse
    Logitech G903 with PowerPlay charger
    Internet Speed
    900Mb/sec
    Browser
    Microsoft Edge
    Antivirus
    Windows Defender
Back
Top Bottom