Files
PowerShell/scripts/open-google-books.ps1
2025-07-09 15:09:20 +02:00

18 lines
377 B
PowerShell
Executable File

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