Scenari Client
Paquet d'installation silencieuse pour Scenari Client
6.5.3-0
Office
Office
- package: tis-scenariclient
- name: Scenari Client
- version: 6.5.3-0
- categories: Office
- maintainer: WAPT Team,Tranquil IT, Kevin CHEREL
- editor: Kelis
- licence: GPLV2
- locale: en
- target_os: windows
- architecture: x64
- signature_date:
- size: 96.80 Mo
- homepage : https://scenari.software/fr/
package : tis-scenariclient
version : 6.5.3-0
architecture : x64
section : base
priority : optional
name : Scenari Client
categories : Office
maintainer : WAPT Team,Tranquil IT, Kevin CHEREL
description : Client SCENARI, logiciel de chaine éditoriale
depends :
conflicts :
maturity : PROD
locale : en
target_os : windows
min_wapt_version : 2.3
sources : https://download.scenari.software/SCENARIclient/?productInfos=
installed_size :
impacted_process :
description_fr : Client SCENARI, logiciel de chaine éditoriale
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Kelis
keywords :
licence : GPLV2
homepage : https://scenari.software/fr/
package_uuid : 441c5fa2-9cb5-4b85-936b-8fcde6ccbf67
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : d137905048a4e7b6dc0cf0cd1cbdfbe69e04f4fcd20df0a2eef3d6ca417068f1
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-08T10:05:30.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 : fhqFM+42oyq6ppBg1ktbUtUjFgRRkt5R75riMRTXLZ0Ry7MuNN+OoRbaQFgFGKNlsK/ozx5rUYvgjLpggTzVMmLT/qoYiHYxLN4Y4Wm76YBz9v0k7NDYuyL/DiRasv0lt86aHXGV7qH7snP4qp1Po2BmC7gXlFodLzztP7O/Jp3UiX8OJoLV5QI+SqAJL7LQ0hhoLrInk7w0jRhyBs9Q1WM6ecsYkXsDpDPA+E/T+nEpnE1+gLa/punhRLf+9LxsD2m/T5w+RZjjdTyHtUCWjGdA2tzvngS8vVeg+nfC+EQymUaelzT7YL8NAv2jD7MwkQodMNxFQxB89ajd5+EuoA==
# -*- coding: utf-8 -*-
from setuphelpers import *
app_name = "SCclient"
def install():
bin_name = glob.glob('SCENARIclient*x64.exe')[0]
for to_uninstall in installed_softwares("SCclient"):
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(control.impacted_process.split(","))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
print("installing tis-scenariclient")
run(bin_name + r" /S")
def uninstall():
for to_uninstall in installed_softwares("SCENARIclient 6"):
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(control.impacted_process.split(","))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
# Search products ID
url_api = "https://download.scenari.software/SCENARIclient/?productInfos="
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["ch"]:
# Condition to parcing binary, windows/en/.exe
if (download.get("prc") == "dlProduct" and download.get("metas", {}).get("os") == "windows" and download.get("metas", {}).get("lang") == "en-US" and download.get("n", "").endswith(".exe")):
url_dl = "https://download.scenari.software" + download["metas"]["path"]
filename = download["n"]
version = download["n"].split("client")[1].split("_")[0]
break
print("Version : %s" % version)
print("Filename : %s" % filename)
print("URL : %s" % url_dl)
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
# Clean temp folders
for f in glob.glob('*.exe'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
9084d4220849e39459f567a5fdaccd8da06f4c4dd75750ee11a0c5a4c08cd20e : SCENARIclient6.5.3_en-US_202607030843_win_x64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
22a5d419a6302bc825316807f963116a6c7ed0e8487b99f57d0e427961bb8fda : WAPT/control
d137905048a4e7b6dc0cf0cd1cbdfbe69e04f4fcd20df0a2eef3d6ca417068f1 : WAPT/icon.png
eacb722df0562f563132bc5ad24b5542c60b9d5af8232807495d6725dbbb8d87 : luti.json
6f24e3bcc7495290decc625bfa3436876ee134a5957abf201ef5a01e8705a390 : setup.py
d58d684358f2c363729f01ed7513d591a4bae598e2ed1b0c4671a35eec06f394 : update_package.py