[SOLVED] Webex Packet Creation
Published: October 27, 2022 - 10:58 AM
Good morning,
I can't get a Cisco Webex msi package to work (not Cisco Webex Meeting, which is already in the online repository)
In the explanatory videos, there's an option to modify the arguments and the uninstallkey in the wizard, but it's greyed out for me...
Can you help me create a working setup.py file?
Here is my essay
Here is the error log
I absolutely need to add ACCEPT_EULA=TRUE ALLUSERS=1 /qn as a function during installation
Here is the Webex link
https://binaries.webex.com/WebexTeamsDe ... /Webex.msi
Thank you for everything!
I can't get a Cisco Webex msi package to work (not Cisco Webex Meeting, which is already in the online repository)
In the explanatory videos, there's an option to modify the arguments and the uninstallkey in the wizard, but it's greyed out for me...
Can you help me create a working setup.py file?
Here is my essay
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey=["{32E8818C-AA8B-5494-9CA9-FA0E093140B8}"]
def install():
print('installation de Cisco Webex')
run('msiexec /qn "webex.msi" ACCEPT_EULA=TRUE ALLUSERS=1')Here is the error log
Code: Select all
installation de Cisco Webex
Traceback (most recent call last):
File "C:\Program Files (x86)\wapt\common.py", line 4057, in install_wapt
exitstatus = setup.install()
File "C:\Windows\TEMP\waptbonvc41t\setup.py", line 8, in install
File "C:\Program Files (x86)\wapt\common.py", line 3834, in run
return ensure_unicode(run(*arg, pidlist=self.pidlist,**args))
File "C:\Program Files (x86)\wapt\waptutils.py", line 2114, in run
raise TimeoutExpired(cmd, ''.join(output), timeout)
waptutils.TimeoutExpired: Command 'msiexec /qn "webex.msi" ACCEPT_EULA=TRUE ALLUSERS=1' timed out after 600 seconds with output ''''
TimeoutExpired: Command 'msiexec /qn "webex.msi" ACCEPT_EULA=TRUE ALLUSERS=1' timed out after 600 seconds with output ''''
Here is the Webex link
https://binaries.webex.com/WebexTeamsDe ... /Webex.msi
Thank you for everything!