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

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

PS C:> import-module activedirectory

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

PS C:Windowssystem32> Get-ADComputer -SearchBase "ou=xxx,ou=xxx,dc=xxx,dc=com" -filter * -property * | Select-Object name,operatingsystem >\远程计算机名sharesystempowershellcomputer.txt
原文地址:https://www.cnblogs.com/mfyang/p/7056375.html