PowerShell/Scripts/check-dns-resolution.ps1

33 lines
934 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX check-dns-resolution.ps1
2021-03-22 20:10:18 +01:00
.DESCRIPTION checks the DNS resolution with frequently used domain names
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-09-29 20:05:52 +02:00
2020-10-05 13:12:12 +02:00
try {
2021-04-15 08:41:37 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2021-04-21 16:20:49 +02:00
write-progress "Reading Data/domain-names.csv..."
2021-04-15 08:41:37 +02:00
2021-03-29 16:34:51 +02:00
$PathToRepo = "$PSScriptRoot/.."
2020-12-29 15:48:24 +01:00
$Table = import-csv "$PathToRepo/Data/domain-names.csv"
2020-12-14 15:06:09 +01:00
2020-10-05 13:12:12 +02:00
foreach($Row in $Table) {
2021-03-29 16:34:51 +02:00
write-progress "Resolving $($Row.Domain) ..."
2021-03-30 09:34:52 +02:00
if ($IsLinux) {
$Ignore = nslookup $Row.Domain
} else {
$Ignore = resolve-dnsName $Row.Domain
}
2020-10-05 13:12:12 +02:00
}
$Count = $Table.Length
2021-04-14 16:18:23 +02:00
2021-04-21 16:43:08 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2021-04-21 16:20:49 +02:00
$Average = [math]::round($Count / $Elapsed, 1)
2021-06-07 20:06:55 +02:00
"✔️ $Average domains/s ($Count domains resolved in $Elapsed sec)"
2020-10-05 13:12:12 +02:00
exit 0
2020-12-09 10:30:55 +01:00
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}