Win7系统设置默认浏览器方法:
1、首先找到电脑的控制面板,并进入到控制面板中(开始--->控制面板);
2、进入到控制面板后找到默认程序选项卡;
3、进入后再次选择默认程序选项,双击进入;
4、进入后系统会自动检测程序,在检测到的程序里面包含了电脑上的所有浏览器,选择需要设置的默认浏览器(比如IE浏览器);
5、点击下方找到“将此程序设置为默认值(s)”,然后确定。
Win8系统设置默认浏览器方法:
1、把鼠标移动到Win8桌面的最左下角,等待Win8的Metro界面缩略图出现,点击鼠标右键,在d出的菜单中选择“控制面板”
2、选择点击“程序”
3、选择点击“设置默认程序”
4、选择一个已安装了的浏览器,然后点击“将此程序设置为默认值”,然后点击即可在Win8修改默认浏览器
设为默认:(请创建一个按钮)
代码:
.版本
2
'
以下注册项的那个e是目录名
写注册项
(1,
“htmlfile\shell\”,
“e”)
写注册项
(1,
“htmlfile\shell\e\command\”,
取运行目录
()
+
“\”
+
取执行文件名
()
+
“
”
+
“%1”)
写注册项
(1,
“http\shell\”,
“e”)
写注册项
(1,
“http\shell\e\command\”,
取运行目录
()
+
“\”
+
取执行文件名
()
+
“
”
+
“%1”)
写注册项
(1,
“https\shell\”,
“e”)
写注册项
(1,
“https\shell\e\command\”,
取运行目录
()
+
“\”
+
取执行文件名
()
+
“
”
+
“%1”)
写注册项
(1,
“internetshortcut\shell\”,
“e”)
写注册项
(1,
“internetshortcut\shell\e\command\”,
取运行目录
()
+
“\”
+
取执行文件名
()
+
“
”
+
“%1”)
写注册项
(1,
“mhtmlfile\shell\”,
“e”)
写注册项
(1,
“mhtmlfile\shell\e\command\”,
取运行目录
()
+
“\”
+
取执行文件名
()
+
“
”
+
“%1”)
还原默认(请创建一个按钮)
代码:
.版本
2
写注册项
(1,
“htmlfile\shell\”,
“open”)
写注册项
(1,
“http\shell\”,
“open”)
写注册项
(1,
“https\shell\”,
“open”)
写注册项
(1,
“internetshortcut\shell\”,
“open”)
写注册项
(1,
“mhtmlfile\shell\”,
“open”)
有问题可以追问我,希望您采纳!!
.版本 2.子程序 _按钮1_被单击
.局部变量 浏览器路径, 文本型
.局部变量 浏览器名称, 文本型
' 以下 举例设置IE为默认浏览器
' 浏览器路径根据为全路径
浏览器路径 = “C:\Program Files\Internet Explorer\iexplore.exe”
浏览器名称 = “IExplore”
写注册项 (1, “http\shell\open\command\”, #引号 + 浏览器路径 + #引号 + “ ” + “%1”)
写注册项 (1, “http\shell\open\ddeexec\Application\”, 浏览器名称)
' 注销或重启生效
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)