PowerShell/scripts/open-google-search.ps1
2024-10-01 15:11:03 +02:00

16 lines
346 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens Google Search
.DESCRIPTION
This PowerShell script launches the Web browser with the Google Search website.
.EXAMPLE
PS> ./open-google-search
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://google.com"
exit 0 # success