From f7d66192af1c10b617068ea15ad453e7a5b98418 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 11 Sep 2023 19:28:56 +0200 Subject: [PATCH] Update clear-dns-cache.ps1 --- Scripts/clear-dns-cache.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/clear-dns-cache.ps1 b/Scripts/clear-dns-cache.ps1 index 3e598d90..3dab3f71 100755 --- a/Scripts/clear-dns-cache.ps1 +++ b/Scripts/clear-dns-cache.ps1 @@ -5,7 +5,7 @@ This PowerShell script clears the DNS client cache of the local computer. .EXAMPLE PS> ./clear-dns-cache.ps1 - ✔️ cleared DNS cache in 0 ms + ✔️ Cleared DNS cache in 1 sec .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -18,7 +18,7 @@ try { Clear-DnsClientCache [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ cleared DNS cache in $Elapsed sec" + "✔️ Cleared DNS cache in $Elapsed sec" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"