具有多个 -OtherAttributes 的新 ADGroup?

具有多个 -OtherAttributes 的新 ADGroup?

一直收到“参数不正确”的消息。我认为我正确地遵循了 Microsoft 的方法,但它不起作用。

New-ADGroup -DisplayName $name -Name $grpName -Server server.org `
  -Path:'DC=server,DC=org' -GroupCategory Distribution `
  -GroupScope DomainLocal -Description $desc `
  -OtherAttributes @{'mail'=$email;'gidNumber'=$gid}}

Microsoft 页面显示您需要使用分号来分隔值,因此我使用

  -OtherAttributes @{'mail'=$email;'gidNumber'=$gid}}

这有错吗?没有它也可以gidNumber正常工作。

答案1

我对 otherAttribues 中带有多个属性的 gidNumber 没有任何问题,只是我需要指定组范围。 - 尝试指定组范围 - 使用较新版本的 powershell - 确保您的 $gid 有效(没有超出范围等)

相关内容