IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

如何利用PowerShell指令‧尋找特定OU內仍然啟用用戶電郵地址

Get-ADUser -Filter 'Enabled -eq "True"' -SearchBase "ou=hk,dc=example,dc=com" -Server "example.com" -Properties Name, EmailAddress | Select Name, EmailAddress | export-csv "outfile.csv"

-Filter: 過濾只顯示仍然啟用用戶;
-SearchBase: 只尋找特定OU內用戶名稱;
-Server: 如要搜尋其他網域,便要輸入其他伺服器名稱;
-Properties Name, EmailAddress: 要顯示的內容選項,包括姓名及電郵地址;

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *