Last active
December 13, 2019 20:34
-
-
Save porteusconf/67febce3ce79aabffa3a46610b02979d to your computer and use it in GitHub Desktop.
Opens win10 hidden folder with lockscreen pic, copies to c:\temp\pics, and adds .jpg See https://www.laptopmag.com/articles/find-windows-10-lock-screen-pictures
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 | |
echo " Opens win10 hidden folder with lockscreen pic, copies to c:\temp\pics, and adds .jpg " | |
echo " See https://www.laptopmag.com/articles/find-windows-10-lock-screen-pictures" | |
mkdir c:\temp | |
mkdir c:\temp\pics | |
c: | |
cd %USERPROFILE%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets | |
echo "Will open folder with current lock-screen pics. Sort by size and copy big ones to c:\temp\pics folder" | |
start c:\temp\pics | |
start . | |
pause | |
rename c:\temp\pics\* *.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment