|PACKAGE] ZIMBRA-ZCO 9.0.0.1941 (x64 and x86)
Published: November 17, 2023 - 4:21 PM
Good morning
I offer you the package(s) to install the outlook connector (v9.0.0.1937) for ZIMBRA in x64 and x86 (depending on your version of office/outlook).
There is a problem with the .msi file; the declared "uninstallkey" key is incorrect and does not match the one actually registered in the registry, so it needs to be corrected, hence the modification in setup.py.
To retrieve the .msi files (x64 and x86):
https://www.zimbra.com/product/addons/z...-download/
setup.py for x64:
setup.py for x86:
It works for me, but I'm unsure about having to enter the uninstallkey twice
Commander
I offer you the package(s) to install the outlook connector (v9.0.0.1937) for ZIMBRA in x64 and x86 (depending on your version of office/outlook).
There is a problem with the .msi file; the declared "uninstallkey" key is incorrect and does not match the one actually registered in the registry, so it needs to be corrected, hence the modification in setup.py.
To retrieve the .msi files (x64 and x86):
https://www.zimbra.com/product/addons/z...-download/
setup.py for x64:
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
uninstallkey = ["{E84234CB-FF68-4270-A7EE-422FA03B4E0E}"]
def install():
# Declaring local variables
# Installing the software
print("Installing: ZimbraConnectorOLK_9.0.0.1937_x64.msi")
install_msi_if_needed('ZimbraConnectorOLK_9.0.0.1937_x64.msi',key='{E84234CB-FF68-4270-A7EE-422FA03B4E0E}')
setup.py for x86:
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
uninstallkey = ["{C0A5C7CF-452B-4551-A9D5-CE41BC7831AF}"]
def install():
# Declaring local variables
# Installing the software
print("Installing: ZimbraConnectorOLK_9.0.0.1937_x86.msi")
install_msi_if_needed('ZimbraConnectorOLK_9.0.0.1937_x86.msi',key='{C0A5C7CF-452B-4551-A9D5-CE41BC7831AF}')
It works for me, but I'm unsure about having to enter the uninstallkey twice
Commander