PowerShell - Resolve Hostnames from text file to IP.
- 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"
}
}
Comments