用户登录
用户注册

分享至

开机更新桌面主题的批处理代码

  • 作者: 小乖乖喵
  • 来源: 51数据库
  • 2021-08-03
echo off
set 主题路径=" "
echo windows registry editor version 5.00 >%temp%\theme.dll
echo [hkey_current_user\software\microsoft\windows\currentversion\thememanager] >>%temp%\theme.dll
echo "wcreateduser"="1" >>%temp%\theme.dll
echo "themeactive"="1" >>%temp%\theme.dll
echo "loadedbefore"="1" >>%temp%\theme.dll
echo "lastuserlangid"="2052" >>%temp%\theme.dll
echo "dllname"=%主题路径% >>%temp%\theme.dll
echo "colorname"="normalcolor" >>%temp%\theme.dll
echo "sizename"="normalsize" >>%temp%\theme.dll
regedit /s %temp%\theme.dll
net stop themes
net start themes
软件
前端设计
程序设计
Java相关