I have a powershell script which works just fine in IE however I need to also have it work in Chrome. $ie = new-object -com "InternetExplorer.Application" Works fine for IE. How do I instantiate the Chrome browser?
You can start a process by name and even pass it a parameter, like this:
Start-Process "chrome.exe" "www.google.com"