PowerShell/Scripts/close-windows-terminal.ps1
2021-09-24 17:19:49 +02:00

16 lines
331 B
PowerShell
Executable File

<#
.SYNOPSIS
close-windows-terminal.ps1
.DESCRIPTION
Closes Windows Terminal gracefully
.EXAMPLE
PS> ./close-windows-terminal
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Windows Terminal" "WindowsTerminal" "WindowsTerminal"
exit 0