From 07f46cb36aa253b152de87c06a63e2d94d007b37 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 6 Nov 2021 11:45:00 +0100 Subject: [PATCH] Add close-mozilla-thunderbird.ps1 --- Scripts/close-mozilla-thunderbird.ps1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Scripts/close-mozilla-thunderbird.ps1 diff --git a/Scripts/close-mozilla-thunderbird.ps1 b/Scripts/close-mozilla-thunderbird.ps1 new file mode 100644 index 00000000..52cb38f8 --- /dev/null +++ b/Scripts/close-mozilla-thunderbird.ps1 @@ -0,0 +1,15 @@ +<# +.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