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"