
bitrix24
Paquet d’installation silencieuse pour bitrix24
17.1.10.86-1
- package: tis-bitrix24
- name: bitrix24
- version: 17.1.10.86-1
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: 2002–2018 Bitrix, Inc.
- target_os: windows
- architecture: all
- signature_date:
- size: 322.90 Mo
- homepage : https://www.bitrix24.com/apps/mobile-and-desktop-apps.php
package : tis-bitrix24
version : 17.1.10.86-1
architecture : all
section : base
priority : optional
name : bitrix24
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Personal messages, notifications and incoming tasks are visible via the desktop application on your computer. The desktop application gives users access to videoconferencing for groups of up to 4 people, and enables Web phone calls to be made directly from Bitrix24
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Les messages personnels, les notifications et les tâches entrantes sont visibles via l'application de bureau sur votre ordinateur. L'application de bureau permet aux utilisateurs d'accéder à la visioconférence pour des groupes jusqu'à 4 personnes et permet de passer des appels téléphoniques Web directement depuis Bitrix24
description_pl : Osobiste wiadomości, powiadomienia i przychodzące zadania są widoczne za pośrednictwem aplikacji desktopowej na komputerze. Aplikacja desktopowa daje użytkownikom dostęp do wideokonferencji dla grup do 4 osób i umożliwia wykonywanie połączeń telefonicznych bezpośrednio z Bitrix24
description_de : Persönliche Nachrichten, Benachrichtigungen und eingehende Aufgaben sind über die Desktop-Anwendung auf Ihrem Computer sichtbar. Die Desktop-Anwendung ermöglicht Nutzern den Zugriff auf Videokonferenzen für Gruppen von bis zu vier Personen und ermöglicht Webtelefonate direkt von Bitrix24 aus
description_es : Mensajes personales, notificaciones y tareas entrantes son visibles a través de la aplicación de escritorio en su ordenador. La aplicación de escritorio da a los usuarios acceso a videoconferencias para grupos de hasta 4 personas, y permite realizar llamadas telefónicas web directamente desde Bitrix24
description_pt : Mensagens pessoais, notificações e tarefas recebidas são visíveis através do aplicativo de desktop no seu computador. A aplicação de ambiente de trabalho dá aos utilizadores acesso a videoconferências para grupos de até 4 pessoas e permite fazer chamadas telefónicas diretamente a partir do Bitrix24
description_it : I messaggi personali, le notifiche e le attività in arrivo sono visibili tramite l'applicazione desktop sul computer. L'applicazione desktop consente agli utenti di accedere alle videoconferenze per gruppi di massimo 4 persone e di effettuare telefonate via web direttamente da Bitrix24
description_nl : Persoonlijke berichten, meldingen en binnenkomende taken zijn zichtbaar via de desktopapplicatie op uw computer. De desktopapplicatie geeft gebruikers toegang tot videoconferenties voor groepen tot 4 personen en maakt het mogelijk om webtelefoongesprekken rechtstreeks vanuit Bitrix24 te voeren
description_ru : Личные сообщения, уведомления и входящие задачи видны через десктопное приложение на вашем компьютере. Настольное приложение предоставляет пользователям доступ к видеоконференциям для групп до 4 человек, а также позволяет совершать телефонные звонки прямо из Битрикс24
audit_schedule :
editor :
keywords :
licence : 2002–2018 Bitrix, Inc.
homepage : https://www.bitrix24.com/apps/mobile-and-desktop-apps.php
package_uuid : 04661b97-3732-407d-8f76-8180fec8f3b3
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 2d1f008e5a147c68bc6978d1b09d0965488b5fa62016b3907e23cb8306ddf4ae
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-25T21:01:12.000000
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
signature : eifxPEW+wQYGv0BNlFfdwnCDYF0EtvLqYOYNyZZqHg+qJ+SYhaKol2O6o8hhfrGV6mmpn/ZDMgVfPoGonvCSA6gr6Q2N86/nzQkw18utsqIf4w+IzGh+tMjfru044stOLP1KREOVWxievOJina28yoCAxO5oF+Vhm6ECAA2oc9eoZRg4FCu7nNetow8Xvokb2J/ad3z4uRxfn1ZZnsGj35ZV9Mp++YytXJsd1WACwu5JpHWVrrSucj51rU4EyDZL2Nu2ptfAA79nlZGGFSNG30vzX+yF8sB803FSXhFAkGiNmiScY+N+C8xu4jDX6cD/M+wvo+2qxxNYUPJlrZ3eLA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_msi_if_needed('bitrix24_desktop.msi')
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://dl.bitrix24.com/b24/bitrix24_desktop.msi"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2712e6120c2058e64e26c06cb027cbb1724c4c3be59c099af330c5dd6ba68d8a : WAPT/control
2d1f008e5a147c68bc6978d1b09d0965488b5fa62016b3907e23cb8306ddf4ae : WAPT/icon.png
c31fac542653b90426f0a930ba38be84b5b57a68c42897ea6591f67d00913325 : bitrix24_desktop.msi
0919c075552881100ab63718e6b7938f2b7b4ce9f0758dd0ea408d169e4ff406 : luti.json
7dd3383beee4378c5f25cac1ce4e2ab059d81183edb7d23d0b58bea738193acd : setup.py
e8cb746d240e3cbda75f61aff796f5f19f00327ec11b7d3fd3196d9b433950cd : update_package.py