Teams package and "Meeting Experience" feature

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
User avatar
Gaetan
Messages: 169
Registration: August 8, 2019 - 10:16
Location: Toulouse

November 27, 2020 - 3:54 PM

I haven't received that feedback on my end.
And there are no issues on my end. ;)
pierre.baridon
Messages: 12
Registration: Nov 14, 2020 - 10:55
Location: Clermont-Ferrand

November 28, 2020 - 9:57 AM

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...
- Installed WAPT version (2.1.0 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
User avatar
Gaetan
Messages: 169
Registration: August 8, 2019 - 10:16
Location: Toulouse

November 30, 2020 - 09:21

Hello, what are the symptoms?
guillaume.legendre
Messages: 1
Registration: June 16, 2020 - 2:18 PM

January 18, 2021 - 11:06

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?
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

January 21, 2021 - 2:50 PM

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
pierre.baridon
Messages: 12
Registration: Nov 14, 2020 - 10:55
Location: Clermont-Ferrand

February 3, 2021 - 1:41 PM

Hello,

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

Pierre
- Installed WAPT version (2.1.0 Enterprise)
- Server OS: Debian
- Administration/package creation machine OS: Windows 10
User avatar
Gaetan
Messages: 169
Registration: August 8, 2019 - 10:16
Location: Toulouse

February 3, 2021 - 3:12 PM

Hello, thank you for the information.
emilien.gauthier
Messages: 6
Registration: January 11, 2021 - 5:53 PM

February 10, 2021 - 10:54

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! :)
User avatar
Gaetan
Messages: 169
Registration: August 8, 2019 - 10:16
Location: Toulouse

February 10, 2021 - 2:12 PM

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
User avatar
jpele
Messages: 156
Registration: March 4, 2019 - 12:01
Location: Nantes

February 10, 2021 - 3:12 PM

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
Locked