mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 22:10:51 +02:00
Improve check-dns-resolution.ps1
This commit is contained in:
parent
3dddcf947b
commit
2a743d6e63
@ -15,7 +15,11 @@ try {
|
|||||||
|
|
||||||
foreach($Row in $Table) {
|
foreach($Row in $Table) {
|
||||||
write-progress "Resolving $($Row.Domain) ..."
|
write-progress "Resolving $($Row.Domain) ..."
|
||||||
$Ignore = nslookup $Row.Domain
|
if ($IsLinux) {
|
||||||
|
$Ignore = nslookup $Row.Domain
|
||||||
|
} else {
|
||||||
|
$Ignore = resolve-dnsName $Row.Domain
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$Count = $Table.Length
|
$Count = $Table.Length
|
||||||
|
Loading…
Reference in New Issue
Block a user