I was thinking about causing my desktop background to change using a .bat at set times. (i.e. 6:00 AM to 6:00 PM have a background and then from 6:00 PM to 6:00 AM have a different set background)
I thought something along this line would work but I've never programmed specifically just on the dos before so I don't know if it would or not.
IF Time <= 12:00:00.00 THEN
reg add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "C:\Users\Pictures\Pic1.jpg" /f
Else
reg add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "C:\Users\Pictures\Pic2.jpg" /f
I'm a complete newbie to programming so please explain anything you create. Thank you!