PowerShell - Get FQDN from server list
- Jon Boyette
- Jan 11, 2022
- 1 min read
Save as named.ps1, populate c:\temp\servers.txt with servers to resolve names, outputs FQDN text to temp
function Get-FQDN ($ComputerName)
{
try
{
$FQDN = ([System.Net.Dns]::GetHostByName($ComputerName)).HostName
}
catch
{
$FQDN = "$ComputerName - not found, run from same domain management server"
}
return $FQDN
}
#
Get-Content C:\temp\servers.txt | foreach -Begin {
New-Item -Path C:\temp\FQDNList.txt -ItemType File -Force | Out-Null
} -Process {
Add-Content -Path C:\temp\FQDNList.txt -Value (Get-FQDN $_)
}
Comments