From ba95630b7871e9c9aa012fcfcda7da756008e9d7 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 15 Nov 2021 09:55:08 +0100 Subject: [PATCH] Add open-fritz-repeater.ps1 --- Scripts/open-fritz-repeater.ps1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 Scripts/open-fritz-repeater.ps1 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