Lessen the effect of the renderer on your overall system performance by reducing the app's processor priority in macOS.
-
Startup teams
-
Create the script
touch fixteams.sh vi fixteams.sh chmod 755 fixteams.sh -
Execute the script
./fixteams.sh
Lessen the effect of the renderer on your overall system performance by reducing the app's processor priority in macOS.
Startup teams
Create the script
touch fixteams.sh
vi fixteams.sh
chmod 755 fixteams.sh
Execute the script
./fixteams.sh
| #!/bin/bash | |
| # | |
| # See: https://answers.microsoft.com/en-us/msteams/forum/msteams_other/ms-teams-helper-using-up-100-of-cpu-macbook/9305b96e-5381-43cf-88c4-d3ba39b37a58?page=11 | |
| my_array=( $(pgrep -f "Microsoft Teams Helper \(Renderer\)") ) | |
| for i in "${my_array[@]}"; do | |
| renice -n 10 -p $i | |
| done |