要想用powershell管理域,首先先加载activedirectory模块
PS C:> import-module activedirectory
下面就可以利用get-adcomputer开干了
PS C:Windowssystem32> Get-ADComputer -SearchBase "ou=lstech,dc=lstech,dc=com" -filter * -property * | Select-Object name,operatingsystem >C:computer.csv