PowerShell, How can I open an url in existing brow

2019-08-03 06:18发布

I want to make a powershell script, that will:

  1. Run Chrome
  2. Open a google.com website
  3. Stay some time on it
  4. Go from google.com ===> bing.com in the same tab.

So this is the code, that works for me, it's run Chrome and open google.com website in the tab: Start-Process "chrome.exe" "www.google.com"

The main problem, I don't know how to open new link in the same tab. I found this article https://msdn.microsoft.com/en-us/library/aa768360(v=vs.85).aspx , but I am a total noobie and can't use this information properly. Is there someone, who could help me? Please?

1条回答
霸刀☆藐视天下
2楼-- · 2019-08-03 06:52

you Can use below powershell command to open URL in new tab in any Browser

Start-Process -FilePath Chrome -ArgumentList https://www.google.co.in

Where

Filepath - Browser type (Chrome , Explorer)

ArgumentList - URL

查看更多
登录 后发表回答