commit 1ca15e513012bab7b2ab0f71ec7a9143120fbfbe Author: Corbin Date: Fri May 3 13:41:12 2024 -0400 Add Disable-InactiveAdUser script diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f630c6 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# PowerShell Scripts + +A collection of PowerShell scripts I've written \ No newline at end of file diff --git a/ad/Disable-InactiveAdUser.ps1 b/ad/Disable-InactiveAdUser.ps1 new file mode 100644 index 0000000..7934c21 --- /dev/null +++ b/ad/Disable-InactiveAdUser.ps1 @@ -0,0 +1,51 @@ +# +# Disable-InactiveAdUser +# + +$SmtpServer = 'qlmi-com.mail.protection.outlook.com' +$SmtpPort = 25 +$SmtpFrom = 'Quantum Leap Security ' +$SmtpTo = @( + 'security@qlmi.com' +) + +$MaxAccountAge = 45 +$UsersOU = "OU=Users - Synced,OU=_Quantum Leap,DC=QLCOM,DC=COM" + +# Get a list of enabled AD users who have not logged in in $MaxAccountAge days +$Users = Get-ADUser -Filter 'enabled -eq $true' -SearchBase "$UsersOU" | % { + New-Object PSObject -Property @{ + "userPrincipalName" = $_.userPrincipalName + "Enabled" = $_.Enabled + "lastLogon" = [DateTime]::FromFileTime(($_ | Get-ADObject -Properties lastLogon).LastLogon) + "distinguishedName" = $_.distinguishedName + } +} | Where-Object -FilterScript { $_.lastLogon -lt (Get-Date).AddDays(-$MaxAccountAge) } + +# Export a report of the users +if (!(Test-Path -Path 'C:\temp')) { + New-Item -Path 'C:\temp' -ItemType Directory -ErrorAction SilentlyContinue +} +$ReportPath = Join-Path -Path 'C:\temp' -ChildPath "disabled_users_$(Get-Date -UFormat '%s').csv" +$Users | Export-Csv -NoTypeInformation -Path $ReportPath + +# Disable the accounts +foreach ($User in $Users) { + Disable-ADAccount -Identity $User.distinguishedName +} + +# Email the report +if (($Users.Enabled).Count -gt 0) { + $EmailBody = @" +

Users Disabled


+

The following user accounts have been disabled:

+
+

This email was sent automatically. Please do not reply.

+"@ + + Send-MailMessage -SmtpServer $SmtpServer -Port $SmtpPort -UseSsl -From $SmtpFrom -To $SmtpTo ` + -Subject "Disabled inactive AD accounts over max age $MaxAccountAge days" ` + -Body "$EmailBody" -BodyAsHtml +}