Created
August 18, 2017 08:12
-
-
Save swapnilshrikhande/1bc1c855f3e30bdeee0dd06cbeb37cfc to your computer and use it in GitHub Desktop.
Update Windows 8 Wallpaper
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
@echo off | |
set imageBase="C:\Users\%USERNAME%\Pictures" | |
for /f "tokens=* delims= " %%G in ('dir /b/od "%imageBase%\*.jpg", | |
"%imageBase%\*.jpeg", | |
"%imageBase%\*.gif", | |
"%imageBase%\*.png"') DO ( set newest=%%G ) | |
FOR %%p IN ("%APPDATA%\Microsoft\Windows\Themes\CachedFiles\*") DO ( | |
Copy "%imageBase%\%newest%" %%p | |
) | |
EXIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment