Skip to content

NKCODE TECH GEEK ZONE

Menu
  • Home
  • Cloud
    • Azure
    • Alibaba
    • AWS
  • Hardware
  • Linux
  • Network
  • Security
  • Windows Client / Servers
    • SQL
    • Windows Client OS
      • Windows 10
    • Windows Servers
      • Windows 2008R2
      • Windows Server 2012R2
      • Windows Server 2016
      • Windows Server 2019
  • VMWARE
  • Free Tools
  • About Me
    • Disclaimer
Menu

Export a list of all your Windows Server Systems in an AD Environment using Powershell

Posted on July 16, 2019

a quick way of exporting an inventory of all the Windows Servers that reside within an AD environment.

PowerShell to the rescue!

Requirements for using PowerShell AD Module related cmdlets:

  • Windows 7 and onward with RSAT Tools Installed
  • Windows Server 2008 R2 and onward with RSAT Tools Installed or AD Domain Services Installed with its Management Tools

The following One-Liner will return a list of all the Computer objects running Windows Server OS within an AD environment. 

Get-ADComputer -Filter {OperatingSystem -like "windowsserver*"} -Properties * | sort DNSHostname | ft DNSHostName, OperatingSystem -Wrap -Auto

In case you need to export the resulted inventory to a file you just need to alter a bit the one-liner.

Get-ADComputer -Filter {OperatingSystem -like "windowsserver*"} -Properties * | sort DNSHostname | select DNSHostName, OperatingSystem | Export-Csv -Path "$home\Desktop\ADServers.csv"

Share this:

  • Click to share on X (Opens in new window) X
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to email a link to a friend (Opens in new window) Email

Like this:

Like Loading...

Related

Welcome to Teck Geek Zone

Alibaba & Azure Cloud with a free trial worth $200-1200 USD Click below Cloud Providers


  • From Backup Center to Business Continuity Center: A New Era in Azure BCDR Management
  • 🔐Secure Your Azure Storage Account Keys with Key Vault
  • Managing Azure Virtual Network Flow Logs
  • Optimizing Multi-Region Connectivity in Azure: Leveraging Global Peering with SD-WAN
  • Understanding the Differences: Availability Zone, Availability Set, and VM Scale Set

Categories

  • Cloud (173)
    • Alibaba (38)
    • AWS (33)
    • Azure (107)
  • Free Tools (5)
  • Hardware (17)
  • Linux (13)
  • Network (28)
  • Security (21)
  • VMWARE (50)
  • Windows OS (44)
    • Windows 10 (7)
  • Windows Servers (69)
    • SQL (3)
    • Windows 2008R2 (7)
    • Windows Server 2012R2 (15)
    • Windows Server 2016 (20)
    • Windows Server 2019 (10)

Subscribe to our newsletter

©2025 NKCODE TECH GEEK ZONE | Design: Newspaperly WordPress Theme
 

Loading Comments...
 

    %d