• Latest
  • Trending
  • All
Answer card: flush the DNS cache on Windows by running ipconfig /flushdns in Command Prompt or PowerShell, no reboot needed.

How to flush the DNS cache on Windows

3 September 2026
Answer card stating that Cognition released SWE-2 on 10 September 2026, a coding model post-trained from Kimi K3, scoring 50.0 percent on FrontierCode 1.1 Main against 50.9 percent for Claude Fable 5.1 and 27.3 percent on Terminal-Bench 4 against 55.8 percent, available only inside Devin.

SWE-2 trails Fable 5.1 by one point, and by 28 on Terminal-Bench 4

11 September 2026
Answer card for Meta Muse, free to 100 million tokens a week then $20 a month, launched 8 September 2026 for United States adults only, running in a dedicated per user virtual machine.

Does Meta Muse do enough to earn your inbox and a card on file?

9 September 2026
Answer card stating that the public download pages for the VMware Virtual Disk Development Kit on developer.broadcom.com began returning 404 errors on 25 August 2026 with no announcement or deprecation notice, that Broadcom support tells customers the kit is no longer available for use or download, and that release lines 7.0.3.1, 8.x and 9.x are all affected.

Broadcom pulled VDDK 8.0 and 9.0, and the 404 is the only notice

8 September 2026
Answer card stating that OpenAI published its research acceleration measurements on 6 September 2026, that as of mid August 2026 its research organisation logged 3.1 agent workdays of coding agent runtime for every workday of human labour normalised to a standard eight hour day, and that OpenAI states this should not be read as a 3.1 times productivity gain because it measures runtime rather than delivered output.

OpenAI’s 3.1 agent-workdays per human day is not a 3.1x gain

7 September 2026
Answer card stating that Mullvad announced on 3 September 2026 that it is shutting down its public encrypted domain name system servers on 2 November 2026 and sponsoring the Quad9 Foundation instead, with 194.242.2.2 and its five sibling addresses all going away, and virtual private network customers unaffected.

Mullvad’s DNS servers go dark on 2 November, and Quad9 blocks no ads

5 September 2026
OpenAI announcement image for GPT-6 Astra, a spiral galaxy of white, blue and amber points of light curling around a bright core on a near black star field.

GPT-6 Astra lists at $10 and $50, 2.5x what GPT-5.6 Sol costs

6 September 2026
Google's official announcement image for the release, reading Introducing Gemini 3.8 Flash and 3.8 Flash Cyber in black type over a pale blue background with a blurred white chevron and the four colour Gemini spark below.

Gemini 3.8 Flash keeps the price and the 1 January cliff

3 September 2026
Answer card stating that Anthropic announced Enterprise Frontier Safeguards on 1 September 2026, that activity data used for misuse monitoring moves into cloud storage the customer controls under the customer own encryption keys, that Anthropic charges nothing for the feature while the cloud provider bills storage and egress, and that the phased rollout starts later in autumn 2026 with interim zero data retention on Fable 5 and Fable 5.1 for eligible customers.

Anthropic moves retention into your own cloud, for 30 days

3 September 2026
Official Google diagram of a client connection in three numbered steps: a DNS lookup with a query and an address, a TLS ClientHello and ServerHello, then a content exchange with a website. A callout on the DNS step reads 25% of global web traffic is now protected by encrypted DNS, and a callout beside an Android phone on the ClientHello step reads Android 17 supports ECH GREASE by default.

Android 17 hides the SNI, not your DNS or destination

3 September 2026
Still frame from the Claude Fable 5.1 launch video showing model-designed protein binders in orange docked against twelve grey target proteins, rendered as ESMFold2 structure predictions.

Claude Fable 5.1 breaks forced tool use, cuts cache 75%

1 September 2026
Answer card stating that on 31 August 2026 the European Commission designated ChatGPT a Very Large Online Search Engine under the Digital Services Act, the first conversational AI service classified that way, because it answers user prompts and queries including by searching the web, with OpenAI having declared roughly 159.1 million average monthly users in the European Union for ChatGPT search.

The EU now calls ChatGPT a very large search engine

3 September 2026
Answer card stating that on 31 August 2026 the Department of War added OpenAI ChatGPT Mil and Starshield AI Grok for Government to the GenAI.mil portal alongside Google Gemini, all three accredited at Impact Level 5 for Controlled Unclassified Information, with 1.7 million unique users onboarded out of roughly 3 million eligible personnel, and ChatGPT Mil currently serving GPT-5.4 Terra with GPT-5.6 Terra said to be rolling out.

