电脑

检索 AD 计算机

Get-ADComputer -Identity "JohnLaptop"

检索与计算机关联的所有属性

Get-ADComputer -Identity "JohnLaptop" -Properties *

检索选择计算机的属性

Get-ADComputer -Identity "JohnLaptop" -Properties * | Select-Object -Property Name, Enabled