updated to NOT uninstall Teams

This commit is contained in:
2022-03-24 16:41:49 -04:00
parent 3c3c5ce10f
commit 5237e029c6
+7 -21
View File
@@ -1,24 +1,10 @@
## Stop all instances of Teams
End-Process -Name "Teams" -Match -Force
If ( $Reinstall ) {
## Uninstall Teams for current user
# $Uninstaller = "${Env:LOCALAPPDATA}\Microsoft\Teams\Update.exe"
# If ( Test-Path $Uninstaller ) {
# LogMsg "Uninstalling Teams for ${Env:USERNAME}"
# Try { Start-Process $Uninstaller -ArgumentList "--uninstall" -Wait }
# Catch { LogErr $_.Exception.Message }
# } Else { LogMsg "Teams could not be uninstalled for ${Env:USERNAME}" }
## Remove all cached content
$CacheDir = "${Env:LOCALAPPDATA}\Microsoft\Teams"
If ( Test-Path $CacheDir ) {
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
}
## Remove all cached content
$CacheDir = "${Env:LOCALAPPDATA}\Microsoft\Teams"
If ( Test-Path $CacheDir ) {
LogMsg "Removing all cached data"
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}" }