ChatGPT Mil and Grok reached IL5 on GenAI.mil

3 September 2026
  • About
  • Contact
  • Privacy
  • Legal
Friday, September 11, 2026
  • Login
Packet Nebula
  • Home
  • Articles
    • Security
    • Network
    • Dev
    • Sysadmin
    • SEO
    • Email & DNS
  • Tools
    • Network tools: free, fast, no signup
    • Security tools: free, fast, no signup
    • Developer tools: free, fast, no signup
    • Sysadmin tools: free, fast, no signup
    • SEO tools: free, fast, no signup
    • Email & DNS tools: free, fast, no signup
  • Download
  • About
No Result
View All Result
Packet Nebula
No Result
View All Result
Home Network

How to flush the DNS cache on Windows

by stephane
3 September 2026
in Network
0
Answer card: flush the DNS cache on Windows by running ipconfig /flushdns in Command Prompt or PowerShell, no reboot needed.
494
SHARES
1.4k
VIEWS
Share on FacebookShare on Twitter

A site moved servers yesterday and your PC keeps loading the old one. That's the Windows DNS cache holding a stale answer, and one command clears it: open Command Prompt or PowerShell and run ipconfig /flushdns. Windows drops every hostname it cached and looks each one up fresh on the next request. Works the same on Windows 10 and 11, takes about a second. No reboot. We'll show the exact command, how to prove the cache really emptied, a service restart for the rare stuck case, and where the stale answer hides when it isn't on your machine at all.

The short answer

Open Command Prompt or PowerShell and run ipconfig /flushdns. Windows clears every cached DNS lookup and rebuilds from your DNS server on the next request. No reboot, no admin rights for the basic flush.

/flushdnsthe switch that clears it
~1 secno reboot needed
10 & 11same on both
Answer card showing ipconfig /flushdns as the command that clears the DNS cache on Windows.
One command clears the whole cache. The rest is just confirming and knowing when it won't help.

Open a prompt and flush the cache

Press the Windows key and type cmd, then Enter. A normal prompt does it. You’d only need Run as administrator later, and only if you end up restarting the DNS service in the last step.

Windows
ipconfig /flushdns

You’ll see the line “Successfully flushed the DNS Resolver Cache.” That’s it. Done. The exact same command works in PowerShell, and there’s also a native cmdlet, Clear-DnsClientCache, though honestly I just type the ipconfig one from muscle memory.

Confirm it worked, and what to do when it isn’t enough

Want proof rather than trust? Ask Windows what’s in the cache:

Windows
ipconfig /displaydns

Right after a flush this prints almost nothing. Then it fills back up as you open sites again. Here’s the before and after in one terminal:

Command Prompt showing ipconfig /flushdns reporting success, then ipconfig /displaydns showing an empty cache.
Flush, then confirm. The cache rebuilds itself on the next lookup.

Once in a while the cache seems stuck. When that happens we restart the DNS Client service. Command Prompt opened as administrator this time:

Windows
net stop dnscache && net start dnscache

“Access is denied” means the prompt isn’t elevated. Reopen it with Run as administrator and try again.

When the stale answer is somewhere else

