mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-25 17:33:17 +01:00
Improved refresh_dns_cache.ps1
This commit is contained in:
parent
17a251641e
commit
93687c7137
@ -6,9 +6,10 @@
|
||||
# Source: github.com/fleschutz/PowerShell
|
||||
# License: CC0
|
||||
|
||||
$DomainList = import-csv refresh_domains.csv
|
||||
$DomainTable = import-csv refresh_domains.csv
|
||||
|
||||
foreach($Domain in $DomainList) {
|
||||
ping -c 1 $Domain
|
||||
foreach($Line in $DomainTable) {
|
||||
$Ignore = Invoke-WebRequest $Line.Domain
|
||||
}
|
||||
write-host "Done."
|
||||
exit 0
|
||||
|
@ -1,5 +1,22 @@
|
||||
DOMAIN
|
||||
Domain
|
||||
aldi-sued.de
|
||||
all-in.de
|
||||
amazon.com
|
||||
amazon.de
|
||||
bild.de
|
||||
bing.com
|
||||
bing.de
|
||||
ebook300.com
|
||||
fleschutz.de
|
||||
fritz.box
|
||||
golem.de
|
||||
google.com
|
||||
|
||||
heise.de
|
||||
lidl.de
|
||||
slashdot.com
|
||||
microsoft.com
|
||||
ubuntu.com
|
||||
wired.com
|
||||
youtube.com
|
||||
youtube.de
|
||||
zdf.de
|
||||
|
|
Loading…
Reference in New Issue
Block a user