PowerShell/Scripts/open-edge.ps1

16 lines
295 B
PowerShell
Raw Normal View History

2021-10-27 13:13:36 +02:00
<#
.SYNOPSIS
2021-11-21 11:51:43 +01:00
Launches the Edge browser
2021-10-27 13:13:36 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the Microsoft Edge Web browser.
2021-10-27 13:13:36 +02:00
.EXAMPLE
2021-12-11 12:32:03 +01:00
PS> ./open-edge
2021-10-27 13:13:36 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-10-27 13:13:36 +02:00
#>
Start-Process microsoft-edge://
exit 0 # success