I am trying to figure out how to open the default browser in powershell. All I can seem to find is:
new-object -com internetexplorer.application.
I use chrome as my default, I found the following command online "Start-Process "chrome.exe" "www.google.com" example, but the new-object command above doesn't like it which is understandable. anyone know how I could specify chrome to load the page?
Cheers