当前位置: 移动技术网 > IT编程>网络>Dos/Bat > 开机更新桌面主题的批处理代码

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

2017年12月12日  | 移动技术网IT编程  | 我要评论
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

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网