PowerShell/Scripts/open-windows-terminal.ps1
2022-09-06 21:42:04 +02:00

16 lines
295 B
PowerShell
Executable File

<#
.SYNOPSIS
Launches the Windows Terminal app
.DESCRIPTION
This script launches the Windows Terminal application.
.EXAMPLE
PS> ./open-windows-terminal
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
Start-Process wt.exe
exit 0 # success