Add open-fritz-box.ps1

This commit is contained in:
Markus Fleschutz 2021-10-27 08:51:34 +02:00
parent df8c9af191
commit 97700426e3
14 changed files with 80 additions and 6 deletions

View File

@ -168,6 +168,7 @@ open-dropbox-folder.ps1, Opens the user's Dropbox folder
open-email-client.ps1, Starts the default email client
open-facebook.ps1, Opens Facebook's website
open-file-explorer.ps1, Opens the File Explorer
open-fritz-box.ps1, Opens FRITZ!Box's web interface
open-github.ps1, Opens GitHub's website
open-google-contacts.ps1, Opens Google Contacts
open-google-earth.ps1, Opens Google Earth

Can't render this file because it has a wrong number of fields in line 94.

View File

@ -1,6 +1,6 @@
## close-thunderbird.ps1 - Closes Mozilla's Thunderbird email client
## close-thunderbird.ps1 - Closes the Mozilla Thunderbird email client
This script closes Mozilla's Thunderbird email client gracefully.
This script closes the Mozilla Thunderbird email client gracefully.
## Parameters
```powershell

View File

@ -1,6 +1,6 @@
## open-c-drive.ps1 - Opens the C: drive folder
This script starts the File Explorer and shows the C: drive folder.
This script starts the File Explorer showing the C: drive folder.
## Parameters
```powershell

View File

@ -1,6 +1,6 @@
## open-facebook.ps1 - Opens Facebook's website
This script starts the Web browser and opens Facebook's website.
This script starts the Web browser with Facebook's website.
## Parameters
```powershell

26
Docs/open-fritz-box.md Normal file
View File

@ -0,0 +1,26 @@
## open-fritz-box.ps1 - Opens FRITZ!Box's Web interface
This script starts the Web browser with FRITZ!Box's Web interface.
## Parameters
```powershell
open-fritz-box.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-fritz-box
```
## 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-fritz-box.ps1*

26
Docs/open-github.md Normal file
View File

@ -0,0 +1,26 @@
## open-github.ps1 - Opens GitHub's website
This script starts the Web browser with GitHub's website.
## Parameters
```powershell
open-github.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-github
```
## 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-github.ps1*

View File

@ -1,6 +1,6 @@
## speak-countdown.ps1 - Speaks a countdown by text-to-speech
This scripts speaks a countdown by text-to-speech (TTS).
This scripts speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS).
## Parameters
```powershell

View File

@ -1,6 +1,7 @@
## speak-english.ps1 - Speaks text with an English text-to-speech voice
This scripts speaks the given text with an English text-to-speech (TTS) voice.
Requires that an English TTS voice is installed.
## Parameters
```powershell

View File

@ -1,6 +1,7 @@
## speak-french.ps1 - Speaks text with a French text-to-speech voice
This script speaks the given text with a French text-to-speech (TTS) voice
This script speaks the given text with a French text-to-speech (TTS) voice.
Requires that a French TTS voice is installed.
## Parameters
```powershell

View File

@ -1,6 +1,7 @@
## speak-german.ps1 - Speaks text with a German text-to-speech voice
This script speaks the given text with a German text-to-speech (TTS) voice.
Requires that a German TTS voice is installed.
## Parameters
```powershell

View File

@ -1,6 +1,7 @@
## speak-italian.ps1 - Speaks text with an Italian text-to-speech voice
This script speaks the given text with an Italian text-to-speech (TTS) voice.
Requires that an Italian TTS voice is installed.
## Parameters
```powershell

View File

@ -1,6 +1,7 @@
## speak-spanish.ps1 - Speaks text with a Spanish text-to-speech voice
This script speaks the given text with a Spanish text-to-speech (TTS) voice.
Requires that a Spanish TTS voice is installed.
## Parameters
```powershell

View File

@ -123,6 +123,7 @@ Mega Collection of PowerShell Scripts
| [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) |
| [open-fritz-box.ps1](Scripts/open-fritz-box.ps1) | Opens FRITZ!Box's web interface | [Help](Docs/open-fritz-box.md) |
| [open-github.ps1](Scripts/open-github.ps1) | Opens GitHub's website | [Help](Docs/open-github.md) |
| [open-google-contacts.ps1](Scripts/open-google-contacts.ps1) | Opens Google Contacts | [Help](Docs/open-google-contacts.md) |
| [open-google-earth.ps1](Scripts/open-google-earth.ps1) | Opens Google Earth | [Help](Docs/open-google-earth.md) |

15
Scripts/open-fritz-box.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens FRITZ!Box's Web interface
.DESCRIPTION
This script starts the Web browser with FRITZ!Box's Web interface.
.EXAMPLE
PS> ./open-fritz-box
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-browser.ps1" "http://fritz.box"
exit 0 # success