IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

如何利用PowerShell指令‧更新特定OU/MS TEAM內用戶個人資料

為了更新MS TEAM用戶的Organization欄位資料,所以要一次性幫公司所有同事更新AD帳戶資料。

Get-ADUser -Filter "UserPrincipalName -eq 'user@example.com'" -SearchBase "ou=hk,dc=example,dc=com" -Server "example.com" | Set-ADUSer -Title "Sales Manager" -Department "Sales Department" -Company "Example Ltd." -Manager "apple.chan" -StreetAddress "Sunlife Building" -City "Hong Kong" | export-csv "outfile.csv"

-Filter: 過濾及選取特定用戶;
-SearchBase: 只尋找特定OU內用戶名稱;
-Server: 如要搜尋其他網域,便要輸入其他伺服器名稱;
-Set-ADUSer: 設定用戶資料;
-Title: AD Job Title欄位;
-Department: AD Department欄位;
-Company: AD Company欄位;
-Manager: AD Manaer Name欄位;
-StreetAddress: 公司地址;
-City: 公位斤在城市;


發佈留言

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