mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Add open-google-chrome.ps1
This commit is contained in:
parent
bd4e4b8303
commit
a5d61a40b0
28
Scripts/open-google-chrome.ps1
Executable file
28
Scripts/open-google-chrome.ps1
Executable file
@ -0,0 +1,28 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Launches the Google Chrome Web browser
|
||||
.DESCRIPTION
|
||||
This script launches the Google Chrome Web browser.
|
||||
.EXAMPLE
|
||||
PS> ./open-google-chrome
|
||||
.PARAMETER URL
|
||||
Specifies an optional URL
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
param([string]$URL = "")
|
||||
|
||||
try {
|
||||
if ("$URL" -ne "") {
|
||||
start-process chrome.exe "$URL"
|
||||
} else {
|
||||
start-process chrome.exe
|
||||
}
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
||||
exit 1
|
||||
}
|
Loading…
Reference in New Issue
Block a user