tis-xencenter icon

XenCenter

Paquet d'installation silencieuse pour XenCenter

2026.3.0-4
System
System

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-xencenter
  • name: XenCenter
  • version: 2026.3.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.58 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.xenserver.com/fr-fr/xencenter.html

package           : tis-xencenter
version           : 2026.3.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      : 21391b44-ed14-4fc4-9035-a9f24542e13d
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-06-25T12:07:31.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         : ItV6eC9GS7cwcwotGd3i6cVudzC2I+kIZrvjh5J2ZV9UQCtXKXWm1PqNt8gb4t/+x914S7KAz3Enm7JkWyHyp/h/KibL6MKfGhNwbcttsYfmJamrAn8cZhq4t7wMkgm8kuH4DJpvr+EQN/ZcFHkcWhA2GvjkZ0pELF1/1jC30Lhopib4Rzqzje1tdPFXsAJfrXzDdrvplFzNBWI3qfLlv8etMz8M7BLvjqOafhK1V54hdtY2DInf+63RXF24gWxHrrcyM4ka0f/TsbwGgM/AuiesFkbBgtindaBaCZ7L9C4YDIhn1JMtLo+m+p0GY7wGqPHL+4l0GAqUURzHnlbxFg==

#!/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
3947c650f226c120e7fbac12c8a878d5af8271284b3289cb9f742bfae895861d : WAPT/control
6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88 : WAPT/icon.png
ef8bf4270a8e02f48b618b7a4d0bd73639998a19f1401c4175e1c1e3487b4915 : XenCenter-2026.3.0.msi
e29dc8b6e04777ac40977d68957cb535b29749d93cf1b834bdb694ead4cab8de : luti.json
fa71c29c9aa526fac9617033b549b36481b820d7a758bb16e98e00ca1c47a8df : setup.py
9ac9ab928c47bd72c9dd4f033adf65fb4e47d5dcbd5b4eb2145e9bcb05217be3 : update_package.py