Citrix Workspace 1904

Posted on  by 



  1. Citrix Workspace 1904 For Windows
  2. Citrix Workspace 1904 For Windows 10
  3. Citrix Workspace 1904
  4. Citrix Workspace 1904 For Windows Download
Citrix
downloadWhy can't I download this file?Citrix Workspace 1904 For Windows
  • Citrix Workspace App

Information

Objective

This update is applicable to Citrix Workspace app 1904 and above
Citrix Workspace app installer starts certain processes during the installation of the software. Citrix Workspace app 1904 for Windows onwards certain changes have been made to the process handling in the installer. Although there is no real impact to end users, certain cases of unattended installation may require modification. This article describes these changes to the Citrix Workspace app installer.

What changed in the Citrix Workspace app installer?

Citrix Workspace 1904

Citrix Workspace 1904 For Windows 10

In all versions of Citrix Workspace app 1903 and below, the MSIs which were a part of the installer would initiate various Workspace app processes. If for any reason, a particular process was unable to start correctly, the installer fails, and the machine may become unstable. To circumvent such instability, MSIs do not start processes. Instead, the metainstaller (commonly referred to as TrolleyExpress) initiates the processes now. This makes sure that the machine does not go into an unstable state.

Citrix Workspace 1904

What is the impact of this change?

There should be no impact to end users installing the software. However, if you are attempting unattended installation and waiting for the CitrixWorkspaceApp.exe to exit, you will require to change the logic. As an example, if you are using the following PowerShell command to install Citrix Workspace app, the command will not return even though the software has completed installation –
$t = Start-Process .CitrixWorkspaceApp.exe -ArgumentList ‘/silent’ -Wait -Passthru
Citrix Workspace 1904You will need to modify this command as shown below, which makes sure to wait on the exit code of the metainstallaer –
$t = Start-Process -FilePath .CitrixWorkspaceApp.exe -ArgumentList ‘/silent’ -PassThru -ErrorAction Stop
if($t -ne $null)
{
Wait-Process -InputObject $t
}

Citrix Workspace 1904 For Windows Download






Coments are closed