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

时间:2023-03-09 22:15:57
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