PowerShell/Scripts/alert.ps1

24 lines
677 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX alert.ps1 [<message>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION handle and escalate the given alert message
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-11-11 22:10:35 +01:00
2021-02-18 20:17:55 +01:00
param($Message = "")
2020-11-22 10:52:38 +01:00
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
2020-12-09 10:30:55 +01:00
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}