We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad4932 commit 23f3be6Copy full SHA for 23f3be6
clear_dns.ps1
@@ -0,0 +1,10 @@
1
+Write-Host "PowerShell Game Enhancer`n"
2
+
3
+# Infinte While-Loop that clears the user's DNS until they press Ctrl + c.
4
+while($true)
5
+{
6
+ # Runs the ipconfig flush dns command to flush the user's DNS
7
+ ipconfig /flushdns;
8
+ # Adds a 2 minute delay to make the script flush the DNS every 2 minutes
9
+ sleep 120
10
+}
0 commit comments