gpt4 book ai didi

powershell - 自定义属性为空的 Get-ADUser

转载 作者:行者123 更新时间:2023-12-02 23:08:54 25 4
gpt4 key购买 nike

我需要在 AD 中查询自定义 extensionAttribute10 未设置或不等于特定值的用户。我使用该命令成功获得了值不等于 100 的用户:

Get-ADUser -SearchBase "ou=OU1,ou=Users,dc=domain,dc=local" -filter 'extensionAttribute10 -ne "100"'

我应该添加什么来获得那些有值(value)的东西?我尝试了不同的方法,但没有任何效果。

请帮忙

最佳答案

要获取未设置属性的用户,您可以使用 -notlike "*"。使用 -or 将它与您已有的过滤器结合起来:

Get-ADUser -SearchBase "ou=OU1,ou=Users,dc=domain,dc=local" -filter 'extensionAttribute10 -ne "100" -or extensionAttribute10 -notlike "*"'

关于powershell - 自定义属性为空的 Get-ADUser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49631632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com