top of page

PowerShell - Get Servers/Computers OU from text list

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 10, 2022
  • 1 min read

Save this as a .ps1, create c:\temp\servers.txt and add ALL servers to discover, Outputs all server or Computers AD OU information to c:\temp\computerOUs.txt


#load a list of computers

$computerList = Get-Content "C:\temp\servers.txt"


#results array

$results = @()


#for each computer

foreach($computerName in $computerList) {

#add result of command to results array

$results += Get-ADComputer $computerName -Properties Name, DistinguishedName | Select Name, DistinguishedName

}


#send results to CSV file

$results | Export-Csv "C:\TEMP\computerOUs.txt" -NoTypeInformation



 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page