PowerShell/Scripts/open-chrome.ps1
Markus Fleschutz 1a94413a0e Simple rename
2021-12-11 12:32:03 +01:00

25 lines
509 B
PowerShell
Executable File

<#
.SYNOPSIS
Launches the Chrome browser
.DESCRIPTION
This script launches the Google Chrome Web browser.
.EXAMPLE
PS> ./open-chrome
.PARAMETER URL
Specifies an optional URL
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$URL = "http://www.fleschutz.de")
try {
start-process chrome.exe "$URL"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}