开机更新桌面主题的批处理代码
程序员文章站
2022-03-22 08:33:33
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
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