tis-xencenter icon

XenCenter

Silent install package for XenCenter

2025.5.0-4
System
System

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

package           : tis-xencenter
version           : 2025.5.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          : PROD
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      : 23477fb4-840b-462e-bab9-1d67e3675878
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            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-01-05T10:00:44.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         : FWrVLGSmBeXNPCbah47WGiOxXdZ1Hc6910FHLhyylCoemmHLYiU4hc79egwRLhmfMVCyzZO+JwvX7Jo3MNGcdwLWo27MzQLdb664UL75/Oo/gDugOhZ8jh4deLckY+/LzmDcKiUAq3Oipy4zCg4lJUH5krLaujB2q3Y0Srm10426TXUHY7IsSEJ7oKjmGo8KQpeK540rn1RjBOeL/eHo4m7m5XqbF3stSsdSvtf/x21ew8indUSS71PcKiyF/rf3xQEi7I0ChYnPI7c1DDpFdJu+aB7AcczqDgq1Dd7fc6Irm6vnMVFWzd6S7mAanG66GM0iKaj7RRl8e9BDmr9BrQ==

#!/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

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a8664ec9b7ace6a89cdfac4c306d3f1ece9b8b3f53a553b9d69867a617749639 : WAPT/control
6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88 : WAPT/icon.png
4eaff5723254521640995656273d23650e01715e6638dff28dddc91416df59b8 : XenCenter-2025.5.0.msi
6e04eeb6279ba59a46fd8342a83858cd5f63b6d4168da54bac4a20ac2692c95e : luti.json
fa71c29c9aa526fac9617033b549b36481b820d7a758bb16e98e00ca1c47a8df : setup.py
9ac9ab928c47bd72c9dd4f033adf65fb4e47d5dcbd5b4eb2145e9bcb05217be3 : update_package.py