2014-11-23 83 views
1

是否有任何方式使用VBS在隱身模式下打開IE?VBS在隱身模式下打開IExplorer

像:

Set IE = CreateObject("InternetExplorer.Application") 

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

,而不是打開一個正常的IEXPLORER但是,打開一個改名的版本?

我需要這個,因爲Theres與我使用的webform的問題,直到它的固定,最簡單的方法是使用隱身。

回答

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