top of page

PowerShell - Resolve Hostnames from text file to IP.

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

List server/Computer names in c:\temp\computers.txt, outputs IP and if cannot resolve to c:\temp\computersip.txt

foreach ($computer in (get-content C:\temp\computers.txt)) {

Try{

[system.net.Dns]::GetHostAddresses($computer) | Foreach-Object {

add-content -path C:\temp\computersips.txt -value "$computer,$($_.IPAddressToString)"

}

} Catch {

add-content -path C:\temp\computersips.txt -value "$computer,Cannot resolve hostname"

}

}



 
 
 

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