2012年11月28日 星期三

如何使用Exchange 2010 Management Shell匯出AD使用者帳號資料

如需要批次匯出大量的AD使用者帳號資訊,在Exchange 2010 環境中不需要額外開發客製化程式即可做到資料匯出功能,匯出方式說明如下:

1. 開啟Exchange Management Shell 視窗

2. 執行Management Shell 指令匯出使用者帳號資料

Get-user -ResultSize Unlimited | Select name,City,Company,CountryOrRegion,Department,Fax,Manager,MobilePhone,Office,Pager,Phone,PostalCode,StateOrProvince,StreetAddress,Title | export-csv c:\ADUserInfo.csv -Encoding "UTF8" -notypeinfo

補充說明:
  • 此指令範例會匯出使用者帳號的 name,City,Company,CountryOrRegion,Department...等欄位資料,如需匯出其他欄位資訊請自行調整。
  • 此指令範例會將匯出資料存到C:根目錄下的ADUserInfo.csv檔案,請視需求自行調整。
3. 使用Microsoft Excel開啟所匯出的 csv檔案即可檢視與維護匯出的資料。

1 則留言:

  1. 您好:
    請問在Select 如要取使用者帳號與郵件位置,要下什麼?
    謝謝

    回覆刪除