From 5d74bd4e21df0e3b8634c61ce8ecfd131b8872c1 Mon Sep 17 00:00:00 2001 From: Corbin Date: Mon, 13 May 2024 12:30:27 -0400 Subject: [PATCH] Fix compatibiltiiy handling user account disables --- ad/Disable-InactiveAdUser.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ad/Disable-InactiveAdUser.ps1 b/ad/Disable-InactiveAdUser.ps1 index 3ae67bd..9e38bad 100644 --- a/ad/Disable-InactiveAdUser.ps1 +++ b/ad/Disable-InactiveAdUser.ps1 @@ -19,7 +19,9 @@ $Users = Get-ADUser -SearchBase "$UsersOU" -Filter * -Properties * ` | select DisplayName,userPrincipalName,lastLogon,distinguishedName | % { $_.lastLogon = [DateTime]::FromFileTime($_.lastLogon); $_ } # Disable the accounts -$Users | Disable-ADAccount +foreach ($User in $Users) { + Disable-ADAccount -Identity $User.distinguishedName +} # Email a report if (($Users.distinguishedName).Count -gt 0) {