Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JamesCalleja/2e083bc21e66708f76c2 to your computer and use it in GitHub Desktop.
Save JamesCalleja/2e083bc21e66708f76c2 to your computer and use it in GitHub Desktop.
Full list of computer in the forest
##Run from top level domain to get a full list of computer in the forest, excluding the top level domain (just run get-adcomputer for them)
(get-addomain).childdomains | %{(Get-ADDomainController -Discover -Domain $_).hostname} | %{Get-ADComputer -Filter * -Server $_ -properties * | select name,dnshostname, enabled, distinguishedname,LastLogOnDate }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment