mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
17 lines
412 B
PowerShell
Executable File
17 lines
412 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Closes the Windows Terminal application
|
|
.DESCRIPTION
|
|
This script closes the Windows Terminal application gracefully.
|
|
.EXAMPLE
|
|
PS> ./close-windows-terminal
|
|
(Windows Terminal is closed)
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Windows Terminal" "WindowsTerminal" "WindowsTerminal"
|
|
exit 0 # success
|