Windows 10: How to save Windows 10’s lock screen Spotlight images

Discus and support How to save Windows 10’s lock screen Spotlight images in Windows 10 News to solve the problem; Windows 10 comes with a Spotlight feature that displays different background images crawled from the web on the lock screen. It also offers suggestions... Discussion in 'Windows 10 News' started by WinLatest, Oct 21, 2018.

  1. WinLatest New Member

    How to save Windows 10’s lock screen Spotlight images


    Windows 10 comes with a Spotlight feature that displays different background images crawled from the web on the lock screen. It also offers suggestions on the lock screen and Spotlight wallpapers are available in all editions of Windows 10.

    In this guide, we show you how to download Windows Spotlight on Windows 10 and save it locally. It’s important to note that this tricks in Windows 10 October 2018 Update and prior.

    Enable Windows Spotlight


    Spotlight feature is enabled on almost all PCs including the ones that are not activated. If Windows Spotlight is disabled on your PC and you are not seeing the images on the lock screen, here’s how to enable Spotlight feature.

    • Open Settings via Start menu or Cortana search.
    • Navigate to Personalization and tap on ‘Lock screen’ option.
    • Under background option, select ‘Spotlight’.
    • Wait for some minutes and the lock screen would start showing the spotlight images from Bing.

    The feature will display images on the lock screen each day and new images are downloaded an on ongoing basis.

    How to save Windows Spotlight images locally

    • Open Windows Run via Cortana/Search for Windows key + R shortcut.

    How to save Windows 10’s lock screen Spotlight images Windows-Run.jpg

    • In Windows run, type the following command and press enter or tap ‘OK’.

    %localappdata%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets

    • This command will open a folder where all Spotlight images are cached.

    How to save Windows 10’s lock screen Spotlight images Windows-Spotlight-folder.jpg

    • Right-click (ignore the warning) and copy/paste all the files into a new folder named ‘Spotlight’ under Pictures. The file location should be Pictures > Spotlight.

    How to save Windows 10’s lock screen Spotlight images Spotlight-folder.jpg

    • You are now supposed to rename all the files with the JPG extension. You can rename all files together with the Command Prompt.

    How to save Windows 10’s lock screen Spotlight images CMD-Spotlight.jpg

    • Open Command Prompt and run the below command:

    Ren C:\Users\yourusername\Pictures\Spotlight\*.* *.jpg

    • After running this command, all the files would convert into jpg and you can now view the spotlight images in Pictures > Spotlight folder. You will notice that some converted files are not the spotlight images but you can simply delete all unusable images.

    Spotlight images are hand picked by Microsoft. The Spotlight enabled lockscreen provide useful tips and as well as app suggestions, and it’s designed to help people get the most out of their Windows experience.

    How to save Windows 10’s lock screen Spotlight images windows-10-acrylic-login.jpg

    In other news, Windows 10’s 2019 update will bring Fluent Design to the login screen but Spotlight feature will continue to exist. The Fluent Design login screen would show up after Windows displays Spotlight image.

    The post How to save Windows 10’s lock screen Spotlight images appeared first on Windows Latest

    Weiterlesen...
     
    WinLatest, Oct 21, 2018
    #1

  2. How to fix problems with lock screen images (Windows Spotlight)

    This Windows 10 Tip
    highlights the Windows Spotlight setting, which automatically uploads beautiful images of scenery daily from around the world for the background on the lock screen.

    What steps should I try if I’m having trouble with Windows Spotlight?
    For example, what should I do if:

    • The Windows Spotlight image doesn’t appear on the lock screen.
    • The Windows Spotlight image doesn’t appear on the sign-in screen.
    • The Windows Spotlight option doesn’t appear in my lock screen settings.
    • The Windows Spotlight image isn’t changing. (It shows the same image every day.)
     
    Meliton Dec, Oct 21, 2018
    #2
  3. Solaris17 Win User
    Windows spotlight images (Lock screen)

    This is really dumb, but if you are like me and use spotlight for your windows lock screen images, I actually tend to like some of them alot. They rotate it seems every few days but it doesn't seem to delete them as often as it gets new ones.

    With that said I couldnt find anything similar online so I made a script that would pull the files from the folder buried in app data that keeps the files. They dont have an extension normally so I append the JPG extension too them.

    I create a folder on your desktop called spotlight and copy the files too it then run the conversion.

    I didn't spend forever on this so be nice but otherwise;

    Enjoy

    Code for the crazies:
    Spoiler Code: @Echo off title Spotlight Image Converter cls :checkPrivileges :: Check for Admin by accessing protected stuff. This calls net(#).exe and can stall if we don't kill it later. NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto menu) else ( goto getPrivileges ) :getPrivileges :: Write vbs in temp to call batch as admin. if '%1'=='ELEV' (shift & goto menu) for /f "delims=: tokens=*" %%A in ('findstr /b ::- "%~f0"') do @Echo(%%A setlocal DisableDelayedExpansion set "batchPath=%~0" setlocal EnableDelayedExpansion Echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs" Echo UAC.ShellExecute "!batchPath!", "ELEV", "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs" "%temp%\OEgetPrivileges.vbs" exit /B :menu Echo Windows 10 Lock screen image converter Echo. Echo Brought to you by Solaris17 of TPU Echo. Echo This will make a folder on your desktop called "Spotlight" Echo. Echo It will copy the lockscreen images to the folder then convert them to JPEG format. Echo. Echo Let me know when you are ready. Echo. Pause goto copy :copy @echo off CLS Echo. Echo Converting and copy in progress... Echo. mkdir %userprofile%\Desktop\Spotlight > nul 2>&1 timeout 5 >nul robocopy %userprofile%\appdata\local\packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\ %userprofile%\Desktop\Spotlight /copyall /E > nul 2>&1 ren %userprofile%\Desktop\Spotlight\* *.jpg > nul 2>&1 Echo Done!! Echo. pause[/quote]
     
    Solaris17, Oct 21, 2018
    #3
  4. Solaris17 Win User

    How to save Windows 10’s lock screen Spotlight images

    Windows spotlight images (Lock screen)

    I updated this to fix an issue where images already in the folder would be swapped back to no extension making them unreadable again.

    CODE:
    Spoiler Code: @Echo off title Spotlight Image Converter v2 cls :checkPrivileges :: Check for Admin by accessing protected stuff. This calls net(#).exe and can stall if we don't kill it later. NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto menu) else ( goto getPrivileges ) :getPrivileges :: Write vbs in temp to call batch as admin. if '%1'=='ELEV' (shift & goto menu) for /f "delims=: tokens=*" %%A in ('findstr /b ::- "%~f0"') do @Echo(%%A setlocal DisableDelayedExpansion set "batchPath=%~0" setlocal EnableDelayedExpansion Echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs" Echo UAC.ShellExecute "!batchPath!", "ELEV", "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs" "%temp%\OEgetPrivileges.vbs" exit /B :menu Echo Windows 10 Lock screen image converter Echo. Echo Brought to you by Solaris17 of TPU Echo. Echo This will make a folder on your desktop called "Spotlight" Echo. Echo It will copy the lockscreen images to the folder then convert them to JPEG format. Echo. Echo Let me know when you are ready. Echo. Pause goto copy :copy @echo off CLS Echo. Echo Converting and copy in progress... Echo. mkdir "%userprofile%\Desktop\Spotlight" > nul 2>&1 mkdir "%userprofile%\Desktop\Spotlight\Converted" > nul 2>&1 timeout 5 >nul robocopy %userprofile%\appdata\local\packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\ "%userprofile%\Desktop\Spotlight" /copyall /E > nul 2>&1 ren %userprofile%\Desktop\Spotlight\* *.jpg > nul 2>&1 move "%userprofile%\Desktop\Spotlight\*.jpg" "%userprofile%\Desktop\Spotlight\Converted" > nul 2>&1 Echo Done!! Echo. pause[/quote]
     
    Solaris17, Oct 21, 2018
    #4
Thema:

How to save Windows 10’s lock screen Spotlight images

Loading...
  1. How to save Windows 10’s lock screen Spotlight images - Similar Threads - save 10’s lock

  2. Black screen on lock screen with no image Corrupted Windows Spotlight

    in Windows 10 Gaming
    Black screen on lock screen with no image Corrupted Windows Spotlight: Whenever I turn on my laptop with Windows 11, I get a blank screen. The display is responsive. I have control over the cursor. There is no issue to log in. BUT The only issue is that when I turn on my laptop, I get a black screen instead of the Microsoft Windows Spotlight...
  3. Black screen on lock screen with no image Corrupted Windows Spotlight

    in Windows 10 Software and Apps
    Black screen on lock screen with no image Corrupted Windows Spotlight: Whenever I turn on my laptop with Windows 11, I get a blank screen. The display is responsive. I have control over the cursor. There is no issue to log in. BUT The only issue is that when I turn on my laptop, I get a black screen instead of the Microsoft Windows Spotlight...
  4. How To Save Daily Windows 10 Spotlight/Lock Screen Images - Daily Photo Saver

    in Windows 10 Customization
    How To Save Daily Windows 10 Spotlight/Lock Screen Images - Daily Photo Saver: I was curious if there was a way to save the daily Microsoft Windows Spotlight/lock screen images to use as a wallpaper.I saw this very helpful post, but wanted to take it a step further.I created a powershell script which copies the daily lock screen images into a desired...
  5. Windows 10 Lock Screen Spotlight Image

    in Windows 10 Customization
    Windows 10 Lock Screen Spotlight Image: Dear Sir, I found some descriptive mistake in northern coast of Madagascar. Original text "This wide bay on the northern coast of Madagascar is a breeding ground for thousands of humpback whaleswho winter in the warmwaters of the Indian Ocean. The coral reefs, estuaries,...
  6. About saving lock screen image of spotlight

    in Windows 10 Customization
    About saving lock screen image of spotlight: I like my windows 10 lock screen wallpaper very much. So.i want to save the background image of windows spotlight as image format. So how i do this...
  7. Lock screen spotlight but for own images

    in Windows 10 Ask Insider
    Lock screen spotlight but for own images: Hey guys, does anybody know if it is possible to have a daily rotation of lock screen images like the Windows spotlight but from a list I specify? Deadendthrills has an amazing black and white GTA IV images collection and I would love to have them on rotation if anybody is...
  8. Windows 10's Spotlight Lock Screen Pictures

    in Windows 10 Customization
    Windows 10's Spotlight Lock Screen Pictures: How to Find Windows 10's Spotlight Lock Screen Pictures? https://answers.microsoft.com/en-us/windows/forum/all/windows-10s-spotlight-lock-screen-pictures/c1a4c4fd-9d01-4807-b302-cfdbdbb88501
  9. Windows 10 Spotlight Image and Slideshow will not change in Lock Screen

    in Windows 10 Customization
    Windows 10 Spotlight Image and Slideshow will not change in Lock Screen: The Windows Spotlight and Slideshow features will not work in Windows 10. All group policies are set to allow these features. https://answers.microsoft.com/en-us/windows/forum/all/windows-10-spotlight-image-and-slideshow-will-not/810e2f5d-c652-4d9c-9ecf-22925f2c2693
  10. Windows spotlight lock screen image location

    in Windows 10 Customization
    Windows spotlight lock screen image location: Windows spotlight under the lock screen settings set a picture for me that I'd like to make permanent. Unfortunately it will change when the new windows spotlight picture is sent out. Does anybody know the save location of this image file so I can set it as my permanent lock...