PowerShell/Scripts/close-calculator.ps1
2021-07-13 21:10:02 +02:00

16 lines
303 B
PowerShell
Executable File

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