Windows 10 как достать картинки с экрана блокировки / Windows 10 how to get pictures from the lock screen..

a1st
3 min readAug 10, 2017

--

Те самые, которые появляются когда вы блокируете компьютер. Иногда там появляются действительно отличные изображения которые хочется сохранить.

  • нажимаем на клавиатуре сочетание клавиш win + r, в появившемся окне вводим:
%AppData% 
  • нажимаем enter
  • откроется проводник, перейдём на один каталог вверх, для этого надо нажать в проводнике кнопку ↑ или сочетание клавиш alt + ↑, далее переходим по следующему пути:
\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
  • внутри папки будут файлы, это изображения нажимаем сочетание клавиш ctrl+a и ctrl+c (так мы скопировали их все)
  • теперь нужно обязательно создать или зайти в уже имеющуюся папку для картинок\обоев, и нажать ctrl+v (теперь картинки в нашей папке), сразу скопируйте путь папки с файлами
  • осталось добавить к ним расширение .jpg, быстрее всего сделать это через командную строку, для этого нажимаем сочетание клавиш win+r (как в самом начале) -> вводим cmd и нажимаем кнопку “открыть”
  • делее введите: cd и вставьте путь к папке должно выглядеть примерно так
cd C:\your_walpaper_folder
  • нажмите enter
  • теперь просто скопируйте и вставьте следующий код:
for /R %x in (*) do ren “%x” *.jpg
  • нажмите enter (этот код добавляет всем файлам в папке расширение .jpg)
  • в папке ещё остался мусор ввиде меких файлов, удалим его с помощью этого кода:
forfiles /S /M *.jpg /C "cmd /c if @fsize LEQ 200000 del @file
  • так же вставьте его и нажмите enter, удаляться все файлы размером меньше 200 кб.

Готово. Можете пользоваться. На этом всё.

Мой канал телеграм: @ihaiku

ENG.

The ones that appear when you lock the computer.
Sometimes there are really great images that you want to keep.

This requires a few simple steps:

  • Press the shortcut win + r, in the window that appears, enter:% AppData% press enter
  • Open the explorer, go to one directory up, to do this, click the ↑ button or the alt + ↑ key combination in the explorer, then go to the
\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
  • Inside the folder there are files, these are the images, press the shortcut ctrl + a and ctrl + c (copied all images)
  • Now you need to create or go to the existing folder for pictures \ wallpapers, and press ctrl + v (now the pictures in our folder), copy path to the folder with the files
  • It remains to add the .jpg extension to them, the quickest way to do this is via the command line(щf course you can add the extension manually), for this press shortcut win + r (as in the beginning) -> input: cmd, and press the “open” button.
  • Input: cd and paste the path to the folder, should look something like this:
cd C: \ your_walpaper_folder
  • press enter
  • Now just copy and paste the following code:
for / R% x in (*) do ren "% x" * .jpg
  • press enter, this code adds all the files in the folder extension .jpg
  • The folder still contains garbage in the form of small files, delete it with this code:
forfiles / S / M * .jpg / C "cmd / c if @fsize LEQ 200000 del @file
  • just paste it and press enter, deletes all Files smaller than 200 kb

Done. You can use it. That’s all.

Tags: windows 10, how to get pictures from the lock screen, cmd adds all the files in the folder extension .jpg, cmd deletes all Files smaller than 200 kb, cmd добавить всем файлам в папке расширение .jpg, cmd удалить все файлы размером меньше 200 кб.

--

--