Skip to content

Instantly share code, notes, and snippets.

@swapnilshrikhande
Created August 18, 2017 08:12
Show Gist options
  • Save swapnilshrikhande/1bc1c855f3e30bdeee0dd06cbeb37cfc to your computer and use it in GitHub Desktop.
Save swapnilshrikhande/1bc1c855f3e30bdeee0dd06cbeb37cfc to your computer and use it in GitHub Desktop.
Update Windows 8 Wallpaper
@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