PowerShell/Scripts/open-edge.ps1
2022-01-29 12:47:46 +01:00

16 lines
295 B
PowerShell
Executable File

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