Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试搜索名称以一系列字母开头的所有用户(例如 AE)。根据我所做的研究,这应该可行。
Get-ADUser -Filter "Name -like '[a-e]*'"
过滤器语法允许您使用 Powershell 运算符和参数来创建 LDAP 查询,但您仍然受限于 LDAP 的功能。我不相信这会起作用,因为在 LDAP 查询中没有类似的 blobbing 可以将其转换为。这似乎确实有效:
get-aduser -filter {(name -gt 'a') -and (name -lt 'f')}