Powershell设置活动目录属性


活动目录模块。

Powershell可以使用哈希表设置活动目录账户,它可以从多方面设置你指定的任何属性。

以下有一个简单的例子为用户“testuser”设置属性“l”和”mail”.  只要存在的且符合其规范的信息你都可以添加:

$infos = @{}
$infos.l = 'Bahamas'
$infos.mail = 'sunny@offshore.com'

Set-ADUser -Identity testuser -Replace $infos 

原文地址:Setting Active Directory Attributes

本文链接: https://www.pstips.net/setting-active-directory-attributes.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注