0

Powershell から Active Directory に配布グループを追加する方法は?

Active Directory にユーザーがいて、その部分が外部委託されるため、サーバーに移動するのではなく、特定のグループにユーザーを追加したいと考えています。

特定のユーザーの配布グループを追加する方法。

4

2 に答える 2

1

Here's the basic code:

$group = [adsi]"LDAP://CN=Group1,OU=Groups,DC=domain,DC=com" $group.member.Add('CN=User1,OU=Users,DC=domain,DC=com')
$group.SetInfo()

于 2010-06-21T16:08:33.433 に答える