How to display and flush the DNS Resolver Cache on Windows
The DNS Resolver Cache is a temporary storage cache for DNS lookups on your local machine that allows for efficient resolution of recently accessed URLs to IP addresses.
To display the DNS Resolver Cache in Windows enter the following into the command prompt:
> ipconfig /displaydns
You will get an output that looks something like this:
> ipconfig /displaydns
Windows IP Configuration
play.google.com
—————————————-
Record Name . . . . . : play.google.com
Record Type . . . . . : 28
Time To Live . . . . . : 118
Data Length . . . . . : 16
Section . . . . . . . : Answer
AAAA Record . . . . . : 2607:f8b0:4009:802::200e
…
To flush the DNS Resolver Cache in Windows enter the following into the command prompt:
> ipconfig /flushdns
You will get an output that looks like this:
> ipconfig /flushdns
Windows IP...