How to download Windows 10 lock screen images from Spotlight to your computer

Windows Spotlight is a new feature on Windows 10, allowing users to download and use featured photos of the day from Bing Images to use as a lock screen, besides you can vote and comment on the photos.

In the upper right corner of the screen, you can show your liking by swiping up (like) or down on the image that is currently displayed. If you don't like it, it will disappear. If you like it, a similar image will appear next time.

This feature is quite cool, allowing you to change your lock screen wallpaper regularly and automatically, with the best pictures.

While using Spotlight, if you like some images and you want to use them on other computers, you can download and save them by doing the following.

How to download Windows 10 lock screen images from Spotlight to your computer

How to download images that appear on the Windows 10 lock screen

Find and Save Windows Spotlight Background Images Using PowerShell Script

1. Download the PowerShell script Find_Windows_Spotlight_images.ps1 .

Code:

$WindowsSpotlightFolder = "$env:USERPROFILE\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets"
$WindowsSpotlightImages = "$env:USERPROFILE\Desktop\SpotlightImages\"

if (Test-Path $WindowsSpotlightImages) {
    $FolderTimestamp = Get-Date (Get-Item $WindowsSpotlightImages).LastWriteTime -Format "yyyyMMdd.HHmmss"
    Rename-Item -Path $WindowsSpotlightImages -NewName ('SpotlightImages-' + $FolderTimestamp) -Force
    Remove-Variable FolderTimestamp   # Cleanup
}

New-Item -Path $WindowsSpotlightImages -ItemType Directory | Out-Null

Add-Type -AssemblyName System.Drawing
$ImagesToCopy = @()
$(Get-ChildItem -Path $WindowsSpotlightFolder).FullName | ForEach-Object { 
    $Image = [System.Drawing.Image]::Fromfile($_)
    $Dimensions = "$($Image.Width)x$($Image.Height)"

    If ($Dimensions -eq "1920x1080") {
        $ImagesToCopy += $_
    }
    $Image.Dispose()
}

$ImagesToCopy | Copy-Item -Destination $WindowsSpotlightImages 
$FileNumber = 0

Get-ChildItem -Path $WindowsSpotlightImages | Sort-Object LastWriteTime | 
foreach {
    $FileNumber += 1
    Rename-Item -Path $_.FullName -NewName ("1920x1080_" + $FileNumber.ToString("000") + '.jpg')
}

# Report
$NewSpotlgihtImages = Get-ChildItem -Path $WindowsSpotlightImages
if ($NewSpotlgihtImages) {
    Write-Host
    ($NewSpotlgihtImages).Name
    Write-Host `n($NewSpotlgihtImages).Count "new images were copied into $WindowsSpotlightImages`n" -ForegroundColor Green 
}
else { 
    Write-Host "`nNo new images were copied.`n" -ForegroundColor Red
    Remove-Item $WindowsSpotlightImages -Force
}

# Cleanup
Remove-Variable WindowsSpotlightFolder, WindowsSpotlightImages, ImagesToCopy, Image, Dimensions, FileNumber, NewSpotlgihtImages

2. Save the .ps1 file to the desktop.

3. Unblock .ps1 file.

4. Right-click or press and hold on the .ps1 file and click Run with PowerShell .

5. You will now have a SpotlightImages folder on your desktop with 1920 x 1080 Windows Spotlight images saved in it.

How to download Windows 10 lock screen images from Spotlight to your computer
SpotlightImages folder on the desktop with 1920 x 1080 Windows Spotlight images saved in it

Find and manually save Windows Spotlight background images

1. Copy and paste the folder location below into the File Explorer address bar and tap Enterto open the Assets folder .

Note : The location of the folder below is revealed in the LandscapeAssetPath string value of the registry key below.

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Lock Screen\Creative
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets

2. Select all the items in the Assets folder and copy them all to another folder (e.g. %UserProfile%\Pictures ) of your choice.

If you prefer, you can also right-click a file, click Open with , and select Windows Photo Viewer to see the Windows Spotlight images listed.

How to download Windows 10 lock screen images from Spotlight to your computer
Select all the items in the Assets folder and copy them all to another folder

3. Open the folder (for example, %UserProfile%\Pictures ) where you saved the items, click the File tab, click Open Windows PowerShell , and select Open Windows PowerShell again.

How to download Windows 10 lock screen images from Spotlight to your computer
Click the File tab, click Open Windows PowerShell twice

4. Type each of the following commands into PowerShell , pressing enter Enterafter each command and closing PowerShell when finished. This will rename all the items in the folder and add the .jpg file extension.

cmd
ren * * .jpg
How to download Windows 10 lock screen images from Spotlight to your computer
Enter commands into PowerShell

5. Add the Dimensions column to the folder (e.g. %UserProfile%\Pictures ) you saved the items to. Change the folder view to sort by Dimensions details in descending order.

6. You will notice that the Windows Spotlight images will be different sizes for PC and mobile devices. You can delete the ones you don't want to save.

How to download Windows 10 lock screen images from Spotlight to your computer
Windows Spotlight images will be different sizes for PC and mobile devices

