VBS以隐身模式打开IExplorer

时间:2014-11-23 13:01:14

标签: internet-explorer vbscript incognito-mode

有没有办法在隐身模式下使用VBS打开IE?

像:

Set IE = CreateObject("InternetExplorer.Application") 

 IE.navigate "Google.dk" 
 IE.Visible = 1

但不是打开普通的iexplorer,而是打开一个隐身版本?

我需要这个,因为Theres是我使用的webform的一个问题,直到修复后,最简单的方法就是使用隐身功能。

1 个答案:

答案 0 :(得分:1)

所以似乎不可能让vbs在InPrivate中打开IE ..然而,似乎我可以使用cmd在inprivate中打开iexplorer,然后使用类似的东西将其标记为VBS脚本:

For Each wnd In CreateObject("Shell.Application").Windows
  If InStr(1, wnd.FullName, "iexplore.exe", vbTextCompare) > 0 Then
    Set IE = wnd
    Exit For
  End If
Next