PowerShell/Scripts/close-microsoft-paint.ps1
Markus Fleschutz 2fdd975e96 Simple rename
2021-11-29 16:25:01 +01:00

20 lines
422 B
PowerShell

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