From edf9dd3f96e2170567582fd27518e614759c2c86 Mon Sep 17 00:00:00 2001 From: dyoder Date: Thu, 30 Sep 2021 08:29:14 -0400 Subject: [PATCH] minor cleanup --- Fix-MicrosoftTeams.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Fix-MicrosoftTeams.ps1 b/Fix-MicrosoftTeams.ps1 index d4f25e4..4dc31e9 100644 --- a/Fix-MicrosoftTeams.ps1 +++ b/Fix-MicrosoftTeams.ps1 @@ -14,11 +14,11 @@ If ( $Reinstall ) { ## Remove all cached content $CacheDir = "${Env:LOCALAPPDATA}\Microsoft\Teams" If ( Test-Path $CacheDir ) { - LogMsg "Removing all cached data for Teams" + LogMsg "Removing all cached data" Try { Remove-Item $CacheDir -Recurse -Force } Catch { LogErr $_.Exception.Message } } Else { LogMsg "Could not clear cached data because the directory could not be found" } ## ToDo: Reinstall Teams -} Else { LogMsg $Reinstall } \ No newline at end of file +} \ No newline at end of file