AD-查看账户信息命令 Get-aduser

系统运维

从AD导出所有启用的邮箱列表

Get-ADUser -Filter {Enabled -eq True} -Properties * | select Name,SamAccountName,Displayname,UserPrincipalName,Surname,GivenName

导出禁用的 AD 账户,以日期为准进行排序

Get-ADUser -Filter {Enabled -eq false} -Properties * | select DisplayName,UserPrincipalName,LastLogonDate | sort LastLogonDate -Descending | Export-Csv d:\\DisableUser.csv -Encoding utf8

导出后的文件包含三列:

(由于要和别的系统的用户信息做比对,所以导出下面的三列)

DisplayName,UserPrincipalName,LastLogonDate

新网虚拟主机

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注