UninstallTeams.ps1
<#PSScriptInfo
.VERSION 1.2.0 .GUID 75abbb52-e359-4945-81f6-3fdb711239a9 .AUTHOR asherto .COMPANYNAME asheroto .TAGS PowerShell, Microsoft Teams, remove, uninstall, delete, erase, uninstaller, widget, chat, enable, disable, change .PROJECTURI https://github.com/asheroto/UninstallTeams .RELEASENOTES [Version 0.0.1] - Initial Release. [Version 0.0.2] - Fixed typo and confirmed directory existence before removal. [Version 0.0.3] - Added support for Uninstall registry key. [Version 0.0.4] - Added to GitHub. [Version 0.0.5] - Fixed signature. [Version 0.0.6] - Fixed various bugs. [Version 0.0.7] - Added removal AppxPackage. [Version 0.0.8] - Added removal of startup entries. [Version 1.0.0] - Added ability to optionally disable Chat widget (Win+C) which will reinstall Teams. Major refactor of code. [Version 1.0.1] - Added URL to -CheckForUpdate function when script is out of date. [Version 1.0.2] - Improve description. [Version 1.0.3] - Fixed bug with -Version. [Version 1.0.4] - Improved CheckForUpdate function by converting time to local time and switching to variables. [Version 1.0.5] - Changed -CheckForUpdates to -CheckForUpdate. [Version 1.1.0] - Various bug fixes. Added removal of Desktop and Start Menu shortcuts. Added method to prevent Office from installing Teams. Added folders and registry keys to detect. [Version 1.1.1] - Improved Chat widget warning detection. Improved output into section headers. [Version 1.1.2] - Improved DisableOfficeTeamsInstall by adding registry key if it doesn't exist. [Version 1.1.3] - Added TeamsMachineInstaller registry key for deletion. [Version 1.1.4] - Added Teams uninstall registry key for deletion. [Version 1.2.0] - Improved functionality of uninstall key removal by detecting MsiExec product GUID to uninstall teams. Added additional startup registry keys. #> <# .SYNOPSIS Uninstalls Microsoft Teams completely. Optional parameters to disable the Chat widget (Win+C) and prevent Office from installing Teams. .DESCRIPTION Uninstalls Microsoft Teams completely. Optional parameters to disable the Chat widget (Win+C) and prevent Office from installing Teams. The script stops the Teams process, uninstalls Teams using the uninstall key, uninstalls Teams from the Program Files (x86) directory, uninstalls Teams from the AppData directory, removes the Teams AppxPackage, deletes the Microsoft Teams directory in AppData, deletes the Teams directory in AppData, removes the startup registry keys for Teams, and removes the Desktop and Start Menu icons for Teams. .PARAMETER DisableChatWidget Disables the Chat widget (Win+C) for Microsoft Teams. .PARAMETER EnableChatWidget Enables the Chat widget (Win+C) for Microsoft Teams. .PARAMETER UnsetChatWidget Removes the Chat widget registry value, effectively enabling it since that is the default. .PARAMETER AllUsers Applies the Chat widget setting to all user profiles on the machine. .PARAMETER DisableOfficeTeamsInstall Disable Office's ability to install Teams. .PARAMETER EnableOfficeTeamsInstall Enable Office's ability to install Teams. .PARAMETER UnsetOfficeTeamsInstall Removes the Office Teams registry value, effectively enabling it since that is the default. .EXAMPLE UninstallTeams -DisableChatWidget Disables the Chat widget (Win+C) for Microsoft Teams. .EXAMPLE UninstallTeams -EnableChatWidget Enables the Chat widget (Win+C) for Microsoft Teams. .EXAMPLE UninstallTeams -UnsetChatWidget Removes the Chat widget value, effectively enabling it since that is the default. .EXAMPLE UninstallTeams -DisableChatWidget -AllUsers Disables the Chat widget (Win+C) for Microsoft Teams for all user profiles on the machine. .EXAMPLE UninstallTeams -EnableChatWidget -AllUsers Enables the Chat widget (Win+C) for Microsoft Teams for all user profiles on the machine. .EXAMPLE UninstallTeams -UnsetChatWidget -AllUsers Removes the Chat widget value, effectively enabling it since that is the default, for all user profiles on the machine. .EXAMPLE UninstallTeams -DisableOfficeTeamsInstall Disable Office's ability to install Teams. .EXAMPLE UninstallTeams -EnableOfficeTeamsInstall Enable Office's ability to install Teams. .EXAMPLE UninstallTeams -UnsetOfficeTeamsInstall Removes the Office Teams registry value, effectively enabling it since that is the default. .NOTES Version : 1.2.0 Created by : asheroto .LINK Project Site: https://github.com/asheroto/UninstallTeams #> #Requires -RunAsAdministrator param ( [switch]$EnableChatWidget, [switch]$DisableChatWidget, [switch]$UnsetChatWidget, [switch]$EnableOfficeTeamsInstall, [switch]$DisableOfficeTeamsInstall, [switch]$UnsetOfficeTeamsInstall, [switch]$AllUsers, [switch]$Version, [switch]$Help, [switch]$CheckForUpdate ) # Version $CurrentVersion = '1.2.0' $RepoOwner = 'asheroto' $RepoName = 'UninstallTeams' $PowerShellGalleryName = 'UninstallTeams' # Versions $ProgressPreference = 'SilentlyContinue' # Suppress progress bar (makes downloading super fast) $ConfirmPreference = 'None' # Suppress confirmation prompts # Display version if -Version is specified if ($Version.IsPresent) { $CurrentVersion exit 0 } # Display full help if -Help is specified if ($Help) { Get-Help -Name $MyInvocation.MyCommand.Source -Full exit 0 } # Display $PSVersionTable and Get-Host if -Verbose is specified if ($PSBoundParameters.ContainsKey('Verbose') -and $PSBoundParameters['Verbose']) { $PSVersionTable Get-Host } function Get-GitHubRelease { <# .SYNOPSIS Fetches the latest release information of a GitHub repository. .DESCRIPTION This function uses the GitHub API to get information about the latest release of a specified repository, including its version and the date it was published. .PARAMETER Owner The GitHub username of the repository owner. .PARAMETER Repo The name of the repository. .EXAMPLE Get-GitHubRelease -Owner "asheroto" -Repo "winget-install" This command retrieves the latest release version and published datetime of the winget-install repository owned by asheroto. #> [CmdletBinding()] param ( [string]$Owner, [string]$Repo ) try { $url = "https://api.github.com/repos/$Owner/$Repo/releases/latest" $response = Invoke-RestMethod -Uri $url -ErrorAction Stop $latestVersion = $response.tag_name $publishedAt = $response.published_at # Convert UTC time string to local time $UtcDateTime = [DateTime]::Parse($publishedAt, [System.Globalization.CultureInfo]::InvariantCulture, [System.Globalization.DateTimeStyles]::RoundtripKind) $PublishedLocalDateTime = $UtcDateTime.ToLocalTime() [PSCustomObject]@{ LatestVersion = $latestVersion PublishedDateTime = $PublishedLocalDateTime } } catch { Write-Error "Unable to check for updates.`nError: $_" exit 1 } } function CheckForUpdate { param ( [string]$RepoOwner, [string]$RepoName, [version]$CurrentVersion, [string]$PowerShellGalleryName ) $Data = Get-GitHubRelease -Owner $RepoOwner -Repo $RepoName if ($Data.LatestVersion -gt $CurrentVersion) { Write-Output "`nA new version of $RepoName is available.`n" Write-Output "Current version: $CurrentVersion." Write-Output "Latest version: $($Data.LatestVersion)." Write-Output "Published at: $($Data.PublishedDateTime).`n" Write-Output "You can download the latest version from https://github.com/$RepoOwner/$RepoName/releases`n" if ($PowerShellGalleryName) { Write-Output "Or you can run the following command to update:" Write-Output "Install-Script $PowerShellGalleryName -Force`n" } } else { Write-Output "`n$RepoName is up to date.`n" Write-Output "Current version: $CurrentVersion." Write-Output "Latest version: $($Data.LatestVersion)." Write-Output "Published at: $($Data.PublishedDateTime)." Write-Output "`nRepository: https://github.com/$RepoOwner/$RepoName/releases`n" } exit 0 } function Get-ChatWidgetStatus { param ( [switch]$AllUsers ) if ($AllUsers) { $RegistryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" } else { $RegistryPath = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" } if (Test-Path $RegistryPath) { $ChatIconValue = (Get-ItemProperty -Path $RegistryPath -Name "ChatIcon" -ErrorAction SilentlyContinue).ChatIcon if ($null -eq $ChatIconValue) { return "Unset (default is enabled)" } elseif ($ChatIconValue -eq 1) { return "Enabled" } elseif ($ChatIconValue -eq 2) { return "Hidden" } elseif ($ChatIconValue -eq 3) { return "Disabled" } } return "Unset (default is enabled)" } function Set-ChatWidgetStatus { param ( [switch]$EnableChatWidget, [switch]$DisableChatWidget, [switch]$UnsetChatWidget, [switch]$AllUsers ) if ($AllUsers) { $RegistryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" } else { $RegistryPath = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Windows Chat" } if ($EnableChatWidget) { $WhatChanged = "enabled" if (Test-Path $RegistryPath) { Set-ItemProperty -Path $RegistryPath -Name "ChatIcon" -Value 1 -Type DWord -Force } else { New-Item -Path $RegistryPath | Out-Null Set-ItemProperty -Path $RegistryPath -Name "ChatIcon" -Value 1 -Type DWord -Force } } elseif ($DisableChatWidget) { $WhatChanged = "disabled" if (Test-Path $RegistryPath) { Set-ItemProperty -Path $RegistryPath -Name "ChatIcon" -Value 3 -Type DWord -Force } else { New-Item -Path $RegistryPath | Out-Null Set-ItemProperty -Path $RegistryPath -Name "ChatIcon" -Value 3 -Type DWord -Force } } elseif ($UnsetChatWidget) { $WhatChanged = "unset" if (Test-Path $RegistryPath) { Remove-ItemProperty -Path $RegistryPath -Name "ChatIcon" -ErrorAction SilentlyContinue } } if ($AllUsers) { $AllUsersString = "all users" } else { $AllUsersString = "the current user" } Write-Output "Chat widget has been $WhatChanged for $AllUsersString." } function Get-OfficeTeamsInstallStatus { # According to Microsoft, HKLM is the only key that matters for this (no HKCU) $RegistryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Office\16.0\Common\OfficeUpdate" if (Test-Path $RegistryPath) { $OfficeTeamsInstallValue = (Get-ItemProperty -Path $RegistryPath).PreventTeamsInstall if ($null -eq $OfficeTeamsInstallValue) { return "Unset (default is enabled)" } elseif ($OfficeTeamsInstallValue -eq 0) { return "Enabled" } elseif ($OfficeTeamsInstallValue -eq 1) { return "Disabled" } } return "Unset (default is enabled)" } function Set-OfficeTeamsInstallStatus { param ( [switch]$EnableOfficeTeamsInstall, [switch]$DisableOfficeTeamsInstall, [switch]$UnsetOfficeTeamsInstall ) $RegistryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Office\16.0\Common\OfficeUpdate" if (-Not (Test-Path $RegistryPath)) { Write-Output "Creating registry path $RegistryPath." New-Item -Path $RegistryPath -Force | Out-Null } if ($EnableOfficeTeamsInstall) { $WhatChanged = "enabled" Set-ItemProperty -Path $RegistryPath -Name "PreventTeamsInstall" -Value 0 -Type DWord -Force } elseif ($DisableOfficeTeamsInstall) { $WhatChanged = "disabled" Set-ItemProperty -Path $RegistryPath -Name "PreventTeamsInstall" -Value 1 -Type DWord -Force } elseif ($UnsetOfficeTeamsInstall) { $WhatChanged = "unset (default is enabled)" Remove-ItemProperty -Path $RegistryPath -Name "PreventTeamsInstall" -ErrorAction SilentlyContinue } Write-Output "Office's ability to install Teams has been $WhatChanged." } function Check-GitHubRelease { param ( [string]$Owner, [string]$Repo ) try { $url = "https://api.github.com/repos/$Owner/$Repo/releases/latest" $response = Invoke-RestMethod -Uri $url -ErrorAction Stop $latestVersion = $response.tag_name $publishedAt = $response.published_at [PSCustomObject]@{ LatestVersion = $latestVersion PublishedAt = $publishedAt } } catch { Write-Error "Unable to check for updates. Error: $_" exit 1 } } function Write-Section($text) { <# .SYNOPSIS Prints a text block surrounded by a section divider for enhanced output readability. .DESCRIPTION This function takes a string input and prints it to the console, surrounded by a section divider made of hash characters. It is designed to enhance the readability of console output. .PARAMETER text The text to be printed within the section divider. .EXAMPLE Write-Section "Downloading Files..." This command prints the text "Downloading Files..." surrounded by a section divider. #> Write-Output "" Write-Output ("#" * ($text.Length + 4)) Write-Output "# $text #" Write-Output ("#" * ($text.Length + 4)) Write-Output "" } # Uninstall from Uninstall registry key UninstallString function Get-UninstallString { param ( [string]$Match ) $result = @() try { $uninstallKeys = "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall", ` "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall", ` "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall", ` "HKCU:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" foreach ($key in $uninstallKeys) { if (Test-Path $key) { Get-Item $key | Get-ChildItem | Where-Object { $_.GetValue("DisplayName") -like "*${Match}*" } | ForEach-Object { $obj = [PSCustomObject]@{ DisplayName = $_.GetValue("DisplayName") UninstallString = $_.GetValue("UninstallString") } $result += $obj } } } return $result } catch { # Silence errors within the function } } function Remove-Shortcut { param ( [string]$ShortcutName, [string]$ShortcutPathName, [string]$UserPath, [string]$PublicPath ) try { $userShortcutPath = Join-Path -Path $UserPath -ChildPath "$ShortcutName.lnk" $publicShortcutPath = Join-Path -Path $PublicPath -ChildPath "$ShortcutName.lnk" if (Test-Path -Path $userShortcutPath) { Write-Output "Deleting $ShortcutName from the user's $ShortcutPathName..." Remove-Item -Path $userShortcutPath } if (Test-Path -Path $publicShortcutPath) { Write-Output "Deleting $ShortcutName from the public $ShortcutPathName..." Remove-Item -Path $publicShortcutPath } } catch { Write-Output "An error occurred while attempting to delete the shortcut." } } function Remove-DesktopShortcuts { param ( [string]$ShortcutName ) $userDesktopPath = [Environment]::GetFolderPath("Desktop") $publicDesktopPath = "$env:PUBLIC\Desktop" Remove-Shortcut -ShortcutPathName "Desktop" -ShortcutName $ShortcutName -UserPath $userDesktopPath -PublicPath $publicDesktopPath } function Remove-StartMenuShortcuts { param ( [string]$ShortcutName ) $userStartMenuPath = [Environment]::GetFolderPath("StartMenu") + "\Programs" $publicStartMenuPath = "$env:ALLUSERSPROFILE\Microsoft\Windows\Start Menu\Programs" Remove-Shortcut -ShortcutPathName "Start Menu" -ShortcutName $ShortcutName -UserPath $userStartMenuPath -PublicPath $publicStartMenuPath } # ============================================================================ # # Initial checks # ============================================================================ # # Check for updates if -CheckForUpdate is specified if ($CheckForUpdate) { CheckForUpdate -RepoOwner $RepoOwner -RepoName $RepoName -CurrentVersion $CurrentVersion -PowerShellGalleryName $PowerShellGalleryName } # Check if exactly one or none of -EnableChatWidget, -DisableChatWidget, or -UnsetChatWidget is specified $chatWidgetCount = ($EnableChatWidget, $DisableChatWidget, $UnsetChatWidget).Where({ $_ }).Count if ($chatWidgetCount -gt 1) { Write-Warning "Please choose only one of -EnableChatWidget, -DisableChatWidget, or -UnsetChatWidget." exit 1 } # Check if -AllUsers is specified without one of -EnableChatWidget, -DisableChatWidget, or -UnsetChatWidget if ($AllUsers -and $chatWidgetCount -eq 0) { Write-Error "The -AllUsers switch can only be used with -EnableChatWidget, -DisableChatWidget, or -UnsetChatWidget. UninstallTeams will always remove Teams for the local machine." exit 1 } # Similar checks for -EnableOfficeTeamsInstall, -DisableOfficeTeamsInstall, or -UnsetOfficeTeamsInstall $officeTeamsInstallCount = ($EnableOfficeTeamsInstall, $DisableOfficeTeamsInstall, $UnsetOfficeTeamsInstall).Where({ $_ }).Count if ($officeTeamsInstallCount -gt 1) { Write-Warning "Please choose only one of -EnableOfficeTeamsInstall, -DisableOfficeTeamsInstall, or -UnsetOfficeTeamsInstall." exit 1 } try { # Spacer Write-Output "" # Heading Write-Output "UninstallTeams $CurrentVersion" Write-Output "To check for updates, run UninstallTeams -CheckForUpdate" # Spacer Write-Output "" # Default $Uninstall = $true # Chat widget if ($EnableChatWidget) { Set-ChatWidgetStatus -EnableChatWidget -AllUsers:$AllUsers $Uninstall = $false } elseif ($DisableChatWidget) { Set-ChatWidgetStatus -DisableChatWidget -AllUsers:$AllUsers $Uninstall = $false } elseif ($UnsetChatWidget) { Set-ChatWidgetStatus -UnsetChatWidget -AllUsers:$AllUsers $Uninstall = $false } # Office Teams install if ($EnableOfficeTeamsInstall) { Set-OfficeTeamsInstallStatus -EnableOfficeTeamsInstall $Uninstall = $false } elseif ($DisableOfficeTeamsInstall) { Set-OfficeTeamsInstallStatus -DisableOfficeTeamsInstall $Uninstall = $false } elseif ($UnsetOfficeTeamsInstall) { Set-OfficeTeamsInstallStatus -UnsetOfficeTeamsInstall $Uninstall = $false } # Uninstall Teams if ($Uninstall -eq $true) { # Stopping Teams process Write-Output "Stopping Teams process..." Stop-Process -Name "*teams*" -Force -ErrorAction SilentlyContinue ########################################################################### # Start the process of uninstalling Teams Write-Output "Deleting Teams through uninstall registry key..." # Retrieve the uninstall information for Teams $uninstallInfo = Get-UninstallString -Match "Teams" # Loop through each uninstall info object foreach ($info in $uninstallInfo) { # Extract the uninstall string from the current object $uninstallString = $info.UninstallString # Check if the uninstall string is not empty or null if (-not [string]::IsNullOrWhiteSpace($uninstallString)) { # Check if the uninstall string contains "MsiExec.exe" if ($uninstallString -match "MsiExec.exe") { # Extract the product GUID from the uninstall string if ($uninstallString -match "\{(.+?)\}") { $productGUID = $matches[1] Write-Debug "Found Teams product GUID: $productGUID" # Construct the uninstall arguments for an MSI package $uninstallArgs = "msiexec.exe /x {$productGUID} /qn" $filePath = "msiexec.exe" $argList = "/x {$productGUID} /qn" } } else { # Use the uninstall string as is for non-MSI packages $uninstallArgs = $uninstallString $filePath = $uninstallArgs.Split(" ")[0] $argList = $uninstallArgs.Substring($filePath.Length).Trim() } # Execute the uninstall command if ($filePath -ieq "msiexec.exe") { Write-Debug "Uninstalling Teams with command: $uninstallArgs" $proc = Start-Process -FilePath $filePath -ArgumentList $argList -PassThru $proc.WaitForExit() } else { Write-Debug "Uninstalling Teams with command: $uninstallArgs" $proc = Start-Process -FilePath $filePath -ArgumentList $argList -PassThru $proc.WaitForExit() } } } ########################################################################### # Uninstall from AppData\Microsoft\Teams Write-Output "Checking Teams in AppData\Microsoft\Teams..." $TeamsUpdateExePath = Join-Path $env:APPDATA "Microsoft\Teams\Update.exe" if (Test-Path $TeamsUpdateExePath) { Write-Output "Uninstalling Teams from AppData\Microsoft\Teams..." $proc = Start-Process -FilePath $TeamsUpdateExePath -ArgumentList "-uninstall -s" -PassThru $proc.WaitForExit() } # Uninstall from TeamsInstaller Write-Output "Checking Teams in Program Files (x86)..." $TeamsPrgFiles = Join-Path ${env:ProgramFiles(x86)} "Teams Installer\Teams.exe" if (Test-Path $TeamsPrgFiles) { Write-Output "Uninstalling Teams from Program Files (x86)..." $proc = Start-Process -FilePath $TeamsPrgFiles -ArgumentList "--uninstall" -PassThru $proc.WaitForExit() } # Remove via AppxPackage Write-Output "Removing Teams AppxPackage..." Get-AppxPackage "*Teams*" | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage "*Teams*" -AllUsers | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue # Delete Microsoft Teams directory $MicrosoftTeamsPath = Join-Path $env:LOCALAPPDATA "Microsoft Teams" Write-Output "Deleting Microsoft Teams directory..." if (Test-Path $MicrosoftTeamsPath) { Remove-Item -Path $MicrosoftTeamsPath -Force -Recurse -ErrorAction SilentlyContinue } # Delete Teams directory $TeamsPath = Join-Path $env:LOCALAPPDATA "Microsoft\Teams" Write-Output "Deleting Teams directory..." if (Test-Path $TeamsPath) { Remove-Item -Path $TeamsPath -Force -Recurse -ErrorAction SilentlyContinue } # Remove from startup registry key Write-Output "Deleting Teams startup registry keys..." Remove-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run' -Name 'TeamsMachineUninstallerLocalAppData', 'TeamsMachineUninstallerProgramData', 'com.squirrel.Teams.Teams', 'TeamsMachineInstaller' -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue Remove-ItemProperty -Path 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run' -Name 'TeamsMachineUninstallerLocalAppData', 'TeamsMachineUninstallerProgramData', 'com.squirrel.Teams.Teams', 'TeamsMachineInstaller' -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue Remove-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run' -Name 'TeamsMachineUninstallerLocalAppData', 'TeamsMachineUninstallerProgramData', 'com.squirrel.Teams.Teams', 'TeamsMachineInstaller' -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue Remove-ItemProperty -Path 'HKCU:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run' -Name 'TeamsMachineUninstallerLocalAppData', 'TeamsMachineUninstallerProgramData', 'com.squirrel.Teams.Teams', 'TeamsMachineInstaller' -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue # Remove Teams uninstall registry keys Write-Output "Deleting Teams uninstall registry keys..." Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Teams" -Force -Recurse -ErrorAction SilentlyContinue Remove-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Teams" -Force -Recurse -ErrorAction SilentlyContinue # Removing desktop shortcuts Write-Output "Deleting Teams desktop shortcuts..." Remove-DesktopShortcuts -ShortcutName "Microsoft Teams" # Removing start menu shortcuts Write-Output "Deleting Teams start menu shortcuts..." Remove-StartMenuShortcuts -ShortcutName "Microsoft Teams" # Removing Teams meeting addin Write-Output "Deleting Teams meeting addin..." $teamsMeetingAddin = "$env:LOCALAPPDATA\Microsoft\TeamsMeetingAddin" if (Test-Path $teamsMeetingAddin) { Remove-Item -Path $teamsMeetingAddin -Force -Recurse -ErrorAction SilentlyContinue } # Removing Teams meeting addin Write-Output "Deleting Teams presence addin..." $teamsPresenceAddin = "$env:LOCALAPPDATA\Microsoft\TeamsPresenceAddin" if (Test-Path $teamsPresenceAddin) { Remove-Item -Path $teamsPresenceAddin -Force -Recurse -ErrorAction SilentlyContinue } } } catch { Write-Warning "An error occurred during the Teams uninstallation process: $_" } # Let user know nothing will change if ($Uninstall -eq $true) { Write-Output "" Write-Output "Teams has been uninstalled, please restart your computer." Write-Output "" Write-Output "The information below is only information, the settings below will not change unless you use parameters to change them." } # Output the Chat widget status of both the current user and the local machine $CurrentUserStatus = Get-ChatWidgetStatus $LocalMachineStatus = Get-ChatWidgetStatus -AllUsers # Determine the effective status if ($CurrentUserStatus -ne "Unset (default is enabled)") { $effectiveStatus = $CurrentUserStatus } elseif ($LocalMachineStatus -ne "Unset (default is enabled)") { $effectiveStatus = $LocalMachineStatus } else { $effectiveStatus = "Enabled by default" Write-Output "Both Current User and Local Machine statuses are Unset (default is enabled). Enabled by default." } Write-Section("Chat widget") Write-Output "Current User Status: $CurrentUserStatus" Write-Output "Local Machine Status: $LocalMachineStatus" Write-Output "Effective Status: $effectiveStatus" Write-Output "" # If Chat widget status is "Enabled" or "Enabled by default", show a warning if ($effectiveStatus -eq "Enabled" -or $effectiveStatus -eq "Enabled by default") { Write-Warning "Teams Chat widget is enabled. Teams could be reinstalled if the user clicks 'Continue' after using Win+C or by clicking the Chat icon in the taskbar (if enabled). Use the '-DisableChatWidget' or '-DisableChatWidget -AllUsers' switch to disable it. Current user takes precedence unless unset. Use 'Get-Help UninstallTeams -Full' for more information." } # Output the Office Teams install status $OfficeTeamsInstallStatus = Get-OfficeTeamsInstallStatus # Chat widget status Write-Section("Office's ability to install Teams") Write-Output "Status: $OfficeTeamsInstallStatus" Write-Output "" # If Office Team install status is Enabled or unset, show a warning if (($OfficeTeamsInstallStatus -eq "Enabled") -or ($OfficeTeamsInstallStatus -eq "Unset (default is enabled)")) { Write-Warning "Office is allowing Teams to install. Teams could be reinstalled if Office is installed or updated.`nUse the '-DisableOfficeTeamsInstall' switch to prevent Teams from installing with Office. Use 'Get-Help UninstallTeams -Full' for more information." } # Office note Write-Section("Office Note") Write-Output "If you just installed Microsoft Office, you may need to restart the computer once or`ntwice and then run UninstallTeams to prevent Teams from reinstalling." # Spacer Write-Output "" # SIG # Begin signature block # MIIpMgYJKoZIhvcNAQcCoIIpIzCCKR8CAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDyQ5VYfkhf54/J # TLRj4KjmPlT1f6773MuH6Ej9yakneqCCDh8wggawMIIEmKADAgECAhAIrUCyYNKc # TJ9ezam9k67ZMA0GCSqGSIb3DQEBDAUAMGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNV # BAMTGERpZ2lDZXJ0IFRydXN0ZWQgUm9vdCBHNDAeFw0yMTA0MjkwMDAwMDBaFw0z # NjA0MjgyMzU5NTlaMGkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwg # SW5jLjFBMD8GA1UEAxM4RGlnaUNlcnQgVHJ1c3RlZCBHNCBDb2RlIFNpZ25pbmcg # UlNBNDA5NiBTSEEzODQgMjAyMSBDQTEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw # ggIKAoICAQDVtC9C0CiteLdd1TlZG7GIQvUzjOs9gZdwxbvEhSYwn6SOaNhc9es0 # JAfhS0/TeEP0F9ce2vnS1WcaUk8OoVf8iJnBkcyBAz5NcCRks43iCH00fUyAVxJr # Q5qZ8sU7H/Lvy0daE6ZMswEgJfMQ04uy+wjwiuCdCcBlp/qYgEk1hz1RGeiQIXhF # LqGfLOEYwhrMxe6TSXBCMo/7xuoc82VokaJNTIIRSFJo3hC9FFdd6BgTZcV/sk+F # LEikVoQ11vkunKoAFdE3/hoGlMJ8yOobMubKwvSnowMOdKWvObarYBLj6Na59zHh # 3K3kGKDYwSNHR7OhD26jq22YBoMbt2pnLdK9RBqSEIGPsDsJ18ebMlrC/2pgVItJ # wZPt4bRc4G/rJvmM1bL5OBDm6s6R9b7T+2+TYTRcvJNFKIM2KmYoX7BzzosmJQay # g9Rc9hUZTO1i4F4z8ujo7AqnsAMrkbI2eb73rQgedaZlzLvjSFDzd5Ea/ttQokbI # YViY9XwCFjyDKK05huzUtw1T0PhH5nUwjewwk3YUpltLXXRhTT8SkXbev1jLchAp # QfDVxW0mdmgRQRNYmtwmKwH0iU1Z23jPgUo+QEdfyYFQc4UQIyFZYIpkVMHMIRro # OBl8ZhzNeDhFMJlP/2NPTLuqDQhTQXxYPUez+rbsjDIJAsxsPAxWEQIDAQABo4IB # WTCCAVUwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUaDfg67Y7+F8Rhvv+ # YXsIiGX0TkIwHwYDVR0jBBgwFoAU7NfjgtJxXWRM3y5nP+e6mK4cD08wDgYDVR0P # AQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMDMHcGCCsGAQUFBwEBBGswaTAk # BggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEEGCCsGAQUFBzAC # hjVodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkUm9v # dEc0LmNydDBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsMy5kaWdpY2VydC5j # b20vRGlnaUNlcnRUcnVzdGVkUm9vdEc0LmNybDAcBgNVHSAEFTATMAcGBWeBDAED # MAgGBmeBDAEEATANBgkqhkiG9w0BAQwFAAOCAgEAOiNEPY0Idu6PvDqZ01bgAhql # +Eg08yy25nRm95RysQDKr2wwJxMSnpBEn0v9nqN8JtU3vDpdSG2V1T9J9Ce7FoFF # UP2cvbaF4HZ+N3HLIvdaqpDP9ZNq4+sg0dVQeYiaiorBtr2hSBh+3NiAGhEZGM1h # mYFW9snjdufE5BtfQ/g+lP92OT2e1JnPSt0o618moZVYSNUa/tcnP/2Q0XaG3Ryw # YFzzDaju4ImhvTnhOE7abrs2nfvlIVNaw8rpavGiPttDuDPITzgUkpn13c5Ubdld # AhQfQDN8A+KVssIhdXNSy0bYxDQcoqVLjc1vdjcshT8azibpGL6QB7BDf5WIIIJw # 8MzK7/0pNVwfiThV9zeKiwmhywvpMRr/LhlcOXHhvpynCgbWJme3kuZOX956rEnP # LqR0kq3bPKSchh/jwVYbKyP/j7XqiHtwa+aguv06P0WmxOgWkVKLQcBIhEuWTatE # QOON8BUozu3xGFYHKi8QxAwIZDwzj64ojDzLj4gLDb879M4ee47vtevLt/B3E+bn # KD+sEq6lLyJsQfmCXBVmzGwOysWGw/YmMwwHS6DTBwJqakAwSEs0qFEgu60bhQji # WQ1tygVQK+pKHJ6l/aCnHwZ05/LWUpD9r4VIIflXO7ScA+2GRfS0YW6/aOImYIbq # yK+p/pQd52MbOoZWeE4wggdnMIIFT6ADAgECAhAN0Uk2zX4f3m8X7HdlwxBNMA0G # CSqGSIb3DQEBCwUAMGkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwg # SW5jLjFBMD8GA1UEAxM4RGlnaUNlcnQgVHJ1c3RlZCBHNCBDb2RlIFNpZ25pbmcg # UlNBNDA5NiBTSEEzODQgMjAyMSBDQTEwHhcNMjMwMzE3MDAwMDAwWhcNMjQwMzE2 # MjM1OTU5WjBvMQswCQYDVQQGEwJVUzERMA8GA1UECBMIT2tsYWhvbWExETAPBgNV # BAcTCE11c2tvZ2VlMRwwGgYDVQQKExNBc2hlciBTb2x1dGlvbnMgSW5jMRwwGgYD # VQQDExNBc2hlciBTb2x1dGlvbnMgSW5jMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A # MIICCgKCAgEA081RwO7808Fuab0RP0L2gthlZB8fiiGUBpnqJhsD1Bzpk+45B2LA # qmrUp+nZIXNwr5me/55enGI9CkhaxmZoFhBxoM1u5lODNp8GaAYzIEi0IJldzZ9y # PAQMfhTkHRiOwKBqTGO3h/gSZtaZ+8F+ltCmlXvv2vpqFpt5JL+uJm9SRIN5WLiP # QM/isjYR+eIcaZxQeHLfbnemNcaT4cXOMChUsmG6WsoHZO1o76dCN+owz23koLy2 # Y1R3N2PMQj3kj8Bnlph6ffNnitKhXuwj3NkWwPSSQvYhcBuTcCOxpXpUjWlQNuTt # llTHp9leKMq11raPkSaLe2qVX4eBc6HPtBT+7XagpaA409d7fmYTOLKmE0BCEdgb # YZzYmKSyjrAgWlU9SYxurhFgHuQFD0CsBW1aXl6IEjn26cVx+hmj2KCOFELAdh1r # 9UTNt37a/o/TYCp/mQ22/oa/224is1dpNj7RAHnNaix5n8RKKHufEh85lVjS/cBn # 7z3cCKejyfBaUGK10SUwZKJiJ51DKkRkdh4A5cL85wKkQcFnRpfT/T+KTOEYRFT/ # vz3uK9bMLwuBj+gkP3WnlVXf67IY3FfZaQUDNdtwur4UTGrDQOn8Xl2rEy7L9VlJ # UOCjX93WfW0B1Q4IxSdF6vIJw1m44HpIU4jxnqTBEo6BVVRCtdmp/x0CAwEAAaOC # AgMwggH/MB8GA1UdIwQYMBaAFGg34Ou2O/hfEYb7/mF7CIhl9E5CMB0GA1UdDgQW # BBTH3/U7rGshoJKjtOAVqNAEWJ/PBDAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAww # CgYIKwYBBQUHAwMwgbUGA1UdHwSBrTCBqjBToFGgT4ZNaHR0cDovL2NybDMuZGln # aWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25pbmdSU0E0MDk2U0hB # Mzg0MjAyMUNBMS5jcmwwU6BRoE+GTWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9E # aWdpQ2VydFRydXN0ZWRHNENvZGVTaWduaW5nUlNBNDA5NlNIQTM4NDIwMjFDQTEu # Y3JsMD4GA1UdIAQ3MDUwMwYGZ4EMAQQBMCkwJwYIKwYBBQUHAgEWG2h0dHA6Ly93 # d3cuZGlnaWNlcnQuY29tL0NQUzCBlAYIKwYBBQUHAQEEgYcwgYQwJAYIKwYBBQUH # MAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBcBggrBgEFBQcwAoZQaHR0cDov # L2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZEc0Q29kZVNpZ25p # bmdSU0E0MDk2U0hBMzg0MjAyMUNBMS5jcnQwCQYDVR0TBAIwADANBgkqhkiG9w0B # AQsFAAOCAgEAQtDUmTp7UG2w4A4WaT6BoMLBLqzm09S64nFfuIUFjWk3KTCStpwR # 3KzwG78CpYb7I0G6T7O2Emv+u0WgKVaWPbLFlnrjXXB+68DxR+CFWh6UDioz/9wo # +eD/V2eKilAc2WSEIC8NzXT3C4yEtxUmnebK7Ysxy4qLlb4Sxk9NspS+Lg3jKBxb # ExduQWHi1ytqw9NCghzK1Y2h5/AHwSYfwz7AyRerN3gTwzmmgTaWYEHVCL0NQddO # 1lkSz6LPq2/JWHns7I0tNPCT5nZYva1v34EZvP9+P+SUDBH8bfrm6HlTd+Z6qNW5 # ACsALaCCAsZRQ6i7UZfjolD/lADn65f46XfnNMIo8PPpagFBIvxg03DGDJQu4QnY # AyZhtrLDxc8VLtGZP8QVBf9JVcjVD8FxMMobDnuDq0YZ1h3ydRo1dqOzWVDipp0i # oPd0UbL7EcZr6QcM72LWFvAACyVcIiXlh5jY+JehqaZMlS9aw4WQT0gpvBOaOJqb # vGoAbtyHRFIkFbJG/Wxkpr+VkU1JvilXCh8g0OsXwvJk4dK4GeBVa7VLlq95fLiK # zL54EZDTY1W+YfKYUseiptRlu5XBUn15C9rTpqDZhHFz6exyLfYcJzdxJJdArjio # UKKR9ZhLfxm1bmFMb8NPWOKH/ZI6vR0jNgwalk3nTx63ZnVAOJLH+BkxghppMIIa # ZQIBATB9MGkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFB # MD8GA1UEAxM4RGlnaUNlcnQgVHJ1c3RlZCBHNCBDb2RlIFNpZ25pbmcgUlNBNDA5 # NiBTSEEzODQgMjAyMSBDQTECEA3RSTbNfh/ebxfsd2XDEE0wDQYJYIZIAWUDBAIB # BQCgfDAQBgorBgEEAYI3AgEMMQIwADAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIB # BDAcBgorBgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQg # akbuki6xWU9fJriGSiETWcwB1rbqaBEyMUezMdEd0lgwDQYJKoZIhvcNAQEBBQAE # ggIAvubbWj1xteYyzajyOozAXXxYtPtIouPUjLDlQrHYmmGW7g43zaTeEfC69CA5 # HD8cAqcEi+9pjVKgFNHf8B4r4aicnLcI8T0yW33aKkNYWI7/vbz7f9SA28PaqLRj # jbdpdXa2zk41UvHLrZhaAhPQh8avV1m4j86+8ezXB/MaM4ubEE9n/1YIs4HQ3BXw # zF5CNGHgLL/2RQDObxWfKCSUNMDGpNDWRrrDTM6yCV/naTK7lOHhZ4H+D/VNhv5j # 6jc1ZfqU709zk7l+0P9DJL+3X7tnDDj1Spzph1Ie0RZbV56gHuVK+pnFw4ET874j # NnxfekXFAKhMMrB4PwD1hINIHXvzthFb8v+PU5Sbx+d/Ui4MSf2ok5gzpkyrPaf/ # or46/uukTa6UPIweSvxCmnXXx+3BuF67ZcL9Ynme+WOvygGww+ahcsIBS/dygaUr # 98a+Nl91gd+rZ12f75H0WIzUsBbuwhOBlwDjjlQTwXPvqyDYDOg/hYRI0202YUnL # Ma7JQA/o/bCIExpUNiOjo4WULEFnIH6OMp/hiK2jhzRIXxwJVDkaMWUFsMcNGmSh # lyW43kWctpBFA1quiAMPbV1glwCnjBLjybT2NvlG+jDYq8oyKCJqL/PTi4H7YOet # LRxr85PHxp1XxxugAsq57rns7XiaiVUXAcgueAAORpyTvuahghc/MIIXOwYKKwYB # BAGCNwMDATGCFyswghcnBgkqhkiG9w0BBwKgghcYMIIXFAIBAzEPMA0GCWCGSAFl # AwQCAQUAMHcGCyqGSIb3DQEJEAEEoGgEZjBkAgEBBglghkgBhv1sBwEwMTANBglg # hkgBZQMEAgEFAAQgt02/Er8/lDYedhCUBIEL2LrkMtkJsYTEydkgsTwB2WsCEG21 # DZPp4wkhINmy+SuHlw0YDzIwMjMxMDE0MDQzNDQ5WqCCEwkwggbCMIIEqqADAgEC # AhAFRK/zlJ0IOaa/2z9f5WEWMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVT # MRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1 # c3RlZCBHNCBSU0E0MDk2IFNIQTI1NiBUaW1lU3RhbXBpbmcgQ0EwHhcNMjMwNzE0 # MDAwMDAwWhcNMzQxMDEzMjM1OTU5WjBIMQswCQYDVQQGEwJVUzEXMBUGA1UEChMO # RGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0IFRpbWVzdGFtcCAyMDIz # MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAo1NFhx2DjlusPlSzI+DP # n9fl0uddoQ4J3C9Io5d6OyqcZ9xiFVjBqZMRp82qsmrdECmKHmJjadNYnDVxvzqX # 65RQjxwg6seaOy+WZuNp52n+W8PWKyAcwZeUtKVQgfLPywemMGjKg0La/H8JJJSk # ghraarrYO8pd3hkYhftF6g1hbJ3+cV7EBpo88MUueQ8bZlLjyNY+X9pD04T10Mf2 # SC1eRXWWdf7dEKEbg8G45lKVtUfXeCk5a+B4WZfjRCtK1ZXO7wgX6oJkTf8j48qG # 7rSkIWRw69XloNpjsy7pBe6q9iT1HbybHLK3X9/w7nZ9MZllR1WdSiQvrCuXvp/k # /XtzPjLuUjT71Lvr1KAsNJvj3m5kGQc3AZEPHLVRzapMZoOIaGK7vEEbeBlt5NkP # 4FhB+9ixLOFRr7StFQYU6mIIE9NpHnxkTZ0P387RXoyqq1AVybPKvNfEO2hEo6U7 # Qv1zfe7dCv95NBB+plwKWEwAPoVpdceDZNZ1zY8SdlalJPrXxGshuugfNJgvOupr # AbD3+yqG7HtSOKmYCaFxsmxxrz64b5bV4RAT/mFHCoz+8LbH1cfebCTwv0KCyqBx # PZySkwS0aXAnDU+3tTbRyV8IpHCj7ArxES5k4MsiK8rxKBMhSVF+BmbTO77665E4 # 2FEHypS34lCh8zrTioPLQHsCAwEAAaOCAYswggGHMA4GA1UdDwEB/wQEAwIHgDAM # BgNVHRMBAf8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMCAGA1UdIAQZMBcw # CAYGZ4EMAQQCMAsGCWCGSAGG/WwHATAfBgNVHSMEGDAWgBS6FtltTYUvcyl2mi91 # jGogj57IbzAdBgNVHQ4EFgQUpbbvE+fvzdBkodVWqWUxo97V40kwWgYDVR0fBFMw # UTBPoE2gS4ZJaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3Rl # ZEc0UlNBNDA5NlNIQTI1NlRpbWVTdGFtcGluZ0NBLmNybDCBkAYIKwYBBQUHAQEE # gYMwgYAwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBYBggr # BgEFBQcwAoZMaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1 # c3RlZEc0UlNBNDA5NlNIQTI1NlRpbWVTdGFtcGluZ0NBLmNydDANBgkqhkiG9w0B # AQsFAAOCAgEAgRrW3qCptZgXvHCNT4o8aJzYJf/LLOTN6l0ikuyMIgKpuM+AqNnn # 48XtJoKKcS8Y3U623mzX4WCcK+3tPUiOuGu6fF29wmE3aEl3o+uQqhLXJ4Xzjh6S # 2sJAOJ9dyKAuJXglnSoFeoQpmLZXeY/bJlYrsPOnvTcM2Jh2T1a5UsK2nTipgedt # QVyMadG5K8TGe8+c+njikxp2oml101DkRBK+IA2eqUTQ+OVJdwhaIcW0z5iVGlS6 # ubzBaRm6zxbygzc0brBBJt3eWpdPM43UjXd9dUWhpVgmagNF3tlQtVCMr1a9TMXh # RsUo063nQwBw3syYnhmJA+rUkTfvTVLzyWAhxFZH7doRS4wyw4jmWOK22z75X7BC # 1o/jF5HRqsBV44a/rCcsQdCaM0qoNtS5cpZ+l3k4SF/Kwtw9Mt911jZnWon49qfH # 5U81PAC9vpwqbHkB3NpE5jreODsHXjlY9HxzMVWggBHLFAx+rrz+pOt5Zapo1iLK # O+uagjVXKBbLafIymrLS2Dq4sUaGa7oX/cR3bBVsrquvczroSUa31X/MtjjA2Owc # 9bahuEMs305MfR5ocMB3CtQC4Fxguyj/OOVSWtasFyIjTvTs0xf7UGv/B3cfcZdE # Qcm4RtNsMnxYL2dHZeUbc7aZ+WssBkbvQR7w8F/g29mtkIBEr4AQQYowggauMIIE # lqADAgECAhAHNje3JFR82Ees/ShmKl5bMA0GCSqGSIb3DQEBCwUAMGIxCzAJBgNV # BAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdp # Y2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFRydXN0ZWQgUm9vdCBHNDAeFw0y # MjAzMjMwMDAwMDBaFw0zNzAzMjIyMzU5NTlaMGMxCzAJBgNVBAYTAlVTMRcwFQYD # VQQKEw5EaWdpQ2VydCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1c3RlZCBH # NCBSU0E0MDk2IFNIQTI1NiBUaW1lU3RhbXBpbmcgQ0EwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQDGhjUGSbPBPXJJUVXHJQPE8pE3qZdRodbSg9GeTKJt # oLDMg/la9hGhRBVCX6SI82j6ffOciQt/nR+eDzMfUBMLJnOWbfhXqAJ9/UO0hNoR # 8XOxs+4rgISKIhjf69o9xBd/qxkrPkLcZ47qUT3w1lbU5ygt69OxtXXnHwZljZQp # 09nsad/ZkIdGAHvbREGJ3HxqV3rwN3mfXazL6IRktFLydkf3YYMZ3V+0VAshaG43 # IbtArF+y3kp9zvU5EmfvDqVjbOSmxR3NNg1c1eYbqMFkdECnwHLFuk4fsbVYTXn+ # 149zk6wsOeKlSNbwsDETqVcplicu9Yemj052FVUmcJgmf6AaRyBD40NjgHt1bicl # kJg6OBGz9vae5jtb7IHeIhTZgirHkr+g3uM+onP65x9abJTyUpURK1h0QCirc0PO # 30qhHGs4xSnzyqqWc0Jon7ZGs506o9UD4L/wojzKQtwYSH8UNM/STKvvmz3+Drhk # Kvp1KCRB7UK/BZxmSVJQ9FHzNklNiyDSLFc1eSuo80VgvCONWPfcYd6T/jnA+bIw # pUzX6ZhKWD7TA4j+s4/TXkt2ElGTyYwMO1uKIqjBJgj5FBASA31fI7tk42PgpuE+ # 9sJ0sj8eCXbsq11GdeJgo1gJASgADoRU7s7pXcheMBK9Rp6103a50g5rmQzSM7TN # sQIDAQABo4IBXTCCAVkwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUuhbZ # bU2FL3MpdpovdYxqII+eyG8wHwYDVR0jBBgwFoAU7NfjgtJxXWRM3y5nP+e6mK4c # D08wDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMIMHcGCCsGAQUF # BwEBBGswaTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEEG # CCsGAQUFBzAChjVodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRU # cnVzdGVkUm9vdEc0LmNydDBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsMy5k # aWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkUm9vdEc0LmNybDAgBgNVHSAEGTAX # MAgGBmeBDAEEAjALBglghkgBhv1sBwEwDQYJKoZIhvcNAQELBQADggIBAH1ZjsCT # tm+YqUQiAX5m1tghQuGwGC4QTRPPMFPOvxj7x1Bd4ksp+3CKDaopafxpwc8dB+k+ # YMjYC+VcW9dth/qEICU0MWfNthKWb8RQTGIdDAiCqBa9qVbPFXONASIlzpVpP0d3 # +3J0FNf/q0+KLHqrhc1DX+1gtqpPkWaeLJ7giqzl/Yy8ZCaHbJK9nXzQcAp876i8 # dU+6WvepELJd6f8oVInw1YpxdmXazPByoyP6wCeCRK6ZJxurJB4mwbfeKuv2nrF5 # mYGjVoarCkXJ38SNoOeY+/umnXKvxMfBwWpx2cYTgAnEtp/Nh4cku0+jSbl3ZpHx # cpzpSwJSpzd+k1OsOx0ISQ+UzTl63f8lY5knLD0/a6fxZsNBzU+2QJshIUDQtxMk # zdwdeDrknq3lNHGS1yZr5Dhzq6YBT70/O3itTK37xJV77QpfMzmHQXh6OOmc4d0j # /R0o08f56PGYX/sr2H7yRp11LB4nLCbbbxV7HhmLNriT1ObyF5lZynDwN7+YAN8g # Fk8n+2BnFqFmut1VwDophrCYoCvtlUG3OtUVmDG0YgkPCr2B2RP+v6TR81fZvAT6 # gt4y3wSJ8ADNXcL50CN/AAvkdgIm2fBldkKmKYcJRyvmfxqkhQ/8mJb2VVQrH4D6 # wPIOK+XW+6kvRBVK5xMOHds3OBqhK/bt1nz8MIIFjTCCBHWgAwIBAgIQDpsYjvnQ # Lefv21DiCEAYWjANBgkqhkiG9w0BAQwFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UE # ChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD # VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMjIwODAxMDAwMDAw # WhcNMzExMTA5MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNl # cnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdp # Q2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK # AoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEppz1Yq3aaza57G4QN # xDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9ok3DC # srp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTr # BcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17l # Necxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WC # QTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1 # EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtmmnTK3kse5w5jrubU75KS # Op493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7f/LVjHAs # QWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUO # UlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtv # sauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo4IBOjCC # ATYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4c # D08wHwYDVR0jBBgwFoAUReuir/SSy4IxLVGLp6chnfNtyA8wDgYDVR0PAQH/BAQD # AgGGMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGln # aWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5j # b20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0MEUGA1UdHwQ+MDwwOqA4oDaG # NGh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RD # QS5jcmwwEQYDVR0gBAowCDAGBgRVHSAAMA0GCSqGSIb3DQEBDAUAA4IBAQBwoL9D # XFXnOF+go3QbPbYW1/e/Vwe9mqyhhyzshV6pGrsi+IcaaVQi7aSId229GhT0E0p6 # Ly23OO/0/4C5+KH38nLeJLxSA8hO0Cre+i1Wz/n096wwepqLsl7Uz9FDRJtDIeuW # cqFItJnLnU+nBgMTdydE1Od/6Fmo8L8vC6bp8jQ87PcDx4eo0kxAGTVGamlUsLih # Vo7spNU96LHc/RzY9HdaXFSMb++hUD38dglohJ9vytsgjTVgHAIDyyCwrFigDkBj # xZgiwbJZ9VVrzyerbHbObyMt9H5xaiNrIv8SuFQtJ37YOtnwtoeW/VvRXKwYw02f # c7cBqZ9Xql4o4rmUMYIDdjCCA3ICAQEwdzBjMQswCQYDVQQGEwJVUzEXMBUGA1UE # ChMORGlnaUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQg # UlNBNDA5NiBTSEEyNTYgVGltZVN0YW1waW5nIENBAhAFRK/zlJ0IOaa/2z9f5WEW # MA0GCWCGSAFlAwQCAQUAoIHRMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAc # BgkqhkiG9w0BCQUxDxcNMjMxMDE0MDQzNDQ5WjArBgsqhkiG9w0BCRACDDEcMBow # GDAWBBRm8CsywsLJD4JdzqqKycZPGZzPQDAvBgkqhkiG9w0BCQQxIgQgt7mvn0o4 # OC482YevSHjrse/krQeFYlI3syVRcMkaoIowNwYLKoZIhvcNAQkQAi8xKDAmMCQw # IgQg0vbkbe10IszR1EBXaEE2b4KK2lWarjMWr00amtQMeCgwDQYJKoZIhvcNAQEB # BQAEggIAZ3V0APyQXA9YbCDJX1/VyKfvz1E/ibBX4MOrDVXaGaKN7w0xF/P70e24 # B/8kcV1xOu1Cua2xXsnoAJrfVr4lKEIyiHunbEDMsJUc5Y5X7UwYbcbhF+YnjnY0 # hM4UEdhHBY0lbWiaysB7f+ZyNjQ2IAfm9oNq1EE2Ng12XNrILCxrZp/fRn9V9oYt # 0DHQ+6Q1gHGLygG0WowPJ8NaMwW8YiwwYlxybZoTS4Eww738yjEbR2R9e1cl7VG2 # zP6EoaRlng3KyAfU8M+VwCJTvur3ez6ba/kC9sKvpIuQQ2ZbQCqhJGp96vpL2QZp # vTEzdfWyFW9RWpgFh5LE1jjhvjjTL1c6JPSm8B9o5DyA8WW/NbajbzkE7Mss+1wY # z+yWFPb2s3blDzKbHM2ZZz49j3LJ4tD4EvdIuScLF0L9xKvScmwDo/hT/pNPN/kQ # CFYUSeVgRNvQQV913wCFobvxYJHplQTL41bc45Xbc0YO00XP5qcj/FXyV8xQyXkw # /NvFNTAvEknbaaDDl6JE1Bogcs8sTsERj4rLzAOBNoCTERSZr3rWKncBdB3dM4qt # CmhNK6/RtgzkGJTyV7XkZbJoeL51vse/N68asBuUPlRHUNlFAk3tK8060opNYFdf # 6TAIUfpCxulVzlulkOLaYV5bgIBogQ8WOXeNQKQqJbnbPnwScuE= # SIG # End signature block |