powershell 统计AD中所有计算机及对应的操作系统信息

要想用powershell管理域,首先先加载activedirectory模块

PS C:\> import-module activedirectory

 

下面就可以利用get-adcomputer开干了

PS C:\Windows\system32> Get-ADComputer -SearchBase "ou=xxx,ou=xxx,dc=xxx,dc=com" -filter * -property * | Select-Object name,operatingsystem >\\远程计算机名\share\system\powershell\computer.txt
posted @ 2017-06-20 21:19  mfyang  阅读(4022)  评论(0编辑  收藏  举报