PowerShell/Scripts/open-chrome.ps1

25 lines
493 B
PowerShell
Raw Normal View History

2021-10-29 12:56:26 +02:00
<#
.SYNOPSIS
2021-11-21 11:51:43 +01:00
Launches the Chrome browser
2021-10-29 12:56:26 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the Google Chrome Web browser.
2021-10-29 12:56:26 +02:00
.EXAMPLE
2021-12-11 12:32:03 +01:00
PS> ./open-chrome
2021-10-29 12:56:26 +02:00
.PARAMETER URL
Specifies an optional URL
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-10-29 12:56:26 +02:00
#>
2021-11-23 07:45:50 +01:00
param([string]$URL = "http://www.fleschutz.de")
2021-10-29 12:56:26 +02:00
try {
2022-09-06 21:42:04 +02:00
Start-Process chrome.exe "$URL"
2021-10-29 12:56:26 +02:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-10-29 12:56:26 +02:00
exit 1
}