Support Forum: Get Support for Patch My PC Products and Services

Commercial Products: Support for Our Enterprise Product for Microsoft ConfigMgr and Intune => Commercial/Paid Products: Support and General Questions (ConfigMgr and Intune) => Topic started by: Matthias Veelaert on March 17, 2022, 03:38:10 AM

Title: Create uninstall script for citrix HDX
Post by: Matthias Veelaert on March 17, 2022, 03:38:10 AM
Hi there,
I have just started at Lineas and they work with patchmypc so im learning as I go along. Now there is a product called citrix which you support. We're trying to go back from the 2202 workspace release to the 19.12 workspace ltsr version but before we can delete workspace 2202, we have to delete Citrix HDX. Then we install the other citrix workspace and then reinstall HDX. Now I have written a line to first delete HDX in a script but It looks like it doesn't want to execute. I have added this script to pre/post scripts but I don' know if I am doing something wrong. The line I have written can be found in the attachments. Am I doing it right or am I missing something?

Kind regards!
Title: Re: Create uninstall script for citrix HDX
Post by: Adam Cook (Patch My PC) on March 17, 2022, 03:47:51 AM
Hey Matthias,

Unfortunately we can not provide support for writing custom scripts.

My advice is to avoid querying the Win32_Product WMI class as this forces every product on the system to reconfigure/reinstall itself. Here's an article I found online you might find useful for more reading on that: https://xkln.net/blog/please-stop-using-win32product-to-find-installed-software-alternatives-inside/
Title: Re: Create uninstall script for citrix HDX
Post by: Matthias Veelaert on March 17, 2022, 03:50:12 AM
Alright, thanks I'll definitely look into it :) Thank you
Title: Re: Create uninstall script for citrix HDX
Post by: Matthias Veelaert on March 17, 2022, 04:01:02 AM
Do the scripts get executed as admin when they get added to scripts in patchmypc?
Title: Re: Create uninstall script for citrix HDX
Post by: Adam Cook (Patch My PC) on March 17, 2022, 04:31:35 AM
They execute in the same context as the apps/updates which is generally NT AUTHORITY\SYSTEM, unless you choose a user-based app then it'll execute in the user's context.
Title: Re: Create uninstall script for citrix HDX
Post by: Matthias Veelaert on March 21, 2022, 06:45:28 AM
Where would I find out if its a user-based application? Also the script wont execute even though the script itself works. Do you perhaps have an idea why the script wont execute when citrix is being uninstalled? I have stopped querying win32 though :)
Title: Re: Create uninstall script for citrix HDX
Post by: Adam Cook (Patch My PC) on March 21, 2022, 07:17:06 AM
Products in our catalogue with the naming convention of "... (User)" in the title would be user-based packages.
Title: Re: Create uninstall script for citrix HDX
Post by: Jimmywick on July 21, 2022, 11:04:31 PM
Hi, I tried running this,
C:\ProgramData\Citrix\Citrix Receiver 4.11\TrolleyExpress.exe /uninstall /silent /cleanup

Regards,
J Wick
Title: Re: Create uninstall script for citrix HDX
Post by: AndAuf on August 10, 2022, 08:00:09 AM
I'm at this point as well right now.

For Citrix Receiver, there is a pretty good clean up tool, which doesn't care if it was installed as user or system: https://support.citrix.com/article/CTX137494/receiver-cleanup-utility

A little bit difficult is detecting user installations and running system uninstallation
Maybe something like this would work:
Application1 (dummy application, does nothing at all) running as user with detection script like
if ((Get-ChildItem -path $env:localappdata\Pathto\Citrix\Receiver.exe -ErrorAction SilentlyContinue).exists) {Write-Host "True"}Application2 superseding Application1 also running as user and creates a dummy file where user can write to (like c:\temp\citrix.tmp)
if ((Get-ChildItem -path c:\temp\citrix.tmp -ErrorAction SilentlyContinue).exists) {Write-Host "True"}Application3 deployed as system with detection c:\temp\citrix.tmp does not exist
if (!(Get-ChildItem -path c:\temp\citrix.tmp -ErrorAction SilentlyContinue).exists) {Write-Host "True"} and running Cleanuptool and deleting citrix.tmp file

not tested... just some brainfarting ;)


For Citrix Workspace, there is no such tool