Load next wallpaper vbs script: Difference between revisions

From roonics
Jump to navigation Jump to search
(Created page with "This script when run changes to the next desktop wallpaper. Tested on Windows 7 and Windows 10. Save the below as <filename>.vbs and when run if you have your pc set to cycl...")
 
No edit summary
Line 11: Line 11:
WshShell.SendKeys("n")
WshShell.SendKeys("n")
</pre>
</pre>
[[Category:Windows]]
[[Category:scripts]]
[[Category:vbs]]
[[Category:wallpaper]]

Revision as of 16:32, 5 January 2020

This script when run changes to the next desktop wallpaper.

Tested on Windows 7 and Windows 10.

Save the below as <filename>.vbs and when run if you have your pc set to cycle through wallpapers in a folder it will move to the next one.

set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys("^ ")
WshShell.SendKeys("+{F10}")
WshShell.SendKeys("n")