PowerShell/Scripts/open-windows-terminal.ps1

16 lines
286 B
PowerShell
Raw Normal View History

2021-10-28 09:53:03 +02:00
<#
.SYNOPSIS
Starts Windows Terminal
.DESCRIPTION
This script launches the Windows Terminal application.
.EXAMPLE
PS> ./open-windows-terminal
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process wt.exe
exit 0 # success