Hi
Clearing DNS Cache on Windows Server With Command Prompt
Using the command prompt to clear the cache :
- Click on the Start button and type cmd
- Open the command prompt
- Enter the following command in the prompt:
ipconfig/flushdns
To flush the DNS server cache, use any of the following solutions.
Using a graphical user interface
Open the DNS Management snap-in.
Right-click on DNS in the left pane and select Connect to DNS Server.
Enter the server you want to connect to and click Enter.
Right-click on the server and select Clear Cache.
Using a command-line interface
The following command will clear the cache on <DNSServerName>
. You can leave out <DNSServerName>
to run against the local server:
dnscmd <DNSServerName> /clearcache
Hope this helps
Cheers
Luca