0

我正在使用下面的 powershell 命令来获取过去 60 天内未登录的计算机的列表。这将返回所有 OU 计算机。是否可以将下面的行更改为从某个 OU 返回?

Get-ADComputer -Property Name,lastLogonDate -Filter {lastLogonDate -lt $then} | FT Name,lastLogonDate
4

1 回答 1

3

从在线帮助页面尝试使用 -SearchBase 过滤器

C:\PS>Get-ADComputer -LDAPFilter "(name=*laptop*)" -SearchBase "CN=Computers,DC=Fabrikam,DC=com"
于 2013-08-22T13:40:27.073 回答