Skip to content

Instantly share code, notes, and snippets.

@porteusconf
Last active December 13, 2019 20:34
Show Gist options
  • Save porteusconf/67febce3ce79aabffa3a46610b02979d to your computer and use it in GitHub Desktop.
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
@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