PowerShell/Scripts/refresh_dns_cache.ps1
2020-06-08 20:23:43 +00:00

11 lines
249 B
PowerShell
Executable File

#!/snap/bin/powershell
#
# PowerShell Script to Refresh the DNS Cache
# ------------------------------------------
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
Resolve-DnsName -name bing.com -DnsOnly
exit 0