如何在 Active Directory 组中填写 Notes 属性?

How to fill Notes Attribute in Active Directory Groups?

我想填写 Active Directory 组的注释。我查看了 Microsoft Docs 并编写了这段代码;

Set-ADGroup -Identity "CN=XXX,OU=XXX,DC=XXX,DC=local" -Info "HELLO"

但是,有一个错误,Microsoft Docs 告诉我们 Notes 等于 AD 中的 Info Attributes。请帮助我:)

enter image description here

试试这个:

Set-ADGroup -Identity "CN=XXX,OU=XXX,DC=XXX,DC=local" -Replace @{info="HELLO"}

-信息在这里不起作用,因为它与通用参数匹配。