Reputation: 71
I want to make a powershell script, that will:
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?
Upvotes: 3
Views: 13748
Reputation: 610
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
Upvotes: 7