Add open-windows-terminal.ps1

This commit is contained in:
Markus Fleschutz 2021-10-28 09:53:03 +02:00
parent 1d335fb513
commit 23f4a9a3b9
6 changed files with 88 additions and 2 deletions

View File

@ -189,11 +189,13 @@ open-onedrive-folder.ps1, Opens the user's OneDrive folder
open-recycle-bin.ps1, Opens the user's recycle bin folder
open-repos-folder.ps1, Opens the user's Git repositories folder
open-snipping-tools.ps1, Opens the Snipping Tool
open-speed-test.ps1, Opens Cloudflare's speed test
open-spotify.ps1, Opens the Spotify app
open-system-settings.ps1, Opens the system settings of Windows
open-task-manager.ps1, Starts the Task Manager
open-system-settings.ps1, Launches the Windows system settings
open-task-manager.ps1, Launches the Task Manager
open-toggl-track.ps1, Opens Toggl Track
open-videos-folder.ps1, Opens the user's videos folder
open-windows-terminal.ps1, Launches Windows Terminal
open-wikipedia.ps1, Opens Wikipedia's website
open-youtube.ps1, Opens YouTube.com
pick-commit.ps1, Cherry-picks a Git commit into multiple branches

Can't render this file because it has a wrong number of fields in line 95.

26
Docs/open-speed-test.md Normal file
View File

@ -0,0 +1,26 @@
## open-speed-test.ps1 - Opens Cloudflare's Speed Test
This script launches the Web browser with Cloudflare's speed test website.
## Parameters
```powershell
open-speed-test.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-speed-test
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of open-speed-test.ps1*

View File

@ -0,0 +1,26 @@
## open-windows-terminal.ps1 - Starts Windows Terminal
This script launches the Windows Terminal application.
## Parameters
```powershell
open-windows-terminal.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-windows-terminal
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of open-windows-terminal.ps1*

View File

@ -145,11 +145,13 @@ Mega Collection of PowerShell Scripts
| [open-recycle-bin.ps1](Scripts/open-recycle-bin.ps1) | Opens the user's recycle bin folder | [Help](Docs/open-recycle-bin.md) |
| [open-repos-folder.ps1](Scripts/open-repos-folder.ps1) | Opens the user's Git repositories folder | [Help](Docs/open-repos-folder.md) |
| [open-snipping-tool.ps1](Scripts/open-snipping-tool.ps1)| Starts the Snipping Tool | [Help](Docs/open-snipping-tool.md) |
| [open-speed-test.ps1](Scripts/open-speed-test.ps1) | Opens Cloudflare's speed test | [Help](Docs/open-speed-test.md) |
| [open-spotify.ps1](Scripts/open-spotify.ps1) | Opens Spotify | [Help](Docs/open-spotify.md) |
| [open-system-settings.ps1](Scripts/open-system-settings.ps1)| Opens system settings of Windows | [Help](Docs/open-system-settings.md) |
| [open-task-manager.ps1](Scripts/open-task-manager.ps1)| Starts the Task Manager | [Help](Docs/open-task-manager.md) |
| [open-toggl-track.ps1](Scripts/open-toggl-track.ps1) | Opens Toggl Track | [Help](Docs/open-toggl-track.md) |
| [open-videos-folder.ps1](Scripts/open-videos-folder.ps1)| Opens the user's videos folder | [Help](Docs/open-videos-folder.md) |
| [open-windows-terminal.ps1](Scripts/open-windows-terminal.ps1)| Launches Windows Terminal | [Help](Docs/open-windows-terminal.md) |
| [open-wikipedia.ps1](Scripts/open-wikipedia.ps1) | Opens Wikipedia's website | [Help](Docs/open-wikipedia.md) |
| [open-youtube.ps1](Scripts/open-youtube.ps1) | Opens YouTube.com | [Help](Docs/open-youtube.md) |
| [remind-me.ps1](Scripts/remind-me.ps1) | Creates a scheduled task that will display a popup message | [Help](Docs/remind-me.md) |

15
Scripts/open-speed-test.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Cloudflare's Speed Test
.DESCRIPTION
This script launches the Web browser with Cloudflare's speed test website.
.EXAMPLE
PS> ./open-speed-test
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "https://speed.cloudflare.com"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.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