Quantcast
Viewing latest article 7
Browse Latest Browse All 30

Open website from PowerShell

If you want to directly open a website from the PowerShell console, you can use the Start-Process cmdlet. This will open the website in the default browser:

Start-Process "http://www.thomasmaurer.ch"

You can also use “Start” which is an alias for Start-Process:

Start "http://www.thomasmaurer.ch"

 


Viewing latest article 7
Browse Latest Browse All 30

Trending Articles