可以,不过图片格式要求为BMP格式的。
批处理如下:
@echo off
title 更换桌面背景
set regadd=reg add "hkey_current_user\control panel\desktop"
%regadd%" /v tilewallpaper /d "0" /f
%regadd%" /v wallpaper /d "图片路径" /f
%regadd%" /v wallpaperstyle /d "3" /f
echo 正在更换桌面背景
RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
echo 更换桌面背景成功
exit