PowerShell/Scripts/simulate-presence.ps1
2021-10-04 21:29:23 +02:00

33 lines
796 B
PowerShell
Executable File

<#
.SYNOPSIS
Simulates the human presence against burglars
.DESCRIPTION
simulate-presence.ps1 [<IPaddress>]
<IPaddress> is the IP address of the Shelly1 device
.EXAMPLE
PS> ./simulate-presence 192.168.100.100
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$IPaddress = "")
try {
if ($IPaddress -eq "" ) { $IPaddress = read-host "Enter IP address of Shelly1 device" }
for ([int]$i = 0; $i -lt 1000; $i++) {
& "$PSScriptRoot/switch-shelly1.ps1" $IPaddress on 0
start-sleep -s 10
& "$PSScriptRoot/switch-shelly1.ps1" $IPaddress off 0
start-sleep -s 60
}
"✔️ Done."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}