tis-xencenter icon

XenCenter

Silent install package for XenCenter

2026.1.0-4
System
System

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-xencenter
  • name: XenCenter
  • version: 2026.1.0-4
  • categories: System
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT, Bertrand LEMOIGNE
  • editor: Citrix Systems
  • licence: proprietary_free,wapt_public
  • target_os: windows
  • impacted_process: XenCenter,XenCenterMain
  • architecture: all
  • signature_date:
  • size: 43.61 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.xenserver.com/fr-fr/xencenter.html

package           : tis-xencenter
version           : 2026.1.0-4
architecture      : all
section           : base
priority          : optional
name              : XenCenter
categories        : System
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT, Bertrand LEMOIGNE
description       : XenCenter enables you to manage your XenServer or Citrix Hypervisor environment and deploy, manage, and monitor virtual machines from your Windows desktop
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : https://docs.xenserver.com/fr-fr/xencenter.html
installed_size    : 72443806
impacted_process  : XenCenter,XenCenterMain
description_fr    : XenCenter vous permet de gérer votre environnement XenServer ou Citrix Hypervisor et de déployer, gérer et surveiller des machines virtuelles à partir de votre bureau Windows
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Citrix Systems
keywords          : citrix,virtualization
licence           : proprietary_free,wapt_public
homepage          : https://docs.xenserver.com/fr-fr/xencenter.html
package_uuid      : 332ba759-099e-4319-99b6-4d845ecba3db
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.citrix.com/article/CTX473972/upcoming-changes-in-xencenter
min_os_version    : 10.0.18363
max_os_version    : 
icon_sha256sum    : 6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-03-09T18:02:37.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         : n9wKDYl6fiDoyHRwS234VFWKl2u0VdgeNzPXK7JG9oSAr0zG1xUCi1GdJJ/bEQjUxcR7MnGlSfWACOAa+/IN5nEePAIMnfAud8wjore1pghmY2Us0YPQBl29PEQ9wmleNTWKV1QzZtRAcbao2pti7PXdw8G9o8ESjas4jTe5haOblZRdL4teXF9OhIQpXQSyhH4Z/7GgGr9rRURlAID4Ze3UjxnQFa3JNDNP+XujFHecqb1OLezwZt2a9K08+WKRRRf6YzUTVB0/V7bJDBCWOBhDpFwbHyveIz8UXe1Ft6+fPP4+iuGmMnIqX8g266bfLKRbHEGsqDb2y63jyH70xA==

#!/usr/bin/python
#-*- coding: utf-8 -*-

from setuphelpers import *

def install():

    # Uninstalling older major versions of the software
    for to_uninstall in installed_softwares(uninstallkey="Citrix XenCenter"):
        if Version(to_uninstall["version"], 3) < Version(control.get_software_version(), 3) or force:
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])

    bin_name = glob.glob('XenCenter*.msi')[0]
    install_msi_if_needed(bin_name)

# -*- coding: utf-8 -*-
from setuphelpers import *

def update_package():

    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    url = 'https://www.xenserver.com/downloads'
    for bs_search in bs_find_all(url, "a", "class", "ctx-download ctx-button primary ctx-blue", proxies=proxies):
        if 'XenCenter' in bs_search['href']:
            download_url = bs_search['href']
            break
    latest_bin = download_url.split('/')[-1]
    version = download_url.split('/')[-2]

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    for f in glob.glob('*.msi'):
        if f != latest_bin:
            remove_file(f)

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return package_updated

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
0de2a32fae6536db40c02fa19c0d3dd98787b1a481d4682e90ae6feefa04f6b6 : WAPT/control
6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88 : WAPT/icon.png
22e5501614650fe2d90817b28c1b3a1f69cbb8e69b9fdcf6a0b7529999207db2 : XenCenter-2026.1.0.msi
2eae91de8b48c52854402774f2bd14d3393e729ec0b9fbbd356fd83787f5f63e : luti.json
fa71c29c9aa526fac9617033b549b36481b820d7a758bb16e98e00ca1c47a8df : setup.py
9ac9ab928c47bd72c9dd4f033adf65fb4e47d5dcbd5b4eb2145e9bcb05217be3 : update_package.py