tis-onlyoffice-desktop icon

ONLYOFFICE Desktop Editors

Paquet d'installation silencieuse pour ONLYOFFICE Desktop Editors

9.4.0-13
Office
Office

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-onlyoffice-desktop
  • name: ONLYOFFICE Desktop Editors
  • version: 9.4.0-13
  • categories: Office
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Pierre Cosson
  • editor: Ascensio System SIA
  • licence: GPLv3
  • locale: all
  • target_os: windows
  • impacted_process: DesktopEditors,editors,editors_helper
  • architecture: x64
  • signature_date:
  • size: 373.59 Mo
  • homepage : https://www.onlyoffice.com/

package           : tis-onlyoffice-desktop
version           : 9.4.0-13
architecture      : x64
section           : base
priority          : optional
name              : ONLYOFFICE Desktop Editors
categories        : Office
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau,Pierre Cosson
description       : ONLYOFFICE (formerly TeamLab) is an open source office suite
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.onlyoffice.com/download-desktop.aspx
installed_size    : 
impacted_process  : DesktopEditors,editors,editors_helper
description_fr    : ONLYOFFICE (anciennement Teamlab Office) est une suite bureautique libre
description_pl    : ONLYOFFICE (dawniej TeamLab) to pakiet biurowy typu open source
description_de    : ONLYOFFICE (ehemals TeamLab) ist eine Open-Source-Office-Suite
description_es    : ONLYOFFICE (antes TeamLab) es una suite ofimática de código abierto
description_pt    : ONLYOFFICE (antigo TeamLab) é uma suite de escritório de código aberto
description_it    : ONLYOFFICE (ex TeamLab) è una suite per ufficio open source
description_nl    : ONLYOFFICE (voorheen TeamLab) is een open source kantoorpakket
description_ru    : ONLYOFFICE (ранее TeamLab) - офисный пакет с открытым исходным кодом
audit_schedule    : 
editor            : Ascensio System SIA
keywords          : only,onlyoffice,office,suite,word,spreadsheet,sheet,excel,presentation,doc,docx,xls,xlsx,ppt,pptx
licence           : GPLv3
homepage          : https://www.onlyoffice.com/
package_uuid      : 9bbf4b14-5eec-42c3-8856-10033318c4d1
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://helpcenter.onlyoffice.com/server/document/changelog.aspx
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : fcaa0478b4159a05634ae213c29643b6138b39e067c19210b2553a9746c4dad3
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-06-01T13:07:19.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         : ijJcKTCEPic6y9s3ZKD2EgiO0EM3Gjl2z5/GcpkP4Ezs1lXqRXRhcg3sxSRF2kFDQSTrMgGjiFl56GJtNjsVBM07EfJQVMm6lZEBmIpDWCd+eFY/m/jjwW6XeUrYQRLEZ/R8Dk0yN8bd9GFj1NO+aaxdvRAIpkryMgr46pApkRHpZ26hfqYSA1IQgaOmOs6KGpZyoR3vzdVjkH9bVtg8bDGGlDmjyct1n5AdQ4370s/i82e/QUWZbs4Or1cW+88vSoq+e3gCvTsO3AQa+v1sO3nYjsqSUT1VEMZ5/OmHpL8YfBEJNnYtFl7o5mt8q7rxyosb5flCvqFnHOfbEx+XWg==

# -*- coding: utf-8 -*-
from setuphelpers import *
import time

app_uninstallkey = "ONLYOFFICE Desktop Editors_is1"


def install():
    # Specific app values
    package_version = control.get_software_version()
    bin_name = glob.glob("DesktopEditors*.exe")[0]

    for onlyoffice in installed_softwares(app_uninstallkey):
        if programfiles32 in onlyoffice["uninstall_string"]:
            run(uninstall_cmd(onlyoffice["key"]), timeout=1200)

    # Installing the package
    install_exe_if_needed(
        bin_name,
        silentflags="/VERYSILENT /NORESTART /SUPPRESSMSGBOXES",
        key=app_uninstallkey,
        min_version=package_version,
        timeout=1600,
    )

    remove_desktop_shortcut("ONLYOFFICE Editors")
    run(r'sc stop "ONLYOFFICE Update Service"')
    run(r'sc config "ONLYOFFICE Update Service" start= disabled')


def session_setup():
    print("Disabling: check for update")
    registry_setstring(HKEY_CURRENT_USER, r"Software\ONLYOFFICE\DesktopEditors", "CheckForUpdates", "0")

# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
import json


def update_package():
    # Declaration of local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    api_url = "https://api.github.com/repos/ONLYOFFICE/DesktopEditors/releases/latest"
    os_dict = {
        "x64": "x64",
        "x86": "x86",
        "arm64": "arm64",
    }

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    exe_found = False  # Flag pour indiquer la découverte d'un fichier .exe
    # version = json_loads["tag_name"].replace("v", "").replace(".windows", "")
    for release in releases_dict:
        if exe_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".exe") and os_dict[control.architecture] in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["tag_name"].replace("v", "")
                exe_found = True  # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_download, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    control.set_software_version(version)
    control.save_control_to_wapt()

a3b4a7353946a2d836eadfb8f59799f98b906ab961421c05c0bee00be9307a9f : DesktopEditors_x64.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
662b57faedbecda69f6c624a51393c6659e0de2ba2236b5e99b09ce3b979a0ae : WAPT/control
fcaa0478b4159a05634ae213c29643b6138b39e067c19210b2553a9746c4dad3 : WAPT/icon.png
deb4e903cae797c43c6a9c057b36cd2d20f40e58ad6eefe2ff6017d62013de6a : luti.json
43650be206d64fbe473880c75f80be282e181bfce2aaefab679689cf82b189e0 : setup.py
14ab19b4a956ea4823d461d78c7220b6b7dc159f16401cf4010c4be1a824c206 : update_package.py