If Hyper-V replica is not normal, or running, send email warning
This script will check health state of Hyper-V replication.
Run this as scheduled task on your server doing Hyper-V replica. If status is not normal, or failing, it will send a SMTP warning email.
Remember to update the first 3 lines with correct information.
Run this as scheduled task on your server doing Hyper-V replica. If status is not normal, or failing, it will send a SMTP warning email.
Remember to update the first 3 lines with correct information.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$From = "fromAddress@yourDomain.com" | |
$To = "toAddress@yourDomain.com" | |
$SMTPServer = "yourSMTPserver.yourDomain.com" | |
$Subject = "Hyper-V replica if failing!" | |
$Body = "Hyper-V replica on server " + $env:computername + " is failing!" | |
$failedReplica = Get-VMReplication | Where-Object {$_.Health -ne "Normal"} | |
if ($failedReplica) { | |
Send-MailMessage -From $From -to $To -Subject $Subject -Body $Body -SmtpServer $SMTPServer | |
} |
Kommentarer
Send en kommentar