mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-18 16:08:19 +02:00
11 lines
249 B
PowerShell
Executable File
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
|