mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
25 lines
493 B
PowerShell
Executable File
25 lines
493 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Launches the Chrome browser
|
|
.DESCRIPTION
|
|
This PowerShell script launches the Google Chrome Web browser.
|
|
.EXAMPLE
|
|
PS> ./open-chrome
|
|
.PARAMETER URL
|
|
Specifies an optional URL
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$URL = "http://www.fleschutz.de")
|
|
|
|
try {
|
|
Start-Process chrome.exe "$URL"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|