Flushing your DNS

vv.bbcc19

Community Advocate
Community Support
Messages
1,524
Reaction score
92
Points
48
Certain times the flushing manually becomes rusty.
So put a .bat file.write the code to flush dns.then call the batch file.
Regards,
VVBB
 

throughmymind75

New Member
Messages
7
Reaction score
0
Points
0
If you want to repeatly flush your DNS without opening CMD all the time you can create a batch file.

1. Open Notepad
2. Type in or Copy/Paste : ipconfig /flushdns
3. Click File>Save As...
4. Name the file whatever you want but remove the .txt extension and put .bat
5. Click Save
6. Now every time you want to flush your DNS, just double-click on your batch file!
 

radio.stiffteens61

New Member
Messages
1
Reaction score
0
Points
0
XP And Below:
1.) Go to start->run.
2.) Type in "cmd" without the quotes.
3.) At the command prompt type "ipconfig /flushdns" again without quotes.

Vista:
1.) Click on start->All Programs->Accessories
2.) Right click on the command prompt and pick run as administrator.
3.) At the command prompt type "ipconfig /flushdns" no quotes.

Linux:
1.) Open a root terminal or use sudo (in ubuntu or similar systems) with the following command:
- "/etc/rc.d/init.d/nscd restart" (without quotes)

Mac OSX Leopard:
1.) Use the following command in a terminal window:
- "dscacheutil -flushcache" (without quotes)

Mac OSX 10.5.1 and before:
1.) Use the following command in a terminal window:
- "lookupd -flushcache" (without quotes)

This will flush your DNS and will solve a lot of issues with your computer caching the wrong information.

-Corey

whew, really help.. :) thank you...
 
Top