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}" }