-Windowstyle隐藏不在Powershell上工作

时间:2016-04-06 05:10:24

标签: powershell internet-explorer

所以我对PowerShell几乎一无所知,但我一直在努力慢慢学习。

最终目标是让PowerShell打开导航到Google.com'参数

-noframemerging -private

到目前为止

Start-Process -FilePath 'C:\Program Files\Internet Explorer\iexplore.exe' 'google.com -noframemerging -private'

可用于创建IE,但不会隐藏。

我还尝试了另一段代码

Start-Process -WindowStyle Hidden -FilePath 'C:\Program Files\Internet Explorer\iexplore.exe' 'google.com -noframemerging -private'

但IE窗口仍然可见。我该如何解决这个问题?

并且-WindowStyle Minimized有效。

1 个答案:

答案 0 :(得分:0)

Start-Process -WindowStyle Hidden iexplore.exe 
              -ArgumentList "google.com -noframemerging -private"