PowerShell/Scripts/close-calculator.ps1
Markus Fleschutz 06d3c1c03d Simpe rename
2021-11-29 10:44:26 +01:00

20 lines
430 B
PowerShell
Executable File

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