欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-23 18:28:15
echo off set 主题路径=" " echo windows registry editor ...
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