社区应用 最新帖子 精华区 社区服务 会员列表 统计排行
  • 1423阅读
  • 0回复

[分享]更换桌面壁纸的批处理

楼层直达
级别: 光盘学士
发帖
4221
飞翔币
522
威望
3616
飞扬币
608
信誉值
6

@echo off
title 更换桌面背景
set regadd=reg add "hkey_current_user\control panel\desktop"
%regadd%" /v tilewallpaper /d "0" /f
%regadd%" /v wallpaper /d "\\update\dd$\flashup\壁纸\wallpaper.bmp" /f
%regadd%" /v wallpaperstyle /d "3" /f
echo 正在更换桌面背景
RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
echo 更换桌面背景成功
exit