deagle47
Goto Top

Powershell check pwdLastSet and set on "0" for an special OU

Hello,

I'm trying to check the date for the pwdLastSet and to force a new password

Get-ADUser -LDAPFilter '(&(objectCategory=Person)(objectClass=User)(samAccountType:1.2.840.113556.1.4.803:=805306368)(!(userAccountControl:1.2.840.113556.1.4.803:=2))(!(pwdLastSet=0))(!(pwdLastSet>=133014796660000000)))'  


but unfortunately I get all users (incl. service account)
i wanted to filter on a database, for example

get-aduser -Filter * -SearchBase "OU=Vertrieb,dc=domain,dc=de"  

but it won't work :/

$users = get-aduser -Filter * -SearchBase "OU=Vertrieb,dc=domain,dc=de" | %{set-aduser $_ -Replace @{pwdLastSet=0}; set-aduser $_ -PasswordNeverExpires $false ; write-host "Attribut for '$($_.SamAccountName)' reset"}  


Could someone please help me

Content-Key: 3348715536

Url: https://administrator.de/contentid/3348715536

Printed on: April 25, 2024 at 06:04 o'clock

Member: colinardo
Solution colinardo Jul 15, 2022 updated at 15:01:43 (UTC)
Goto Top
Hi
Get-AdUser -Filter * -SearchBase "OU=Vertrieb,dc=domain,dc=de" -Properties PasswordLastSet | ?{$_.Enabled -and $_.PasswordLastSet -lt (get-date).AddDays(-60) -and $_.PasswordLastSet -ne $null} | Set-ADUser -ChangePasswordAtLogon $true -verbose  
Regards @colinardo
Member: deagle47
deagle47 Jul 18, 2022 at 05:01:47 (UTC)
Goto Top
@colinardo vielen dank face-smile
funktioniert super!
Member: colinardo
colinardo Jul 18, 2022 updated at 06:55:35 (UTC)
Goto Top
You're welcome. Englisch or German? Please, this is the english board version face-smile.