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.

$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

Populære opslag fra denne blog

Microsoft Office 2016 and the AUTO_ACTIVATE property

Access Exchange online with Office 365 multi-factor authentication (MFA/2FA)

Disable logon and logoff events (event id 4624, 4625, 4634 (and all the other ones...))