Not
Bu sayfaya erişim yetkilendirme gerektiriyor. Oturum açmayı veya dizinleri değiştirmeyi deneyebilirsiniz.
Bu sayfaya erişim yetkilendirme gerektiriyor. Dizinleri değiştirmeyi deneyebilirsiniz.
Remove new Teams for all users
To remove the new Teams from all users' computers, use the following PowerShell command:
Remove-AppxPackage
PowerShell cmdlet to remove new Teams from all users on all computers:
Get-AppxPackage *MSTeams* -AllUsers |Remove-AppxPackage -AllUsers
PowerShell cmdlet for an individual user without administrator privilege:
Get-AppxPackage *MSTeams*|Remove-AppxPackage
Command to uninstall teams machine-wide: teamsbootstrapper.exe -x -m
Further information
- If you need to remove the classic Teams client, see How to uninstall the new Teams client.
- If you need a script to help with the uninstall of classic Teams, see Uninstall the classic Teams client using a script.