If a site still points at the wrong server after all this, the cache you need isn’t on your PC. Your browser keeps its own DNS cache (Chrome clears it at chrome://net-internals/#dns), and the home router caches lookups too, a reboot clears that one. The last suspect is public resolvers: they hold the record until its TTL runs out, and no local command can shortcut that wait.

On Linux instead? The resolvers are completely different there: see how to flush the DNS cache on Linux.

When the flush changes nothing, the cache you cleared probably wasn’t the one answering. There are three others, and they’re all common.

Your browser keeps its own. In anything Chromium based, open chrome://net-internals/#dns and clear the host cache there, because it survives an ipconfig /flushdns quite happily. Then check the hosts file at C:WindowsSystem32driversetchosts, which overrides DNS entirely and is where old test entries go to haunt people months later.

The modern one catches almost everybody. If secure DNS is on in your browser, DNS over HTTPS means the browser never asks Windows in the first place, so the OS cache is irrelevant to what you’re seeing on screen. It’s under Privacy and security, then Security, in Chrome and Edge. Turn it off temporarily when you’re debugging a resolution problem, otherwise you’re troubleshooting a resolver that isn’t being used.

Frequently asked questions

Do I need administrator rights to flush the DNS cache?

No, not for the basic ipconfig /flushdns. A normal Command Prompt does it. You'd only need an elevated prompt to go further and restart the DNS Client service with "net stop dnscache", and that's rarely necessary.

How do I know the flush actually worked?

The command prints "Successfully flushed the DNS Resolver Cache" on success. Want proof anyway? Run "ipconfig /displaydns" right after: a freshly flushed cache is nearly empty, then it refills as you browse.

I flushed the cache but the site still resolves to the old IP. Why?

The stale answer probably lives somewhere else. Your browser keeps its own DNS cache (in Chrome, clear it at chrome://net-internals/#dns) and the home router caches too. The last suspect is public resolvers: they hold the record until its TTL expires, and our DNS TTL guide explains why that wait can't be skipped.

What’s the PowerShell equivalent of ipconfig /flushdns?

Clear-DnsClientCache. Same job, and it's handier in scripts. Both clear the same Windows resolver cache, so use whichever shell you've already got open.

Tags: cachednsguideipconfigwindows
Share198Tweet124
stephane

stephane

  • Trending
  • Comments
  • Latest
The Agentic Coding section of the official Hy4 preview benchmark appendix published by Tencent, a table comparing Hy3 and Hy4 preview against DeepSeek V4 Pro 0813, Qwen 3.8 Max, GLM 5.3, Kimi K3, GPT 5.6 Sol and Claude Opus 5 across SWE-bench Multilingual, SWE-bench Pro, DeepSWE, three SWE Atlas tasks, SWE-Marathon, Terminal-Bench 2.1, NL2Repo-Bench, CyberGym, ProgramBench, PostTrainBench and Harbor-Index.

Tencent’s 770B Hy4 tops one benchmark row in 46

3 September 2026
Answer card: Proton Lumo 2.0 is private by policy, not by locality. Saved history is locked so even Proton cannot read it, but the prompt is decrypted on a Proton EU server to answer it, then forgotten.

Proton Lumo 2.0 review: how private is it, really?

3 September 2026
Answer card: Apple released iOS 26.6 and iPadOS 26.6 on 27 July 2026 with a release note covering bug fixes, security updates and an optimized Spotlight index to prepare for iOS 27, the index the rebuilt Siri reads for personal context.

iOS 26.6 is out: the Spotlight index it quietly builds

27 July 2026
Answer card: JWTs are not encrypted, anyone can read them; the signature proves who issued the token, not who may read it.

Are JWTs encrypted? No, and the difference will bite you

0
Answer card: a random 8 character password falls in under 2 hours offline, while 16 random characters hold for 1.4 trillion years at the same speed.

How long does it take to crack a password in 2026?

0
Answer card: three DNS records decide if your mail lands or bounces; SPF lists allowed senders, DKIM signs messages, DMARC sets the failure policy.

SPF, DKIM and DMARC explained: the records your email needs

0
Answer card stating that Cognition released SWE-2 on 10 September 2026, a coding model post-trained from Kimi K3, scoring 50.0 percent on FrontierCode 1.1 Main against 50.9 percent for Claude Fable 5.1 and 27.3 percent on Terminal-Bench 4 against 55.8 percent, available only inside Devin.

SWE-2 trails Fable 5.1 by one point, and by 28 on Terminal-Bench 4

11 September 2026
Answer card for Meta Muse, free to 100 million tokens a week then $20 a month, launched 8 September 2026 for United States adults only, running in a dedicated per user virtual machine.

Does Meta Muse do enough to earn your inbox and a card on file?

9 September 2026
Answer card stating that the public download pages for the VMware Virtual Disk Development Kit on developer.broadcom.com began returning 404 errors on 25 August 2026 with no announcement or deprecation notice, that Broadcom support tells customers the kit is no longer available for use or download, and that release lines 7.0.3.1, 8.x and 9.x are all affected.

Broadcom pulled VDDK 8.0 and 9.0, and the 404 is the only notice

8 September 2026
  • About
  • Contact
  • Privacy
  • Legal

Copyright © 2026 Stephane Cardon.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Articles
    • Security
    • Network
    • Dev
    • Sysadmin
    • SEO
    • Email & DNS
  • Tools
    • Network tools: free, fast, no signup
    • Security tools: free, fast, no signup
    • Developer tools: free, fast, no signup
    • Sysadmin tools: free, fast, no signup
    • SEO tools: free, fast, no signup
    • Email & DNS tools: free, fast, no signup
  • Download
  • About

Copyright © 2026 Stephane Cardon.