Επεξεργασία

Κοινή χρήση μέσω


How to uninstall the new Teams client

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