Saved Bookmarks
| 1. |
Solve : background? |
|
Answer» Is there any way to change the DESKTOP background with batch vbs autoit or anything ealse? any help at all :-? :-?i am sure you can find some vbscript SOLUTIONS by googling for it. below is what i GOT from GOOGLE. you can try it out.. Code: [Select]Dim WshShell Set WshShell = WScript.CreateObject("Wscript.Shell") WshShell.RegWrite "HKCU\Control Panel\Desktop\Wallpaper", mybitmap.bmp WshShell.Run "%windir%\System32\RUNDLL32.EXE user32.dll, UpdatePerUserSystemParameters", 1, False Set WshShell = NOTHING |
|