当前位置:  开发笔记 > 编程语言 > 正文

Windows控制台命令在Internet Explorer 7中打开多个页面

如何解决《Windows控制台命令在InternetExplorer7中打开多个页面》经验,为你挑选了1个好方法。

如何使用单个DOS命令在Internet Explorer 7中打开多个页面?批处理文件是唯一的方法吗?

谢谢!



1> Wedge..:

批处理文件将作为一种快速而肮脏的解决方案.

@echo off
@setlocal

:openurl
set url=%~1

if "%url:~0,4%" == "http" (
   start "%ProgramFiles%\Internet Explorer\iexplore.exe" "%url%"
)
if NOT "%url:~0,4%" == "http" (
   start "%ProgramFiles%\Internet Explorer\iexplore.exe" "http://%url%"
)

shift
if "%~1" == "" goto :end
goto :openurl

:end

编辑:添加了对没有http处理程序前缀的域名的支持.

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有