mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Simple rename
This commit is contained in:
24
Scripts/open-chrome.ps1
Executable file
24
Scripts/open-chrome.ps1
Executable file
@ -0,0 +1,24 @@
|
||||
<#
|
||||
.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
|
||||
}
|
Reference in New Issue
Block a user