top of page

PowerShell - OU Server Inventory

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

Copy below and save as Server OU Inventory.ps1, saves output details of servers in any OU specified, c:\temp\ServerInventory.csv is the Output


get-adcomputer -SearchBase "OU=servers,dc=domain,dc=com" -filter * -property passwordlastset,operatingsystem,DNSHostName,IPv4Address,CanonicalName | select name,passwordlastset,operatingsystem,DNSHostName,IPv4Address,CanonicalName |export-csv -path c:\temp\ServerInventory.csv


 
 
 

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