如何使用 powershell 更改所有用户的广告电子邮件联系人

如何使用 powershell 更改所有用户的广告电子邮件联系人

我需要一个脚本来更改我的所有广告用户的电子邮件联系字段信息。格式为“SAMAccountName + @domain.com”。我是 powershell 新手,需要一些语法方面的帮助。任何帮助都将不胜感激。

答案1

以下是我要做的事情:

安装 Active Directory Powershell 模块

编写脚本如下:

Import-Module ActiveDirectory
$users = Get-ADUser -Filter *
foreach ($user in $users)
{
    $email = $user.samaccountname + '@domain.com'
    Set-ADUser -Identity $user.samaccountname -EmailAddress $email
}

相关内容