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!

Sign up and earn $1000 a day ⋙

Leave a Comment

Summary of Touchpad operations on Windows 10, Windows 11

Summary of Touchpad operations on Windows 10, Windows 11

Windows 10 operating system has newer features than previous operating systems. So have the operations on Touchpad on Windows 10 changed?

Microsoft launches 2 new Windows 11 apps called People and File Search

Microsoft launches 2 new Windows 11 apps called People and File Search

In mid-2024, there were rumors that Microsoft was developing two new apps called People and File Search for Windows 11.

6 Best Multi-Monitor Brightness Control Software for Windows

6 Best Multi-Monitor Brightness Control Software for Windows

Third-party brightness control apps can help you adjust screen brightness on Windows.

Windows default Notepad application is so good that you wont need another application to replace it.

Windows default Notepad application is so good that you wont need another application to replace it.

Many people have been using the revamped version of Classic Notepad since its release and it has become an indispensable tool for jotting down ideas, organizing notes, and keeping daily notebooks.

Use SFC scannow command to fix Windows 10 system file errors

Use SFC scannow command to fix Windows 10 system file errors

If you notice that your computer frequently crashes or has problems during startup... then the cause is most likely due to Windows system files being corrupted, lost, or even changed when you installed a program or software on your computer.

How to access Safe Mode on Windows 11

How to access Safe Mode on Windows 11

There are different types of Safe Modes and different ways to access them. If you need to diagnose your PC, here's how to boot into Safe Mode in Windows 11 on a computer that's acting up or won't start.

How to safely delete sensitive files on Windows 11

How to safely delete sensitive files on Windows 11

When you tell Windows to delete a file, you usually want it gone forever. However, some data recovery applications and services can restore those files even if you think they've been completely deleted.

8 Ways to Fix Windows PIN Not Working in Windows 10/11

8 Ways to Fix Windows PIN Not Working in Windows 10/11

You may encounter an issue where Windows tells you your PIN is incorrect even though you entered it correctly.

Mozilla finds a new way to make itself the default browser of Windows 11

Mozilla finds a new way to make itself the default browser of Windows 11

Back in July 2024, Mozilla expressed its desire to extend Firefox support to Windows 7, 8, and 8.1, while other browsers like Chrome and Edge have abandoned versions of Microsoft's outdated operating system.

Microsoft still recommends 15-year-old backup solution for Windows 11 and 10 users

Microsoft still recommends 15-year-old backup solution for Windows 11 and 10 users

Modern versions of Windows still contain a lot of old code, and Microsoft generally tries to hide outdated parts, like the Control Panel, in favor of more modern components. However, there are some interesting exceptions.

What to do when Copilot is not found on Windows 11?

What to do when Copilot is not found on Windows 11?

According to Microsoft, Copilot is the future of Windows. But what if you want to try it but can't find Copilot? The following article will show you some tricks if Copilot doesn't appear on your Windows 11.

Using Disk Defragmenter in Windows

Using Disk Defragmenter in Windows

Over time, the files on your hard drive become fragmented and your computer slows down because it has to check multiple locations on the drive. To help your computer run more efficiently, you can use the built-in tools in Windows to defragment those files.

This hidden score tells you how well your Windows computer runs

This hidden score tells you how well your Windows computer runs

If you're wondering how well your Windows PC is performing, run the Windows Experience Index (WEI).

Microsoft Launches Windows 11 IoT Enterprise LTSC 2024 With Broader Device Support and Big Changes

Microsoft Launches Windows 11 IoT Enterprise LTSC 2024 With Broader Device Support and Big Changes

Today, Microsoft officially launched another version of the Windows 11 operating system.

Top 5 Best Encryption Software 2025

Top 5 Best Encryption Software 2025

On your PC, a lot of your personal information can be accessed without permission. That's because Windows data is stored publicly on the drive and is not encrypted or protected by encryption software, so anyone can access your confidential and private information.