mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-01 19:58:17 +02:00
Add open-edge.ps1
This commit is contained in:
parent
97700426e3
commit
7451a85596
@ -165,6 +165,7 @@ open-calculator.ps1, Starts the calculator program
|
|||||||
open-c-drive.ps1, Opens the C: drive folder
|
open-c-drive.ps1, Opens the C: drive folder
|
||||||
open-downloads-folder.ps1, Opens the user's downloads folder
|
open-downloads-folder.ps1, Opens the user's downloads folder
|
||||||
open-dropbox-folder.ps1, Opens the user's Dropbox 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-email-client.ps1, Starts the default email client
|
||||||
open-facebook.ps1, Opens Facebook's website
|
open-facebook.ps1, Opens Facebook's website
|
||||||
open-file-explorer.ps1, Opens the File Explorer
|
open-file-explorer.ps1, Opens the File Explorer
|
||||||
|
Can't render this file because it has a wrong number of fields in line 94.
|
26
Docs/open-edge.md
Normal file
26
Docs/open-edge.md
Normal file
@ -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*
|
@ -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-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-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-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-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-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) |
|
| [open-file-explorer.ps1](Scripts/open-file-explorer.ps1) | Opens the File Explorer | [Help](Docs/open-file-explorer.md) |
|
||||||
|
15
Scripts/open-edge.ps1
Executable file
15
Scripts/open-edge.ps1
Executable file
@ -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
|
Loading…
Reference in New Issue
Block a user