mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-16 10:58:55 +01:00
16 lines
310 B
PowerShell
16 lines
310 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Closes Microsoft Outlook
|
|||
|
.DESCRIPTION
|
|||
|
This script closes the Microsoft Outlook email application gracefully.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./close-microsoft-outlook
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
taskkill /im outlook.exe
|
|||
|
exit 0 # success
|