PowerShell/Scripts/close-chrome.ps1
2021-08-29 17:50:03 +02:00

16 lines
308 B
PowerShell
Executable File

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