PowerShell/Scripts/alert.ps1

30 lines
795 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 19:03:30 +02:00
.SYNOPSIS
2021-10-12 21:51:51 +02:00
Handles and escalates an alert
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script handles and escalates the given alert message.
2021-10-12 21:51:51 +02:00
.PARAMETER message
Specifies the alert message
2021-07-13 19:03:30 +02:00
.EXAMPLE
2021-09-24 08:57:08 +02:00
PS> ./alert "Harddisk failure"
2021-07-13 19:03:30 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-11-11 22:10:35 +01:00
2021-07-15 15:51:22 +02:00
param([string]$Message = "")
2020-11-11 22:10:35 +01:00
2020-11-22 10:52:38 +01:00
try {
2021-07-15 15:51:22 +02:00
if ($Message -eq "" ) { $URL = read-host "Enter alert message" }
2020-11-22 10:52:38 +01:00
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
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}