生產環境中我們往往會遇到以多個郵箱別名結尾的情況,如何快速導出當前域用戶郵箱以某欄位或尾碼結尾的用戶列表信息變得尤為重要,本例簡單彙總下如何通過Powershell快速篩選出當前郵箱信息包含azureyun.com的用戶列表並導出。實例如下:Get-ADUser -Filter * -SearchB... ...
生產環境中我們往往會遇到以多個郵箱別名結尾的情況,如何快速導出當前域用戶郵箱以某欄位或尾碼結尾的用戶列表信息變得尤為重要,本例簡單彙總下如何通過Powershell快速篩選出當前郵箱信息包含azureyun.com的用戶列表並導出。
實例如下:
Get-ADUser -Filter * -SearchBase "OU=syncall,DC=azureyun,DC=com" -Properties name,mail |Where-Object {$_.mail -match "azureyun.com"} |Export-Csv c:\azureyun_mail.csv -Encoding utf8 -NoTypeInformation
同時我們也可以快速獲取當前郵箱包含azureyun.com信息的用戶數量:
(Get-ADUser -Filter * -SearchBase "OU=syncall,DC=azureyun,DC=com" -Properties name,mail |Where-Object {$_.mail -match "azureyun.com"} ).count