要導出AD中的用戶信息方式有不少種,我認爲最簡單的方式是使用powershell命令。shell
可使用PowerShell中的Get-ADuser命令進行導出。ide
如下命令能夠導出用戶的名字,上次登陸時間,上次密碼重置時間,郵件並以CSV格式保存。it
Get-ADUser -Filter * -Properties * -SearchBase " dc=superdoor,dc=co, dc=nz"|Select-Object Name, lastlogondate, passwordlastset, mail | Export-Csv -Path "c:\userinfo.csv"
若是隻須要導出某一個OU下面的用戶,加上對應的OU便可,OU內部有層級關係,再加上下面的OU便可。io
Get-ADUser -Filter * -Properties * -SearchBase "ou=nation dc=superdoor,dc=co, dc=nz"|Select-Object Name, lastlogondate, passwordlastset, mail | Export-Csv -Path "c:\userinfo.csv"