PowerShell/Scripts/alert.ps1

22 lines
605 B
PowerShell
Raw Normal View History

2020-11-11 22:10:35 +01:00
#!/snap/bin/powershell
2020-11-22 10:52:38 +01:00
# Syntax: ./alert.ps1 [<message>]
# Description: handle and escalate the given alert message
2020-11-11 22:10:35 +01:00
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
2020-11-22 10:52:38 +01:00
param([string]$Message)
if ($Message -eq "" ) {
$URL = read-host "Enter alert message"
}
2020-11-11 22:10:35 +01:00
2020-11-22 10:52:38 +01:00
try {
echo "ALERT: $Message"
2020-11-11 22:10:35 +01:00
2020-11-22 10:52:38 +01:00
curl --header "Access-Token: o.PZl5XCp6SBl4F5PpaNXGDfFpUJZKAlEb" --header "Content-Type: application/json" --data-binary '{"type": "note", "title": "ALERT", "body": "$Message"}' --request POST https://api.pushbullet.com/v2/pushes
exit 0
} catch { Write-Error $Error[0] }
exit 1