From 923e162f1a13de139e113c6f607ee469811e8611 Mon Sep 17 00:00:00 2001 From: David Yoder Date: Thu, 24 Mar 2022 16:48:37 -0400 Subject: [PATCH] update to log message --- Fix-MicrosoftTeams.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fix-MicrosoftTeams.ps1 b/Fix-MicrosoftTeams.ps1 index 5e2a716..b43d9c0 100644 --- a/Fix-MicrosoftTeams.ps1 +++ b/Fix-MicrosoftTeams.ps1 @@ -4,7 +4,7 @@ End-Process -Name "Teams" -Match -Force ## Remove all cached content $CacheDir = "${Env:LOCALAPPDATA}\Microsoft\Teams" If ( Test-Path $CacheDir ) { - LogMsg "Removing all cached data" + LogMsg "Removing all cached data for Microsoft Teams" Try { Remove-Item $CacheDir -Recurse -Force } Catch { LogErr $_.Exception.Message } } Else { LogMsg "Could not clear cached data for Microsoft Teams because the directory could not be found: ${CacheDir}" }