top of page

PowerShell - Get server/Computer IP with FQDN from text

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

Save as a named.ps1, pulls servers to get FQDN and IP from c:\temp\servers

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

$Array = @()

Foreach($Server in $Servers)

{

$DNSCheck = $null

$Server = $Server.trim()

$DNSCheck = ([System.Net.Dns]::GetHostByName(("$Server")))

$Object = New-Object PSObject -Property ([ordered]@{

"Server name" = $Server

"FQDN" = $DNSCheck.hostname

"IP Address" = $DNSCheck.AddressList[0]

})

# Add object to our array

$Array += $Object

}

$Array

$Array | Export-Csv -Path C:\temp\Servers_FQDN_IP.csv -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