Page 1 of 1

[SOLVED] Webex Packet Creation

Published: October 27, 2022 - 10:58 AM
by dj41ph4
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

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 ''''
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!

Re: Creating Webex Packet

Published: October 30, 2022 - 6:24 PM
by dj41ph4
Is there anyone who can help me? :(

Re: Creating Webex Packet

Published: October 31, 2022 - 10:17 AM
by sfonteneau
Not having the MSI file to test makes it more complicated

Could you try this?

Code: Select all

install_msi_if_needed('webex.msi',properties={'ACCEPT_EULA':'TRUE','ALLUSERS':'1'})

Re: Creating Webex Packet

Published: October 31, 2022 - 11:57 AM
by dj41ph4
Thank you so much, everything works!