tis-adobe-connect icon

Adobe Connect

Silent install package for Adobe Connect

2026.3.125-7
Utilities
Utilities

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-adobe-connect
  • name: Adobe Connect
  • version: 2026.3.125-7
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Adobe
  • licence: Proprietary
  • locale: all
  • target_os: windows
  • impacted_process: connect,connectdetector,crwindowsclientservice
  • architecture: x64
  • signature_date:
  • size: 193.82 Mo
  • homepage : https://www.adobe.com/products/adobeconnect.html
  • depends:

package           : tis-adobe-connect
version           : 2026.3.125-7
architecture      : x64
section           : base
priority          : optional
name              : Adobe Connect
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Adobe Connect offers multiple ways to collaborate and attend remote sessions
depends           : tis-dotnetfx
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://helpx.adobe.com/adobe-connect/connect-downloads-updates.html
installed_size    : 
impacted_process  : connect,connectdetector,crwindowsclientservice
description_fr    : Adobe Connect permet de collaborer et de participer à des sessions à distance à l’aide de plusieurs méthodes
description_pl    : Adobe Connect oferuje wiele sposobów współpracy i uczestnictwa w sesjach zdalnych
description_de    : Adobe Connect bietet mehrere Möglichkeiten für die Zusammenarbeit und die Teilnahme an Fernsitzungen
description_es    : Adobe Connect ofrece múltiples formas de colaborar y asistir a sesiones remotas
description_pt    : Adobe Connect oferece múltiplas formas de colaborar e assistir a sessões remotas
description_it    : Adobe Connect offre diversi modi per collaborare e partecipare a sessioni remote
description_nl    : Adobe Connect biedt verschillende manieren om samen te werken en sessies op afstand bij te wonen
description_ru    : Adobe Connect предлагает множество способов совместной работы и участия в удаленных сессиях
audit_schedule    : 
editor            : Adobe
keywords          : adobe,connect
licence           : Proprietary
homepage          : https://www.adobe.com/products/adobeconnect.html
package_uuid      : 18ba1f1c-ff11-40df-8f3b-df9777607ca8
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://helpx.adobe.com/adobe-connect/connect-releasenotes.html
min_os_version    : 
max_os_version    : 
icon_sha256sum    : eb2e993680214568f88f59438a8707e240a23abeafeb9c39c332b7a710264da5
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-04-02T08:30:06.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         : RXxLgIN110LW1gp2QvmVKUlw8r4HpGHwGA0WNLpFKfuW72eYHuoXaM9WQijmJFNSUoc2BTQy5MPVyqrryTWEOdtunAwNZvtOtxYWN6jgAHm0ZuZ8qERG1X8ED+hdzYMiaI+donwHMG6kHsGiWh+tGtyyz3k3jl/bRZfNXgmw7WVxXNHpgWUGLgBxS+5MwG+ULOueGi2D5Ep/SpcGa1F0WMR02cF47LN5hkweSSaJTn6IRETT6b43zBciflzRSoRlXLT92l2l3Ty46FPrn4ZEwm7MFXfuvL4395eXlPiq8gKV6SNTUsMqsCLnZikumFQ6JaB5oUuCjXBFxKO4Yw2QOw==

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

# Installation procedure: https://helpx.adobe.com/adobe-connect/installconfigure/install-application-for-desktop.html

# Defining variables
bin_name_string = "ConnectApp11_%s.msi"
app_name = "Adobe Connect"


def install():
    # Initializing variables
    package_version = control.version.split("-")[0]
    bin_name = bin_name_string % package_version
    short_version = package_version.split("20", 1)[-1]

    # Installing the package
    print("Installing: %s" % bin_name)
    install_msi_if_needed(bin_name, min_version=short_version)

    # Avoiding the usage by WAPT of the app built-in Uninstallstring
    uninstallkey.remove(get_msi_properties(bin_name)["ProductCode"])

    # Disabling update check
    registry_set(HKEY_LOCAL_MACHINE, r"SOFTWARE\Adobe\Connect", "preventUpdateCheck", 1)


def uninstall():
    # Initializing variables
    processes_to_kill = control.impacted_process.strip().replace(" ", "").split(",")
    count = 60  # 60x5=300sec maximum waiting

    # Uninstalling the package
    for uninstall in installed_softwares(name=app_name):
        killalltasks(processes_to_kill)
        print("Uninstalling: %s" % uninstall["name"])
        run(uninstall_cmd(uninstall["key"]))

    while installed_softwares(name=app_name):
        count -= 1
        if count == 0:
            error("Unable to uninstall: %s" % app_name)
        time.sleep(5)

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

# Defining variables
bin_name_string = "ConnectApp11_%s.msi"
app_name = "Adobe Connect"


def update_package():
    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    bin_temp = "Connect11.msi"
    version = "11.0"  # fake version
    latest_bin = bin_temp
    url_dl = "https://www.adobe.com/go/Connect11msi"

    print("Latest %s version is: %s" % (app_name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries

    r = requests.head(url_dl, proxies=proxies, allow_redirects=True)
    url_dl = r.url
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

        # Checking version from file
        version_from_file = get_version_from_binary(latest_bin)
        if version != version_from_file:
            version = "20" + version_from_file
            os.rename(latest_bin, bin_name_string % version)

        # Changing version of the package
        control.version = "%s-%s" % (version, int(control.version.split("-")[-1]) + 1)
        control.save_control_to_wapt()
        print("Changing package version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

70e9cebbf2294d7805f6cda3ad8274aa20164005c8162b748fba6d1265c98c82 : ConnectApp11_2026.3.125.msi
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e5927182ed4dcd3cc554e5992d0c9bc972b93c80ca63349fef16a05437b7254d : WAPT/control
eb2e993680214568f88f59438a8707e240a23abeafeb9c39c332b7a710264da5 : WAPT/icon.png
e6f7e9b2becf7eb7a75099114fa672d1ba89a4f8c1341ff971d47bfd03b023e6 : luti.json
5db94ab598152c97fc80c5f42adfa577099db469ee61e94b6c6c50ac35ec5336 : setup.py
42f04b18d8f0116df5875974aeb7f36dfb8e1d587631c726b58c380c2b582cde : update_package.py