Created
October 21, 2018 16:20
-
-
Save aklyk/b4d512b71a2e8595c2e9e00cf8a76333 to your computer and use it in GitHub Desktop.
Копирование картинок с экрана блокировки Windows 10
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
TITLE Копирование картинок с экрана блокировки Windows 10 | |
ECHO "Создаю каталог pictures_from_lockscreen в текущей папке" | |
MKDIR pictures_from_lockscreen | |
ECHO "Копирую картинки в pictures_from_lockscreen" | |
copy %LOCALAPPDATA%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*.* pictures_from_lockscreen | |
ECHO "Ставлю расширение..." | |
CD pictures_from_lockscreen | |
REN *.* *.jpg | |
ECHO "Готово." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment