美文网首页
【转】WIN7批处理更换桌面背景

【转】WIN7批处理更换桌面背景

作者: 狗达Da | 来源:发表于2018-09-01 20:11 被阅读141次

原文地址:https://zhidao.baidu.com/question/1883490289070788708.html

方案一
@echo off
reg add "hkcu\control panel\desktop" /v wallpaper /d "C:\Users\deng\Pictures\ae51f3deb48f8c5471a15c2e38292df5e0fe7f45.jpg" /f
RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
pause

方案二
@echo off
title 更换桌面背景
set regadd=reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
%regadd%" /v TileWallpaper /d "0" /f
%regadd%" /v Wallpaper /d "C:\Users\deng\Pictures\ae51f3deb48f8c5471a15c2e38292df5e0fe7f45.jpg" /f
%regadd%" /v WallpaperStyle /d "3" /f
echo 正在更换桌面背景
RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
echo 更换桌面背景成功
pause
exit

把里面的C:\Users\deng\Pictures\ae51f3deb48f8c5471a15c2e38292df5e0fe7f45.jpg换成你自己的图片目录即可

有些系统可能需要重启后才能显示

相关文章

网友评论

      本文标题:【转】WIN7批处理更换桌面背景

      本文链接:https://www.haomeiwen.com/subject/kkguwftx.html