当前位置: 首页 > 图文教程 > 脚本技术 > DOS/BAT > 开机更新桌面主题的批处理代码

DOS/BAT
DOS 下的批处理文件
怎么在 DOS 下实现“软启动”?
重定向符(、)的使用
config.sys 文件的基本配置语句
备份硬盘主引导分区到一个文件中
恢复主引导分区
恢复 Windows3.2 的屏幕设置
清除电脑开机口令的方法
在 DOS 下怎样驱动光驱?
让你的脚本说话
DEBUG 命令详解
CMD 运行指令
最新万能 DOS 启动盘制作全攻略(软盘+光盘+U盘+硬盘+NTFS+应急实用工具)
DOS 命令字典
用replace实现替换正在使用的文件
黑客基础之DOS (最齐全)超强推荐
bat运行时不弹出那个黑框框的完美解决方案
收藏的比较完整的批处理教程
批处理版的SC
BAT文件语法和技巧(bat文件的编写及使用

DOS/BAT 中的 开机更新桌面主题的批处理代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 158 ::
收藏到网摘: n/a

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