PowerShell/Scripts/close-chrome-browser.ps1
2021-11-21 11:51:43 +01:00

16 lines
342 B
PowerShell
Executable File

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