我网吧使用的是网维大师游戏更新软件 ,该软件提供了一个开机批处理功能,我想如何实现开机自动换壁纸呢 壁纸(1.bmp...10.bmp)都放在服务器E:\pic目录下
服务器ip地址:192.168.10.200
==================================
求一个可以让客户机开机自动随机更换壁纸的批处理
Last edited by HAT on 2008-12-9 at 09:36 ]
@echo off
set /a n=%random%%%10+1
set regadd=start /b reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
%regadd% /v TileWallpaper /d "0" /f
%regadd% /v Wallpaper /d "E:\pic\%n%.bmp" /f
%regadd% /v WallpaperStyle /d "2" /f
start RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
--------------------------------------------------
HotkeyP (64 KB) 可以随机更换壁纸:
start HotkeyP.exe -Random wallpaper E:\pic\
Last edited by tireless on 2008-12-9 at 00:27 ]