powershell-scripts/ad/Disable-InactiveAdUser.ps1
Corbin 6db794ce28 Added grace period for newly created accounts
Accounts which have not yet signed in will have a null `lastLogon` We do want to disable accounts which have never logged in, but want to allow IT to create accounts before the user starts.
The added `$MinAccountAge` is the minimum age of the account based on the lastCreated attribute before the script will include them to disable.
2024-06-21 08:57:35 -04:00

43 lines
1.6 KiB
PowerShell

#
# 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 <security@contoso.com>'
$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 = @"
<h2>Users Disabled</h2><br/>
<p>The following user accounts have been disabled:</p>
<ul>
$($Users | % { "<li>$($_.DisplayName) &lt;$($_.userPrincipalName)&gt;, not logged in since $($_.lastLogon)</li>" })
</ul><br/>
<p>This email was sent automatically. Please do not reply.</p><br/>
<p><pre>$($UsersOU) $(Get-Date)</pre></p>
"@
Send-MailMessage -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -From $SmtpFrom -To $SmtpTo `
-Subject $SmtpSubject -Body "$EmailBody" -BodyAsHtml
}