标签:ad poweshell
获取密码即将过期用户的信息,90天有效期的话,获取过期前7天的密码
Get-ADUser -filter * -searchbase "ou=kewendangdang,dc=dangdang,dc=com" -Properties *|where {($_.passwordlastset -lt (Get-Date).adddays(-83)) -and ($_.passwordneverexpires -ne "True")}|select name,samaccountname >>e:\seven.csv
标签:ad poweshell
原文地址:http://wangying.blog.51cto.com/192733/1565174