List of all AD servers or Computers

  • Post author:Dion Reijbroek
  • Post category:ActiveDirectory

With OS Version from powershell

List of all AD Server computers:

Get-ADComputer -Filter 'operatingsystem -like "*server*" -and enabled -eq "true"' `
-Properties Name,Operatingsystem,OperatingSystemVersion,IPv4Address |
Sort-Object -Property Operatingsystem |
Select-Object -Property Name,Operatingsystem,OperatingSystemVersion,IPv4Address

List of all AD Client computers:

Get-ADComputer -Filter 'operatingsystem -notlike "*server*" -and enabled -eq "true"' `
-Properties Name,Operatingsystem,OperatingSystemVersion,IPv4Address |
Sort-Object -Property Operatingsystem |
Select-Object -Property Name,Operatingsystem,OperatingSystemVersion,IPv4Address

Add:

| Out-Gridview for a nice overview

> c:\temp\list.txt for output to a tex file.

Tips:

When using export-csv option, use select instead of ft.