tis-webex
41.10.2.12-7
Cisco Webex is an enterprise solution for video conferencing, online meetings, screen share, and webinars
35311 downloads

Description
- package : tis-webex
- version : 41.10.2.12-7
- architecture : all
- categories : Media
- maintainer : WAPT Team,Tranquil IT,Kenan KILICARSLAN
- description : Cisco Webex is an enterprise solution for video conferencing, online meetings, screen share, and webinars
- locale : all
- target_os : windows
- min_wapt_version : 1.7
- sources : https://akamaicdn.webex.com/client/webexapp.msi
- installed_size : 311000000
- impacted_process : webex,ptoneclk,webexmta,CiscoWebexImporting,CiscoWebexWebService,wbxreport,wbxdmsupload,wbxreport_tsp,webexAppLauncher
- description_fr : Cisco Webex est une solution d'entreprise pour les vidéoconférences, les réunions en ligne, le partage d'écran et les webinaires
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Cisco WebEx Communications Inc
- licence : Commercial
- signature_date : 2021-09-23T09:55:56.523230
- Homepage : https://www.webex.com/fr/index.html
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
uninstallkey = []
# Defining variables
bin_name = 'webexapp.msi'
app_name = 'Cisco Webex Meetings'
def install():
# Initializing variables
package_version = control.version.split('-')[0]
# Using need_install function since the app have to be close after install / install_msi_if_needed still called otherwise for smart uninstall
if need_install(get_msi_properties(bin_name)['ProductCode'],min_version=package_version):
print('Installing: %s' % bin_name)
install_msi_if_needed(bin_name,min_version=package_version)
print('killing app since started after installation')
killalltasks('ptoneclk.exe')
else:
install_msi_if_needed(bin_name,min_version=package_version)
def update_package():
print('Download/Update package content from upstream binary sources')
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
dl_url = 'https://akamaicdn.webex.com/client/webexapp.msi'
# download binary
if isfile(bin_name):
print("removing old binary !")
remove_file(bin_name)
print("downloading binary")
wget(dl_url,bin_name,proxies=proxies)
version = get_version_from_binary(bin_name)
# 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)
def get_version_from_binary(filename):
if filename.endswith('.msi'):
return get_msi_properties(filename)['ProductVersion']
else:
return get_file_properties(filename)['ProductVersion']
def get_proxies():
if platform.python_version_tuple()[0] == '3':
from urllib.request import getproxies
else:
from urllib import getproxies
return getproxies()
def get_proxies_from_wapt_console():
proxies = {}
if platform.system() == 'Windows':
waptconsole_ini_path = makepath(user_local_appdata(), 'waptconsole', 'waptconsole.ini')
else:
waptconsole_ini_path = makepath(user_home_directory(), '.config', 'waptconsole', 'waptconsole.ini')
if isfile(waptconsole_ini_path):
proxy_wapt = inifile_readstring(waptconsole_ini_path, 'global', 'http_proxy')
if proxy_wapt:
proxies = {'http': proxy_wapt, 'https': proxy_wapt}
return proxies
Changelog
Changelog software url : https://help.webex.com/n0mq1ae/Latest-Updates-Overview-for-Cisco-Webex-Meetings
No changelog.txt.