7. This is a 1920 x 1080 Windows Spotlight PC image displayed in extra large icon view.

How to download Windows 10 lock screen images from Spotlight to your computer
This is a 1920 x 1080 Windows Spotlight PC image displayed in extra large icon view

If you don't want to use PowerShell, you can download any Rename Utility like Bulk Renaming Utility and install it.

After installation is complete, open the application, navigate to the folder, select all the files and then add the extension ".jpg".

If you are lazy to download manually, you can download the full Windows Spotlight package here.

See more articles below:

Good luck!

Leave a Comment

How to Use Windows 11 Quick Assist for Help

How to Use Windows 11 Quick Assist for Help

Discover how to use Windows 11 Quick Assist for seamless remote support. Learn step-by-step setup, troubleshooting, and tips to help friends or family with tech issues instantly.

Troubleshooting Windows 11 Dual Monitor Lag Fixes

Troubleshooting Windows 11 Dual Monitor Lag Fixes

Struggling with dual monitor lag on Windows 11? Discover proven troubleshooting fixes to eliminate stuttering, delays, and performance issues for seamless multi-monitor setups. Step-by-step guide inside.

How to Fix Windows 11 Startup Settings Blank Error

How to Fix Windows 11 Startup Settings Blank Error

Struggling with the frustrating Windows 11 "Startup Settings" blank error? Discover proven, step-by-step fixes to restore your boot options quickly and get your PC running smoothly again. No tech expertise needed!

How to Activate Windows 11 Enterprise with KMS

How to Activate Windows 11 Enterprise with KMS

Discover how to activate Windows 11 Enterprise using KMS effortlessly. This comprehensive guide covers everything from requirements to troubleshooting, ensuring seamless activation for your business needs.

How to Fix Windows 11 Kmode Exception Not Handled

How to Fix Windows 11 Kmode Exception Not Handled

Struggling with the dreaded KMODE EXCEPTION NOT HANDLED error on Windows 11? Discover proven, step-by-step fixes to resolve this blue screen nightmare quickly and get your PC running smoothly again. No tech expertise needed!

Troubleshooting Windows 11 Motherboard Driver Error Fix

Troubleshooting Windows 11 Motherboard Driver Error Fix

Struggling with Windows 11 "Motherboard" Driver Error? Discover proven troubleshooting steps to fix it fast and get your PC running smoothly again. Easy, step-by-step guide for beginners.

How to Fix Windows 11 Ping Spikes Over Wi-Fi Fixes

How to Fix Windows 11 Ping Spikes Over Wi-Fi Fixes

Struggling with ping spikes on Windows 11 over Wi-Fi? Discover proven fixes to stabilize your connection, reduce lag, and enjoy smooth gaming or streaming. Step-by-step solutions for instant results.

How to Recover Deleted Photos in Windows 11

How to Recover Deleted Photos in Windows 11

Accidentally deleted precious photos? Discover proven methods to recover deleted photos in Windows 11 effortlessly. Step-by-step guides, tools, and tips to restore your images safely.

How to Use Windows 11 Terminal Instead of CMD

How to Use Windows 11 Terminal Instead of CMD

Discover how to use Windows 11 Terminal instead of CMD for a modern, efficient command-line interface. Learn installation, setup, and tips to boost your productivity with tabs, themes, and more.

How to Activate Windows 11 Pro Without a Product Key

How to Activate Windows 11 Pro Without a Product Key

Discover safe, legitimate ways to activate Windows 11 Pro without a product key. Learn step-by-step methods using built-in tools and official Microsoft options to get your OS up and running smoothly. No risks, no hassle – just pure productivity.

Fixing Battery Drain During Hibernate in Windows 11

Fixing Battery Drain During Hibernate in Windows 11

Struggling with battery drain during hibernate in Windows 11? Discover expert fixes to preserve your laptop

How to Fix Windows 11 Input Lag for Valorant and CS2

How to Fix Windows 11 Input Lag for Valorant and CS2

Struggling with input lag in Windows 11 while playing Valorant or CS2? Discover proven, step-by-step fixes to restore smooth gameplay and boost your performance. Say goodbye to delays and hello to precision shots.

How to Fix Out of Memory Error in Microsoft Edge

How to Fix Out of Memory Error in Microsoft Edge

Struggling with the frustrating "Out of Memory" error in Microsoft Edge? Discover proven, step-by-step fixes to reclaim your browsing speed and stability. Updated with the latest tips for optimal performance.

How to Fix Windows 11 Google Drive Not Launching Fix

How to Fix Windows 11 Google Drive Not Launching Fix

Struggling with Google Drive not launching on Windows 11? Discover proven fixes to resolve the issue fast, from restarts to advanced troubleshooting. Get your cloud storage working seamlessly today!

How to Disable Gamebar Presence Writer for Performance

How to Disable Gamebar Presence Writer for Performance

Discover how to disable Game Bar Presence Writer on Windows to optimize gaming performance. Step-by-step guide to reduce lag, boost FPS, and enhance your setup for smoother gameplay. Essential tips for gamers in 2026.