2021-11-02

Windows CMD file to grab those cute little wallpaper pictures from windows so you can decide if you want to keep a copy

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

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...