Page 2 of 2

Re: Teams package and "Meeting Experience" feature

Published: November 27, 2020 - 3:54 PM
by Gaetan
I haven't received that feedback on my end.
And there are no issues on my end. ;)

Re: Teams package and "Meeting Experience" feature

Published: November 28, 2020 - 09:57
by Pierre Baridon
jpele wrote: Nov 27, 2020 - 2:55 PM Hello,

Thank you for your feedback, I've modified the package.
Have you received any reports of users having to log back into Teams very regularly, even daily?
In case you need it, I performed a one-time profile cleanup; here's the code snippet.
Yes, regular updates, a real pain... I have to clean up my profiles every four days to keep up...

Re: Teams package and "Meeting Experience" feature

Published: November 30, 2020 - 09:21
by Gaetan
Hello, what are the symptoms?

Re: Teams package and "Meeting Experience" feature

Published: January 18, 2021 - 11:06 AM
by Guillaume Legendre
Hello everyone,

Here's some feedback on the package update (Teams was already installed with the same version 1.3.00.28779)
- on many machines, the following automatic cleanup fails, so the new options are unavailable.
# Cleaning up Teams profile once
if isdir(user_conf_dir):
if registry_readstring(HKEY_CURRENT_USER,r'Software\WAPT\Teams','CleanupOnce') != 'Done':
killalltasks(processes_to_kill)
time.sleep(2)
remove_tree(user_conf_dir)
registry_set(HKEY_CURRENT_USER,r'Software\WAPT\Teams','CleanupOnce','Done')
- On these machines, I tried uninstalling from the console + rebooting + reinstalling, but nothing changed (a registry key must be causing the problem).

Has anyone else experienced this type of issue?

Re: Teams package and "Meeting Experience" feature

Published: January 21, 2021 - 2:50 PM
by jpele
Hello guillaume.legendre,

Regarding your feedback, we have improved the Teams package to better handle cases where the cleanup doesn't work on the first attempt.

However, this change will require WAPT 1.9, so for affected machines, you will need to run "wapt-get session-setup tis-microsoft-teams -f" as the user.

Until then, I suggest you create a package that performs this operation and that you can apply when a machine is affected (ideally).


Sincerely,
Jimmy

Re: Teams package and "Meeting Experience" feature

Published: February 3, 2021 - 1:41 PM
by Pierre Baridon
Hello,

please note that version 1.4.x of MSI System Wide is available.

Pierre

Re: Teams package and "Meeting Experience" feature

Published: February 3, 2021 - 3:12 PM
by Gaetan
Hello, thank you for the information.

Re: Teams package and "Meeting Experience" feature

Published: February 10, 2021 - 10:54 AM
by emilien.gauthier
Hello,

is it possible to add the "Teams" program to the login screen by going to %userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup?
Thank you for your help! :)

Re: Teams package and "Meeting Experience" feature

Published: February 10, 2021 - 2:12 PM
by Gaetan
Hello,
it's possible with this option to add to the session setup:
https://www.wapt.fr/en/api-doc-1.5/sour ... p_shortcut

Re: Teams package and "Meeting Experience" feature

Published: February 10, 2021 - 3:12 PM
by jpele
Good morning,

The easiest solution for you would be to remove this part of the code in the Teams package's install function:

Code: Select all

    # Disabling AutoStart
    if iswin64():
        registry_delete(HKEY_LOCAL_MACHINE,r'SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run','Teams')
    registry_delete(HKEY_LOCAL_MACHINE,r'SOFTWARE\Microsoft\Windows\CurrentVersion\Run','Teams')

If you specifically need users to be able to disable the software startup themselves, you will need to add the equivalent of the key that is deleted in the machine environment and place it in the user environment using the registry_set() function

Sincerely,
Jimmy