Page 1 of 1

[Package error] Citrix Workspace App - 1907 - ex citrix receiver

Published: August 20, 2019 - 3:59 PM
by jeancharles
Hello everyone,

I wanted to prepare a silent installation package for Citrix Workspace App 1907, which replaces the old Citrix Receiver client.

I prepared an MSI template package using the source code available on the Citrix website
(https://www.citrix.com/downloads/workspace-app/
) and I'm trying to pass the following parameters:

`/VERYSILENT /includeSSON /rcu /noreboot STORE0="CTXstoreWeb;https://svctx.domain.local/Citrix/CTXSTOREWeb;On;Svctx"`.

But it doesn't seem to like it.
If I run it like that, I get a timeout message: `timed

out after 300 seconds with output \'\'\'\'\n']]`.

During the process, the package may install the .NET Framework 4.6 if it's not already present (in my test, it's already installed), and remove previous versions (using the `/RCU` command), which can take some time.

How can I prevent the timeout from occurring? :?

Thank you for your feedback,

Jean-Charles

Re: [Package error] Citrix Workspace App - 1907 - ex citrix receiver

Published: August 20, 2019 - 4:25 PM
by vcardon
jeancharles wrote: August 20, 2019 - 3:59 PM
How can I prevent the timeout from happening? :?
https://www.wapt.fr/fr/doc/wapt-common- ... tput-600-0

Sincerely.

Vincent

Re: [Package error] Citrix Workspace App - 1907 - ex citrix receiver

Published: August 23, 2019 - 2:41 PM
by jeancharles
Thank you for this information, but it seems that the package isn't actually taking into account the parameters I'm providing.
So the installer starts but waits for configuration until it times out. :(

My installation has this:
`install_exe_if_needed("CitrixWorkspaceApp.exe",'/SILENT /includeSSON /noreboot /AutoUpdateCheck=disabled /enableCEIP=false',key='{}',min_version='19.7.0.15',timeout=600)`.


I've simplified my parameters and I'll try the package again.