PowerShell/Scripts/close-outlook.ps1
2023-08-06 21:35:36 +02:00

20 lines
439 B
PowerShell
Executable File

<#
.SYNOPSIS
Closes the Microsoft Outlook app
.DESCRIPTION
This PowerShell script closes the Microsoft Outlook email application gracefully.
.EXAMPLE
PS> ./close-outlook.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
TaskKill /im outlook.exe
if ($lastExitCode -ne "0") {
& "$PSScriptRoot/speak-english.ps1" "Sorry, Microsoft Outlook isn't running."
exit 1
}
exit 0 # success