MS Teams Helper using up >100% of CPU MacBook

Anonymous
2020-05-22T10:17:30+00:00

Since the latest update of MS Teams (current version 1.3.00.9271 updated on 07/05/20) on a MacBook (early 2015), every time I now join a Teams call, the Microsoft Teams Helper is using >100% of CPU and causing the laptop to overheat. I have disabled the GPU acceleration as seen on some other message boards but this has no impact, and could do with a fix for this ASAP.

Many thanks in advance.

Microsoft Teams | Microsoft Teams for business | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

218 answers

Sort by: Most helpful
  1. Anonymous
    2022-09-19T22:54:33+00:00

    Root cause of mine turned out to be a gaming mouse I was using. Hard to diagnose, though, because the problem didn't always manifest immediately and it seemed to be dependent on my resetting teams.

    Here's how I got to the bottom of it:

    1. Unplug everything but power - monitor, USB accessories, etc. Open Activity Monitor so you can check Teams' CPU usage.
    2. Start up teams. Does it still eat your CPU? If not, then this is not going to help and you've got some other problem.
    3. Stop Teams.
    4. Plug in one peripheral and start Teams again. Use it for 10 minutes.
    5. Does it still eat your CPU? If yes - you've found your problem.
    6. If not, stop teams again and repeat for every peripheral you use.

    Hopefully this helps someone.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2022-04-06T14:33:09+00:00

    I am experiencing the same issue with version: 1.5.00.8073 updated 2022-03-28

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2022-01-03T20:53:34+00:00

    Having the same issue in 2022, for almost 2 years now. How do we get MS attention to this ? Ridiculous

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2021-08-10T20:17:32+00:00

    MacOS 11.5.1 does not resolve the Teams CPU issues when video is enabled. I think this is an issue with Teams because I do not have the same problems with Zoom.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  5. Anonymous
    2021-04-12T06:22:30+00:00

    EwiPi your script is a good idea but it's a little broad - it'll catch renderers used by other apps also built on Electron. I've slightly modified your script as shown below:

    #!/bin/bash

    my_array=( $(pgrep -f "Microsoft Teams Helper (Renderer)") )

    for i in "${my_array[@]}"; do

       renice -n 10 -p $i

    done

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments