帮我做一个注册表导入文件

来源:百度知道 编辑:UC知道 时间:2024/06/07 19:47:35
帮我做一个注册表导入文件
我想在ie 顶部的框上加上字HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
新建字符串值:Window Title 值为:任意字符 也就是标题栏要显示的字符
帮我编辑一个批处理然后保存为reg双击一下就可以了,不用再运行注册表然后在找到那项………………麻烦
看清标题在回答 看清标题在回答 看清标题在回答 看清标题在回答
不懂瞎胡说

批处理版本
::===========================
@echo off
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Window Title" /t reg_sz /d "你好" /f
exit

注册表版本
::==========================
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"window title"="你好"

你的机器有还原啊?还你解了还原不就行了啊。

@echo off
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Window Title" /t reg_sz /d "你好" /f
exit