# # Disable-InactiveAdUser # $UsersOU = "OU=Users,OU=Default-First-Site-Name,DC=CONTOSO,DC=COM" $MaxAccountAge = 45 # Allow a grace period for newly created accounts which have not yet logged in $MinAccountAge = 7 $SmtpServer = 'contoso-com.mail.protection.outlook.com' $SmtpPort = 25 $SmtpFrom = 'Contoso SOC ' $SmtpTo = @( 'security@contoso.com' ) $SmtpSubject = "Contoso, Inc.: Disabled inactive AD accounts over $MaxAccountAge days" # Get a list of enabled AD users who have not logged in in $MaxAccountAge days $Users = Get-ADUser -SearchBase "$UsersOU" -Filter * -Properties * ` | where { $_.Enabled -eq $true -and [DateTime]::FromFileTime($_.lastLogon) -lt (Get-Date).AddDays(-$MaxAccountAge) -and $_.whenCreated -lt (Get-Date).AddDays(-$MinAccountAge) } ` | select DisplayName,userPrincipalName,lastLogon,distinguishedName | % { $_.lastLogon = [DateTime]::FromFileTime($_.lastLogon); $_ } # Disable the accounts foreach ($User in $Users) { Disable-ADAccount -Identity $User.distinguishedName } # Email a report if (($Users.distinguishedName).Count -gt 0) { $EmailBody = @"

Users Disabled


The following user accounts have been disabled:


This email was sent automatically. Please do not reply.


$($UsersOU) $(Get-Date)

"@ Send-MailMessage -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -From $SmtpFrom -To $SmtpTo ` -Subject $SmtpSubject -Body "$EmailBody" -BodyAsHtml }