Remove MS Teams Personal edition - consumer edition from Windows 11

Remove MS Teams Personal edition / consumer edition from Windows 11
- Open an elevated PowerShell window (Run as Administrator).
- Run the following command to remove the MS Teams consumer edition:
$MSTeams = "MicrosoftTeams"; $WinPackage = Get-AppxPackage | Where-Object { $_.Name -eq $MSTeams }; $ProvisionedPackage = Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -eq $WinPackage }; if ($null -ne $WinPackage) { Remove-AppxPackage -Package $WinPackage.PackageFullName }; if ($null -ne $ProvisionedPackage) { Remove-AppxProvisionedPackage -Online -Packagename $ProvisionedPackage.Packagename }; $WinPackageCheck = Get-AppxPackage | Where-Object { $_.Name -eq $MSTeams }; $ProvisionedPackageCheck = Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -eq $WinPackage }; if (($WinPackageCheck) -or ($ProvisionedPackageCheck)) { throw }

Authors
SysOps Engineer | IT Teacher
Versatile IT Engineer with a dual specialization in System Engineering and Management, AlexIn Tech teaches IT to CFC apprentice IT specialists at ETML, the Technical School of Lausanne 🇨🇭. Passionate about IT, innovation, and knowledge sharing, he shares his discoveries and learnings here to inspire new generations.