
Microsoft Teams
Paquet d’installation silencieuse pour Microsoft Teams
1.5.00.23861-2
- package: tis-microsoft-teams
- name: Microsoft Teams
- version: 1.5.00.23861-2
- categories: Media,Messaging,Office
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
- editor: Microsoft
- licence: Proprietary
- locale: all
- target_os: debian-buster,centos8,almalinux
- impacted_process: Teams
- architecture: x64
- signature_date:
- size: 201.19 Mo
- homepage : https://www.microsoft.com/microsoft-365/microsoft-teams/group-chat-software
package : tis-microsoft-teams
version : 1.5.00.23861-2
architecture : x64
section : base
priority : optional
name : Microsoft Teams
categories : Media,Messaging,Office
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
description : System-Wide installation (prevent Per-user installation) - Microsoft Teams, also referred to as simply Teams, is a unified communication and collaboration platform that combines persistent workplace chat, video meetings, file storage (including collaboration on files)
depends :
conflicts :
maturity : PROD
locale : all
target_os : debian-buster,centos8,almalinux
min_wapt_version : 2.1
sources :
installed_size :
impacted_process : Teams
description_fr : Microsoft Teams, aussi simplement appelé Teams, est une plate-forme de communication et de collaboration unifiée qui combine le chat, les réunions vidéo, le stockage de fichiers (comprend la collaboration sur les fichiers)
description_pl : Instalacja w całym systemie (zapobieganie instalacji na użytkownika) - Microsoft Teams, określany również jako po prostu Teams, jest platformą ujednoliconej komunikacji i współpracy, która łączy czat w miejscu pracy, spotkania wideo, przechowywanie plików (w tym współpracę nad plikami)
description_de : Systemweite Installation (verhindert die Installation pro Benutzer) - Microsoft Teams, auch einfach als Teams bezeichnet, ist eine einheitliche Kommunikations- und Kollaborationsplattform, die einen dauerhaften Arbeitsplatz-Chat, Videokonferenzen, Dateispeicherung (einschließlich der Zusammenarbeit an Dateien)
description_es : Instalación en todo el sistema (evita la instalación por usuario) - Microsoft Teams, también denominada simplemente Teams, es una plataforma de comunicación y colaboración unificada que combina el chat persistente en el lugar de trabajo, las reuniones de vídeo, el almacenamiento de archivos (incluida la colaboración en archivos)
description_pt : Instalação a nível do sistema (impedir a instalação por utilizador) - Equipas Microsoft, também referidas como simplesmente Equipas, é uma plataforma unificada de comunicação e colaboração que combina chat persistente no local de trabalho, reuniões em vídeo, armazenamento de ficheiros (incluindo colaboração em ficheiros)
description_it : Installazione a livello di sistema (impedisce l'installazione per utente) - Microsoft Teams, indicato anche come semplicemente Teams, è una piattaforma di comunicazione e collaborazione unificata che combina chat persistenti sul posto di lavoro, riunioni video, archiviazione di file (compresa la collaborazione su file)
description_nl : Installatie voor het hele systeem (voorkomt installatie per gebruiker) - Microsoft Teams, ook wel gewoon Teams genoemd, is een platform voor verenigde communicatie en samenwerking dat permanente chat op de werkplek, videovergaderingen, bestandsopslag (inclusief samenwerking aan bestanden) combineert
description_ru : Установка по всей системе (предотвращение установки на одного пользователя) - Microsoft Teams, также называемая просто Teams, представляет собой платформу унифицированных коммуникаций и совместной работы, которая объединяет постоянный чат на рабочем месте, видеовстречи, хранение файлов (включая совместную работу над файлами)
audit_schedule :
editor : Microsoft
keywords : microsoft,teams,team,communication,collaboration,chat,video,meetings
licence : Proprietary
homepage : https://www.microsoft.com/microsoft-365/microsoft-teams/group-chat-software
package_uuid : b2a6d4d4-5a07-4527-b530-9eb422de14ae
valid_from :
valid_until :
forced_install_on :
changelog : https://support.office.com/article/what-s-new-in-microsoft-teams-d7092a6d-c896-424c-b362-a472d5f105de
min_os_version :
max_os_version :
icon_sha256sum : c6e1224de3bf5ed2d252f9cee788480febfe2993b02cf91cf3258e7306274674
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : vAiLio5zX3VEFrvi0xW+pLiEndATDWZR+vsb8w1gWfoCxuyPAW6YoNwPNdgbG0vMHMuoRW84V6gEgSWv324aDrLnLTXMeiBp8n8WsRGkJq5gWjzlDa9cbnq940zfVGfERJyfRWIW06eni7m9GZ6B2ToKFb1muKcIJvDfdymcMjeDlKnp5oMY8X/8JmNKMdDW1AmiZ9HEg4VqlWRyCQNiQa6Bee93hieCzOOkDpmO2seIeQCkeQXGwV75hS3ss4EuTfaVlXKFDlkQaSNWBj4zsfpfILuX3clhpt6/Z+UVE+MT8li+jM+P7W5+GtkjryXNtbDB4j4cu0V5cj9kHIwI3w==
signature_date : 2022-10-25T06:04:03.113087
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
isapt = True
try:
run("apt-get --version")
except:
isapt = False
if isapt:
run("apt-get install ./%s -y" % glob.glob("*.deb")[0], timeout=600)
if isfile("/etc/apt/sources.list.d/teams.list"):
remove_file("/etc/apt/sources.list.d/teams.list")
else:
run("yum install ./%s -y" % glob.glob("*.rpm")[0])
def uninstall():
isapt = True
try:
run("apt-get --version")
except:
isapt = False
if isapt:
run("apt-get remove teams -y")
else:
run("yum remove teams -y")
# -*- coding: utf-8 -*-
from setuphelpers import *
link_deb = "https://go.microsoft.com/fwlink/p/?LinkID=2112886&clcid=0x40c&culture=fr-fr&country=FR"
link_rpm = "https://go.microsoft.com/fwlink/p/?LinkID=2112907&clcid=0x40c&culture=fr-fr&country=FR"
list_binnary = [link_rpm, link_deb]
def update_package():
import urllib
import os
import ssl
proxies = {}
if isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
if proxywapt:
proxies = {"http": proxywapt, "https": proxywapt}
os.environ["http_proxy"] = proxywapt
os.environ["https_proxy"] = proxywapt
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
for url in list_binnary:
response = urllib.request.urlopen(url, context=ctx)
u = response.geturl()
filename = u.split("/")[-1]
if not isfile(filename):
wget(u, filename, proxies=proxies, verify_cert=False)
ext = filename.split(".")[-1]
for b in glob.glob("*.%s" % ext):
if b != filename:
remove_file(b)
version_bin = filename.split("_")[1].split("-")[0]
control.version = "%s-2" % (version_bin)
control.save_control_to_wapt()
30f2e541d49a8ce24948971ac8d93add1ac0cea8afb932f74cf38b4a132d44fe : setup.py
732c758913760ae619970e8b7e5e69e45f014fa3074b30cd7bae9ca6f7817096 : update_package.py
6b0f587e30f991b227764bc515b909d5d31069b176d31de6dd14b49c91dc578a : teams-1.5.00.23861-1.x86_64.rpm
c6e1224de3bf5ed2d252f9cee788480febfe2993b02cf91cf3258e7306274674 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
5d4956da33d00b67af477188719bfeef4b885ec4a2d318444a7d96277fdd7403 : WAPT/changelog.txt
87462709e257fff9784de809559b5abd5dc7af18d8505d856b92a66989995bc1 : teams_1.5.00.23861_amd64.deb
8397f03fba6ee079e4639499c3907e05dc167d4549e7cdd0a1a7b4521389c46c : luti.json
04bcc0c736688074ac02e332d36801a9155169261d184537f1f7bfe686c8c5eb : WAPT/control
https://support.office.com/article/what-s-new-in-microsoft-teams-d7092a6d-c896-424c-b362-a472d5f105de
1.5.0.14473-66
Translating control descriptions