Watch Demo×
×

See NinjaOne in action!

By submitting this form, I accept NinjaOne's privacy policy.

Mastering DNS Cache Management: Flush DNS with PowerShell

Key takeaways

  • Automated DNS cache clearing: The PowerShell script automates clearing DNS cache, crucial for network maintenance.
  • Flexibility in execution: Adjustable attempts for DNS cache clearing cater to different network scenarios.
  • Compatibility with Windows versions: Works on Windows 10 and above; uses fallback commands for older versions.
  • Time-efficient troubleshooting: Streamlines the process, saving time compared to manual cache clearing.
  • Routine maintenance tool: Ideal for regular use in IT environments to ensure up-to-date DNS information.
  • Potential network impact: Be mindful of the slight increase in DNS query times post-cache flushing.
  • Monitoring post-clearing: Essential to verify cache status after execution for effectiveness.
  • Integration with IT management tools: Benefits from pairing with tools like NinjaOne for broader network health management.

Introduction

Managing DNS cache is a crucial aspect of network troubleshooting and maintenance. Efficiently clearing the DNS cache can resolve a host of connectivity issues and enhance network performance. This is where PowerShell scripts, like the one in focus today, become invaluable for IT professionals and Managed Service Providers (MSPs). 

Background

DNS (Domain Name System) caching is a process where DNS queries are stored locally on a machine. While this improves load times and reduces DNS server requests, it can lead to problems when outdated or corrupt data is cached. The script we are examining automates the process of clearing the DNS cache, a routine yet vital task in the IT world, particularly beneficial in environments where network reliability is paramount.

The script:

<#
.SYNOPSIS
    Clear's the DNS Cache the number of times you specify (defaults to 3).
.DESCRIPTION
    Clear's the DNS Cache the number of times you specify (defaults to 3).
.EXAMPLE
    (No Parameters)

    DNS Cache clearing attempt 1.
    DNS Cache cleared successfully!

    DNS Cache clearing attempt 2.
    DNS Cache cleared successfully!

    DNS Cache clearing attempt 3.
    DNS Cache cleared successfully!

PARAMETER: -Attempts "1"
    Replace 1 with the number of times you'd like to clear the dns cache.

.EXAMPLE
    -Attempts "1"
    
    DNS Cache clearing attempt 1.
    DNS Cache cleared successfully!

.OUTPUTS
    None
.NOTES
    Minimum OS Architecture Supported: Windows 10, Windows Server 2016
    Release Notes: Renamed script and added Script Variable support
By using this script, you indicate your acceptance of the following legal terms as well as our Terms of Use at https://www.ninjaone.com/terms-of-use.
    Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms. 
    Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party. 
    Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library or website belonging to or under the control of any other software provider. 
    Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations. 
    Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks. 
    Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script. 
    EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).
#>

[CmdletBinding()]
param (
    [Parameter()]
    [int]$Attempts = 3
)

begin {
    # If script form is used overwrite the parameter
    if ($env:numberOfTimesToClearCache -and $env:numberOfTimesToClearCache -notlike "null") { $Attempts = $env:numberOfTimesToClearCache }
}
process {

    try {
        # Settiing $i to 1 for readability purposes
        $i = 1

        # Adding 1 to attempts again for readability purposes
        if ($Attempts -ne 0) { $Attempts = $Attempts + 1 }

        # Loop through flush dns command
        For ($i; $i -lt $Attempts; $i++) {
            Start-Sleep -Seconds 1
            Write-Host "DNS Cache clearing attempt $i."
            if ((Get-Command Clear-DNSClientCache -ErrorAction SilentlyContinue)) {
                Clear-DnsClientCache -ErrorAction Stop
                Write-Host "DNS Cache cleared successfully!`n"
            }
            else {
                $dnsflush = ipconfig.exe /flushdns | Where-Object { $_ } | Out-String
                Write-Host "$dnsflush"

                if ($dnsflush -like "*Could not flush the DNS Resolver Cache*") {
                    throw "Could not flush the DNS Resolver Cache."
                }
            }
        }
    }
    catch {
        Write-Error "Failed to clear DNS Cache?"
        exit 1
    }

    # Write out the current dns cache
    Write-Host "### Current DNS Cache ###"
    
    # Get-DNSClientCache isn't a thing in PowerShell 2.0
    if ((Get-Command Get-DNSClientCache -ErrorAction SilentlyContinue)) {
        $currentcache = Get-DnsClientCache | Format-Table Entry, TimeToLive, Data | Out-String
    }
    else {
        $currentcache = ipconfig.exe /displaydns
        $currentcache = $currentcache -replace "Windows IP Configuration" | Where-Object { $_ } | Out-String
    }
    if (-not $currentcache -or $currentcache -like "*Could not display the DNS Resolver Cache.*") {
        Write-Warning "DNS Cache is currently empty."
    }
    else {
        Write-Host $currentcache
    }
}
end {
    
    
    
}

 

Access over 300+ scripts in the NinjaOne Dojo

Get Access

Detailed breakdown

The script is designed to clear the DNS cache multiple times, with the default set to three. It starts by declaring a parameter Attempts, with a default value of 3, which can be altered as needed. The script begins by checking if an environment variable is set to override this parameter, providing flexibility in different execution contexts.

The core functionality lies in a loop, which iterates based on the number of attempts specified. It utilizes the PowerShell cmdlet Clear-DnsClientCache to clear the cache. If this cmdlet is unavailable, it resorts to the ipconfig /flushdns command, ensuring compatibility across different Windows versions. The script then outputs the current state of the DNS cache, aiding in verification of the flush.

Potential use cases

Consider an MSP managing a corporate network where users suddenly experience connectivity issues to a recently migrated internal website. Using this script, the MSP can quickly clear DNS caches on multiple machines, ensuring all users access the most current DNS records.

Comparisons

Traditionally, DNS cache is cleared manually using ipconfig /flushdns in the command prompt. This script simplifies and automates this process, particularly useful when dealing with multiple systems. Compared to manual clearing, this automated approach is less error-prone and time-efficient.

FAQs

  • What are the prerequisites for this script?
    • Windows PowerShell environment and administrative privileges.
  • Can this script run on all Windows versions?
    • It supports Windows 10 and above. For older versions, it defaults to ipconfig /flushdns.

Implications

Frequent DNS cache flushing, while useful in resolving connectivity issues, may slightly increase DNS query times initially as the cache rebuilds. It’s a trade-off between ensuring up-to-date DNS information and query efficiency.

Recommendations

  • Use sparingly: Run the script only when necessary to avoid unnecessary network overhead.
  • Customization: Modify the number of attempts based on your network environment.
  • Monitor results: Always check the DNS cache post-execution to ensure the desired outcome.

Final thoughts

In the realm of network management, tools like NinjaOne can complement scripts such as this by providing comprehensive monitoring and management capabilities. They help in not just executing tasks like DNS flush but also in maintaining overall network health, showcasing the synergy between automation scripts and integrated IT management solutions.

Next Steps

Building an efficient and effective IT team requires a centralized solution that acts as your core service deliver tool. NinjaOne enables IT teams to monitor, manage, secure, and support all their devices, wherever they are, without the need for complex on-premises infrastructure.

Learn more about NinjaOne Remote Script Deployment, check out a live tour, or start your free trial of the NinjaOne platform.

Categories:

You might also like

NinjaOne Terms & Conditions

By clicking the “I Accept” button below, you indicate your acceptance of the following legal terms as well as our Terms of Use:

  • Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms.
  • Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party.
  • Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library belonging to or under the control of any other software provider.
  • Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations.
  • Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks.
  • Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script.
  • EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).