PowerShell, Red PowerShell gc D:\ips.txt | %{ $result=(Resolve-DnsName $_).NameHost if($result -match 'static'){$_ + ' static'} else{$result + ' no static'} } 12345 gc D:\ips.txt | %{$result=(Resolve-DnsName $_).NameHostif($result -match 'static'){$_ + ' static'}else{$result + ' no static'}}