PowerShell 技能连载 - 定位锁定的 AD 账户
在搜索指定的 AD 账户时,您可能曾经用过 Get-ADUser
命令,并且用 filter 参数来过滤结果。不过这样的过滤器可能会变得非常复杂。
这就是为什么针对最常见的 AD 搜索有一个快捷方式。只需要用 Search-ADAccount
命令即可:
1 | #requires -Modules ActiveDirectory |
Search-ADAccount
暴露一系列参数来搜索最常见的条件。
PowerShell 技能连载 - 定位锁定的 AD 账户
http://blog.vichamp.com/2017/01/17/identifying-locked-ad-accounts/