无形地运行iexplore.exe

时间:2014-10-14 23:55:19

标签: windows batch-file cmd

我试图无形地运行iexplore.exe。这有效,但它显示了Internet Explorer窗口。

@Start iexplore www.google.com

比我尝试用/ d

@Start /d iexplore www.google.com

但是我得到了#34;当前目录无效"错误。通过蝙蝠文件无形地运行iexplore的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run """c:\program files\internet explorer\iexplore"" www.google.com", 0, false

输入名为HiddenGoogle.vbs的文件

0表示隐藏 - 大约有12个选项

错误意味着不要等待。真意味着等待。

在命令提示符下键入此内容将允许您检查隐藏的窗口。您可以通过窗口标题判断它是哪一个。

tasklist /v /fi "imagename eq iexplore.exe"

tasklist /v /fi "imagename eq iexplore.exe" /fi "windowtitle eq Google - Windows Internet Explorer"

只需输入要运行它的vbs文件的名称即可。在命令提示符下或批处理文件中。

"c:\some folder\hiddengoogle.vbs"

这就是全部。