mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
341 B
PowerShell
Executable File
16 lines
341 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
close-thunderbird.ps1
|
|
.DESCRIPTION
|
|
Closes the mail client Mozilla Thunderbird gracefully.
|
|
.EXAMPLE
|
|
PS> .\close-thunderbird.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Mozilla Thunderbird" "thunderbird" "thunderbird"
|
|
exit 0
|