Created
November 7, 2022 14:51
-
-
Save IamFaizanKhalid/65c7c4dca74d3fd3949aef77298533e6 to your computer and use it in GitHub Desktop.
Windows script to save wallpapers from Windows Spotlight to Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo off | |
title Windows Spotlight | |
cls | |
echo This will copy all wallpapers from %userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\ to the folder "wallpaper" on the Desktop | |
pause | |
cd %userprofile%\Desktop | |
md wallpaper | |
cd wallpaper | |
rem md %date:/=% | |
rem cd %date:/=% | |
copy "%userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*.*" *.jpg | |
cls | |
echo Done... | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment