tis-citrix-receiver-cleanup-utility icon

Citrix Receiver Cleanup Utility

Silent install package for Citrix Receiver Cleanup Utility

2.2.0.1-0
Utilities
Utilities

tis-citrix-receiver-cleanup-utility

The tis-citrix-receiver-cleanup-utility package allows you to cleanup any files or components from old Citrix Receiver versions. It is useful for installation of Citrix Workspace in replacement of Receiver for example.

Description

The Receiver Clean-Up utility is designed to assist with the following scenarios:

  • When errors occur during upgrade from an earlier version of Receiver or Online Plug-in
  • When unexpected behavior or performance is experienced after upgrade from an earlier Receiver or Online Plug-in
  • If Receiver upgrade is not possible due to feature incompatibility and/or a clean uninstall is required
  • The Receiver Clean-Up Utility removes components, files, and registry values of Online Plug-in 11.x, 12.x, and Receiver for Windows 3.x, 4.x (Online Plugin-in 13.x, 14.x). This includes the Offline Plug-in component if installed and HDX RealTime Media Engine if installed.

How to use

The Receiver Clean-Up Utility is a standalone executable file and does not require installation. The tis-citrix-receiver-cleanup-utility package runs the executable at install, no further action is required from you.

Citrix recommends to restart the machine when the utility finishes. ReceiverLogs folder is created in the location where the utility is run and tracks all uninstall actions and results.

Data Modified by Receiver Clean-Up Utility : The utility terminates all Receiver processes prior to running the uninstall process.

More information on the Citrix documentation : https://support.citrix.com/external/article/CTX137494/receiver-cleanup-utility.html


  • package: tis-citrix-receiver-cleanup-utility
  • name: Citrix Receiver Cleanup Utility
  • version: 2.2.0.1-0
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
  • editor: Citrix
  • locale: all
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 606.40 Ko

package           : tis-citrix-receiver-cleanup-utility
version           : 2.2.0.1-0
architecture      : x64
section           : base
priority          : optional
name              : Citrix Receiver Cleanup Utility
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Gwenaël ADAM
description       : The Receiver Clean-Up Utility removes components, files, and registry values of Online Plug-in 11.x, 12.x, and Receiver for Windows 3.x, 4.x (Online Plugin-in 13.x, 14.x). This includes the Offline Plug-in component if installed and HDX RealTime Media Engine if installed.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://www.citrix.com/downloads/citrix-tools
installed_size    : 
impacted_process  : 
description_fr    : 
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Citrix
keywords          : 
licence           : 
homepage          : 
package_uuid      : 635a782a-8550-4ddf-aba1-e836e2b88c4b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10
max_os_version    : 
icon_sha256sum    : 5e1e6e3029b87a527bcf4fa063d3312744b36c56e25aacb860893927be53a3b7
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-05-27T11:00:30.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         : qp3wdSZGtNhRXTrDeM61BCyOxcuXA/CdITlibpSTPmHufN56XpvmvRsHTMoEL445r9PLAYfxmJDYtGr5Zbv+V0cqvOnR5s/LdCO4YBYgaPBJJbwu7TInjV86HpAa+4V+0mEmHnCKR/4nbQdcQELvrjl4H8EL/lWTUX9TyE2x5hpv2cR2RUtredthy7p/JFY2uuGfh2/EEX1gs6irUIs4YqmvJ3H3AOzXMh5A9xy5vBkDkCa4ndorRAjawvmYYs2ntPuRJtNTI126RachK6L+PEJsz9sFnBH3ki07Ga9i+Si4l5+fBjD8Xf/ggz01wTWYDO1nDdv11rCwRO40b7qc5g==

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *

# Citrix ReceiverCleanupUtility documentation
# https://support.citrix.com/external/article/CTX137494/receiver-cleanup-utility.html

def install():
    bin_name = glob.glob("ReceiverCleanupUtility.exe")[0]

    # Installing software
    install_exe_if_needed(
        bin_name,
        silentflags='/silent /disableCEIP'
    )

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
from setupdevhelpers import *

def update_package():
    # Declaring local variables

    latest_bin = "ReceiverCleanupUtility.exe"
    download_url = "http://srvtemplates.ad.tranquil.it/binary_cache/" + latest_bin
    # Get-FileHash -Algorithm SHA256 -path
    sha256 = "B270E9C7A3C4D6740D3C67FA2D8F6D74BA5E882032B698BCEA67D83A0F02AD96"
    wget(download_url, latest_bin, sha256=sha256)
    
    control.set_software_version(get_version_from_binary(latest_bin))
    control.save_control_to_wapt()

b270e9c7a3c4d6740d3c67fa2d8f6d74ba5e882032b698bcea67d83a0f02ad96 : ReceiverCleanupUtility.exe
ef35bd7fd95219ffc7e6c39272b594512e3e2dc6e026133ccb62d84128d148e9 : WAPT/README.md
0d2f5779c236b34facdf8dd0c48099da320e55f6cc141af7db459d79feec6df8 : WAPT/README_fr.md
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a289db86bd2d1216b223467542ccdde4e50c73eaf45f60716147f8effa72ff3c : WAPT/control
5e1e6e3029b87a527bcf4fa063d3312744b36c56e25aacb860893927be53a3b7 : WAPT/icon.png
92ad81110459fd14bde3e390fdd96325c3ae3f94f81d84093a0eb0185546c3d9 : luti.json
7a64ca245046cd6db46e8a40d90a2dc0918be4779cd1212700728d22775c66a5 : setup.py
00b45cf028532e8196cf8f700fbe1e748012c3f30830897cd4c31216b8271549 : update_package.py