PowerShell/Scripts/train-dns-cache.ps1
2020-11-06 14:30:14 +00:00

26 lines
662 B
PowerShell
Executable File

#!/snap/bin/powershell
# Syntax: ./train-dns-cache.ps1
# Description: trains the DNS cache with frequently used domain names
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
try {
$StartTime = Get-Date
$Table = import-csv domain_table.csv
foreach($Row in $Table) {
$Domain = $Row.Domain
write-progress "Training DNS cache with $Domain..."
$Ignore = nslookup $Domain
}
$Count = $Table.Length
$StopTime = Get-Date
$TimeInterval = New-Timespan -start $StartTime -end $StopTime
write-host "✔️ DNS cache trained with $Count domain names in $TimeInterval sec."
exit 0
} catch { Write-Error $Error[0] }
exit 1