mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-03 03:19:16 +01:00
16 lines
374 B
PowerShell
Executable File
16 lines
374 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./close-windows-terminal.ps1
|
|
# Description: closes the Windows Terminal program gracefully
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
close-program.ps1 "WindowsTerminal"
|
|
#try {
|
|
# exit 0
|
|
#} catch {
|
|
# write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
# exit 1
|
|
#}
|