Created
February 6, 2022 10:41
-
-
Save PatrickTerlisten/33e6c96a0fa890328ed5d9974027d355 to your computer and use it in GitHub Desktop.
E-Mail notification on account lockout
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
#Get events | |
$Event = Get-EventLog -LogName Security -InstanceId 4740 -Newest 1 | |
#get some details | |
$User = $Event.ReplacementStrings[0] | |
$Computer = $Event.ReplacementStrings[1] | |
$Domain = $Event.ReplacementStrings[5] | |
# smtp server | |
$emailSmtpServer = "mailserver.domain.tld" | |
# recipient | |
$emailFrom= "[email protected]" | |
$emailTo = "[email protected]", "[email protected]" | |
$subject = "Benutzerkonto gesperrt:" + $Domain + "\" + $User | |
$body = "Benutzerkonto: " + $Domain + "\" + $User + "`r`n" + "Workstation: " + $Computer + "`r`n" + "Time: " + $Event.TimeGenerated + "`r`n" | |
Send-MailMessage -SmtpServer $emailSmtpServer -From $emailFrom -To $emailTo -Subjec $subject -Body $body -BodyAsHtml -Encoding UTF8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment