无法检索Active Directory计算机描述

时间:2016-04-13 19:15:02

标签: powershell active-directory powershell-v2.0

当我跑步时:

$computer = Get-ADComputer -SearchBase 'OU="Windows 7 Machines",OU="Devices",dc=blah,dc=Local' -Filter 'name -like "computerName"' -Properties Description

我可以使用

获取AD说明
$computer.Description

我的问题是:如何在不使用-Properties Description参数的情况下获取计算机描述?

$computer = Get-ADComputer -SearchBase 'OU="Windows 7 Machines",OU="Devices",dc=blah,dc=Local' -Filter 'name -like "computerName"'

如何从$computer变量获取描述?

1 个答案:

答案 0 :(得分:2)

使用Get-ADComputer或其他一些LDAP查询工具?你没有。

指定-Properties Description是告诉Get-ADComputer cmdlet从LDAP服务器请求description字段的内容。如果您没有专门请求它,LDAP服务器不会将响应中的响应发送回cmdlet。您必须指定除默认值之外的任何字段,并且说明不是默认字段。

我的意思是,确定,好的,你可以说-Properties *,从技术上回答你的问题,但是你要求每个属性(这很糟糕;需要更长的时间)。