PowerShell/Scripts/close-chrome.ps1

17 lines
303 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
close-chrome.ps1
.DESCRIPTION
Closes the Web browser Google Chrome gracefully
.EXAMPLE
PS> .\close-chrome.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2020-12-29 15:14:21 +01:00
#>
2021-04-07 14:37:12 +02:00
& "$PSScriptRoot/close-program.ps1" "Google Chrome" "chrome" "chrome"
exit 0