PowerShell/Scripts/close-calculator.ps1
2021-08-29 17:50:03 +02:00

16 lines
308 B
PowerShell
Executable File

<#
.SYNOPSIS
close-calculator.ps1
.DESCRIPTION
Closes the calculator program gracefully.
.EXAMPLE
PS> .\close-calculator.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Calculator" "Calculator" "calc"
exit 0