PowerShell/Scripts/open-windows-terminal.ps1

16 lines
295 B
PowerShell
Raw Normal View History

2021-10-28 09:53:03 +02:00
<#
.SYNOPSIS
2021-11-23 22:17:41 +01:00
Launches the Windows Terminal app
2021-10-28 09:53:03 +02:00
.DESCRIPTION
This script launches the Windows Terminal application.
.EXAMPLE
2021-11-29 10:44:26 +01:00
PS> ./open-windows-terminal
2021-10-28 09:53:03 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-10-28 09:53:03 +02:00
#>
Start-Process wt.exe
exit 0 # success