先声明此批处理要求背景图必需为BMP格式,否则重启后不显示~!
将以后内容保存为批处理~!
@echo off
title 更换桌面背景
xcopy /s /e /h /y 壁纸路径(如D:\Wallpaper) 空格 %windir%\Web\
set regadd=reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
%regadd%" /v TileWallpaper /d "0" /f
%regadd%" /v Wallpaper /d "%windir%\Web\photoname.bmp" /f
%regadd%" /v WallpaperStyle /d "3" /f
echo 正在更换桌面背景
RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
echo 更换桌面背景成功
::设置IE主页::
reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "www.baidu.com " /f
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "www.baidu.com " /f
pause
请右击以管理员身份执行~