diff --git a/Scripts/open-fritz-repeater.ps1 b/Scripts/open-fritz-repeater.ps1 new file mode 100755 index 00000000..14531788 --- /dev/null +++ b/Scripts/open-fritz-repeater.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens FRITZ!Repeater's Web interface +.DESCRIPTION + This script launches the Web browser with the Web interface of FRITZ!Repeater. +.EXAMPLE + PS> ./open-fritz-repeater +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "http://fritz.repeater" +exit 0 # success