PowerShell/scripts/close-windows-terminal.ps1
2024-10-01 13:37:53 +02:00

16 lines
385 B
PowerShell
Executable File

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