1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-01 19:58:17 +02:00
PowerShell/Scripts/close-calculator.ps1
2021-08-03 15:53:57 +02:00

17 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