From 7451a855965f45a062e5c2ee6834209811ae04b5 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus@fleschutz.de>
Date: Wed, 27 Oct 2021 13:13:36 +0200
Subject: [PATCH] Add open-edge.ps1

---
 Data/scripts.csv      |  1 +
 Docs/open-edge.md     | 26 ++++++++++++++++++++++++++
 README.md             |  1 +
 Scripts/open-edge.ps1 | 15 +++++++++++++++
 4 files changed, 43 insertions(+)
 create mode 100644 Docs/open-edge.md
 create mode 100755 Scripts/open-edge.ps1

diff --git a/Data/scripts.csv b/Data/scripts.csv
index 7a4b9035..30fe25b8 100644
--- a/Data/scripts.csv
+++ b/Data/scripts.csv
@@ -165,6 +165,7 @@ open-calculator.ps1, Starts the calculator program
 open-c-drive.ps1, Opens the C: drive folder
 open-downloads-folder.ps1, Opens the user's downloads folder
 open-dropbox-folder.ps1, Opens the user's Dropbox folder
+open-edge.ps1, Opens Microsoft Edge
 open-email-client.ps1, Starts the default email client
 open-facebook.ps1, Opens Facebook's website
 open-file-explorer.ps1, Opens the File Explorer
diff --git a/Docs/open-edge.md b/Docs/open-edge.md
new file mode 100644
index 00000000..a556d451
--- /dev/null
+++ b/Docs/open-edge.md
@@ -0,0 +1,26 @@
+## open-edge.ps1 - Starts Microsoft Edge
+
+This script starts the Microsoft Edge Web browser.
+
+## Parameters
+```powershell
+open-edge.ps1 [<CommonParameters>]
+
+[<CommonParameters>]
+    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
+    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
+```
+
+## Example
+```powershell
+PS> ./open-edge
+
+```
+
+## Notes
+Author: Markus Fleschutz · License: CC0
+
+## Related Links
+https://github.com/fleschutz/PowerShell
+
+*Generated by convert-ps2md.ps1 using the comment-based help of open-edge.ps1*
diff --git a/README.md b/README.md
index 59450ad4..ba8c1e54 100644
--- a/README.md
+++ b/README.md
@@ -120,6 +120,7 @@ Mega Collection of PowerShell Scripts
 | [open-c-drive.ps1](Scripts/open-c-drive.ps1)         | Opens the C: drive folder                                          | [Help](Docs/open-c-drive.md)        |
 | [open-downloads-folders.ps1](Scripts/open-downloads-folder.ps1) | Opens the user's downloads folder                       | [Help](Docs/open-downloads-folder.md)     |
 | [open-dropbox-folder.ps1](Scripts/open-dropbox-folder.ps1) | Opens the user's Dropbox folder                              | [Help](Docs/open-dropbox-folder.md)     |
+| [open-edge.ps1](Scripts/open-edge.ps1)               | Opens Microsoft Edge                                               | [Help](Docs/open-edge.md)  |
 | [open-email-client.ps1](Scripts/open-browser.ps1)    | Starts the default email client                                    | [Help](Docs/open-email-client.md)   |
 | [open-facebook.ps1](Scripts/open-facebook.ps1)       | Opens Facebook's website                                           | [Help](Docs/open-facebook.md)  |
 | [open-file-explorer.ps1](Scripts/open-file-explorer.ps1) | Opens the File Explorer                                        | [Help](Docs/open-file-explorer.md)  |
diff --git a/Scripts/open-edge.ps1 b/Scripts/open-edge.ps1
new file mode 100755
index 00000000..b3cbcca0
--- /dev/null
+++ b/Scripts/open-edge.ps1
@@ -0,0 +1,15 @@
+<#
+.SYNOPSIS
+	Starts Microsoft Edge
+.DESCRIPTION
+	This script starts the Microsoft Edge Web browser.
+.EXAMPLE
+	PS> ./open-edge
+.NOTES
+	Author: Markus Fleschutz · License: CC0
+.LINK
+	https://github.com/fleschutz/PowerShell
+#>
+
+Start-Process microsoft-edge://
+exit 0 # success