mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
16 lines
330 B
PowerShell
16 lines
330 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Closes Mozilla's Thunderbird email client
|
|
.DESCRIPTION
|
|
This script closes the Mozilla Thunderbird email client gracefully.
|
|
.EXAMPLE
|
|
PS> ./close-mozilla-thunderbird
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
taskkill /im thunderbird.exe
|
|
exit 0 # success
|