PowerShell/Scripts/open-edge-browser.ps1

16 lines
293 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
2021-10-28 07:36:33 +02:00
This script launches the Microsoft Edge Web browser.
2021-10-27 13:13:36 +02:00
.EXAMPLE
2021-11-21 11:51:43 +01:00
PS> ./open-edge-browser
2021-10-27 13:13:36 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process microsoft-edge://
exit 0 # success