所以我对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
有效。
答案 0 :(得分:0)
Start-Process -WindowStyle Hidden iexplore.exe
-ArgumentList "google.com -noframemerging -private"