mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-17 12:10:53 +01:00
16 lines
293 B
PowerShell
Executable File
16 lines
293 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Launches Microsoft Edge
|
|
.DESCRIPTION
|
|
This script launches the Microsoft Edge Web browser.
|
|
.EXAMPLE
|
|
PS> ./open-microsoft-edge
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
Start-Process microsoft-edge://
|
|
exit 0 # success
|