我正在开发一个应用程序。这需要浏览器(IE)才能运行。但窗户正在打开。我通过执行批处理文件运行IE。我的要求是IE窗口不应该是可见的。 任何人都可以建议我请....!
答案 0 :(得分:0)
试试这个VB脚本。
Visible = 0 'it won't show
Set objExplorer = WScript.CreateObject _
("InternetExplorer.Application", "IE_")
objExplorer.Navigate "http://www.google.com"
'Determines if the window is visible or not
objExplorer.Visible = 0
'Suspend the script for 1 minute
WScript.Sleep 60000
'Close the IE (instantiated) window
objExplorer.quit
Sub IE_onQuit()
Wscript.Quit
End Sub
答案 1 :(得分:0)
您可以尝试使用一些功能强大的外壳
powershell -Command "& {Start-Process -WindowStyle Minimized iexplore.exe}"