mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
16 lines
334 B
PowerShell
Executable File
16 lines
334 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens FRITZ!Box's Web interface
|
|
.DESCRIPTION
|
|
This script launches 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
|