PowerShell/Scripts/open-edge-browser.ps1
2021-11-21 11:51:43 +01:00

16 lines
293 B
PowerShell
Executable File

<#
.SYNOPSIS
Launches the Edge browser
.DESCRIPTION
This script launches the Microsoft Edge Web browser.
.EXAMPLE
PS> ./open-edge-browser
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process microsoft-edge://
exit 0 # success