mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
32 lines
725 B
PowerShell
Executable File
32 lines
725 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
simulate-presence.ps1 [<IP-address>]
|
|
.DESCRIPTION
|
|
Simulates the human presence against burglars.
|
|
.EXAMPLE
|
|
PS> .\simulate-presence.ps1 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
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|