如何从命令提示符启动IE浏览器?
我在DOS命令提示符下启动IE浏览器,
我用火狐浏览器做过,如:
cd \program files\mozilla firefox\ firefox
如何用IE浏览器做同样的操作?
我在DOS命令提示符下启动IE浏览器,
我用火狐浏览器做过,如:
cd \program files\mozilla firefox\ firefox
如何用IE浏览器做同样的操作?
只需输入
c:\windows\servicepackfiles\i386\iexplore.exe
,也可以使用
"C:\Program Files\Internet Explorer\iexplore.exe"
```。
在任何地方:
start iexplore
&001
应该都能搞定–实际路径并不重要。只要路径存在,它就会运行可执行程序。如果你想在没有路径环境变量设置的情况下运行,可以创建一个注册表启动别名,这很容易。http://commandwindows.com/runline.htm
下面是我的使用方法:
iexplore "http://superuser.com/questions/113345/how-to-launch-internet-explorer-from-the-command-prompt"
结果。打开IE并导航到URL。
start "" iexplore
start iexplore
//你可以在大多数系统上使用start "" firefox
. 按照你的代码示例:start "" chrome
相同的代码与internet explorer等同于:cd \program files\mozilla firefox\
firefox
cd \program files\internet explorer\
iexplore
当你的代码不工作时,最好的机会可能是: “%programfiles%/internet exploreriexplore” ///你不需要使用大写字母。
要强制使用 internet explorer,可以试试这个:
“C:\Program Files\Internet Explorer\IEXPLORE.EXE” -new https://www.google.com“
经过几次尝试,我发现你必须在iexplore和网站之间输入 -new。希望这对你有帮助。