top of page

PowerShell - Get Computers OU from text list

  • Writer: Jon Boyette
    Jon Boyette
  • Apr 15, 2022
  • 1 min read

Name as a GET-Computers-OU.ps1, this will parse the text file and get all the OU's each computer is in, within ACTIVE Directory

#load a list of computers

$computerList = Get-Content "C:\temp\host.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