Added list-fritzbox-calls.ps1

This commit is contained in:
Markus Fleschutz
2021-01-03 11:49:06 +01:00
parent 19517b13d1
commit 1d2246df2d
4 changed files with 104 additions and 2 deletions

View File

@ -8,10 +8,10 @@
param([string]$USERNAME = "", [string]$PASSWORD = "")
if ($USERNAME -eq "") {
$USERNAME = "Enter username for FRITZ!Box"
$USERNAME = read-host "Enter username for FRITZ!Box"
}
if ($PASSWORD -eq "") {
$PASSWORD = "Enter password for FRITZ!Box"
$PASSWORD = read-host "Enter password for FRITZ!Box"
}
$FB_FQDN = "fritz.box"