如何使用 Powershell 查询 msSFU30MaxUidNumber 属性?
有谁知道查询此 UNIX 属性 msSFU30MaxUidNumber 的方法 使用 Powershell 在 Active Directory 中?我正在编写一个脚本,该脚本将根据需要为用户分配 Unix 属性。我还有 Quest AD Powershell 模块可用。
Does anyone know of a way to query this UNIX attribute msSFU30MaxUidNumber
in Active Directory with Powershell? I'm working on a script that will assign Unix attribute to users as needed. I also have the Quest AD Powershell module available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我借用它来设置 UNIX 属性(NISdomain、GID、loginshell、UIDnumber、UID) http://danieltromp.com/2014/06/09/powershell-ad-enable-unix-attributes/。
我更新了它,因此它也更新了存储的 msSFU30MaxUidNumber。我见过的所有脚本都忘记了这一点。
如果您将来使用 ADUC 设置 UNIX 属性(或者即使您针对另一个 OU 再次运行该脚本),可以防止出现重复 UID 编号的问题:
I borrowed this to set UNIX attributes (NISdomain, GID, loginshell, UIDnumber, UID) http://danieltromp.com/2014/06/09/powershell-ad-enable-unix-attributes/.
I updated it so it also updates the stored msSFU30MaxUidNumber. All scripts I've seen forget this.
Prevents issues with duplicate UIDnumbers if you use ADUC to set UNIX attributes in the future (or even if you run the script again against another OU):
您似乎可以找到迄今为止分配的最高值存储在
cn=yourYPDomain,cn=ypservers,cn=ypserv30,cn=RpcServices,cn=system,dc=dom 上的
。msSFU30MaxUidNumber
属性中,dc=fr这是一个按原样给出的脚本:我现在无法在我的配置中测试它,我只是从 Microsoft 法国咨询文档(第 17 页)。
It seems that you can find the highest value assigned so far stored in
msSFU30MaxUidNumber
attribute oncn=yourYPDomain,cn=ypservers,cn=ypserv30,cn=RpcServices,cn=system,dc=dom,dc=fr
.Here is a script given as is : I'am not able to test it in my configuration now, I just write a short translation to powershell from the VBscript found in a Microsoft Consulting France document(page 17).
由于您有可用的 Quest AD cmdlet,因此这里有一些基于 JPBlanc 的答案的快速信息。它假设您正在使用已经拥有相关 AD 属性权限的帐户运行脚本:
Since you have the Quest AD cmdlets available, here's something quick based on JPBlanc's answer. It assumes that you are running your script with an account that already has privileges on the relevant AD attributes: