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
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檔案即可檢視與維護匯出的資料。
您好:
回覆刪除請問在Select 如要取使用者帳號與郵件位置,要下什麼?
謝謝