The CMD file requires the creation of sub-folders c:\tmp\pics (or change it below to someplace else). I use a temporary folder because the command will copy some silly icon tiles for the Start Menu that you won't want and will never change. I start Windows Exporer on the specific folder and I SORT IT BE LARGEST to smallest because the smaller files under 150 kilobytes will be those miscellaneous files. The largest ones are the beautiful wallpaper pictures.
@echo off
c:
cd \
mkdir tmp
cd tmp
mkdir pics
cd c:\tmp\pics
echo y | del *.*
copy C:\users\kevin\appdata\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets c:\tmp\pics
ren * *.jpg
explorer.exe c:\tmp\pics
@echo off
c:
cd \
mkdir tmp
cd tmp
mkdir pics
cd c:\tmp\pics
echo y | del *.*
copy C:\users\kevin\appdata\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets c:\tmp\pics
ren * *.jpg
explorer.exe c:\tmp\pics
No comments:
Post a Comment