<# .SYNOPSIS Closes the Google Chrome Web browser .DESCRIPTION This script closes the Google Chrome Web browser gracefully. .EXAMPLE PS> ./close-google-chrome .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> & "$PSScriptRoot/close-program.ps1" "Google Chrome" "chrome" "chrome" exit 0 # success