Update

Manual update

To manually update the Citrix Workspace app for Mac, download and install the latest version of the app from the Citrix Downloads page.

Automatic update

When a new version of the Citrix Workspace app releases, Citrix pushes the update on the system that has the Citrix Workspace app installed. You’re notified of the available update.

Note:

  • If you’ve configured an SSL intercepting outbound proxy, add an exception to the Workspace auto-update server https://downloadplugins.citrix.com/ to receive updates from Citrix.
  • Auto-update isn’t available for Citrix Workspace app versions earlier than 2301.1. For more information, see Knowledge Center article CTX491310.
  • Your system must have an internet connection to receive updates.
  • Workspace for web users can’t download the StoreFront policy automatically.
  • Citrix HDX RTME for macOS is included in Citrix Workspace Updates. You’re notified of the available HDX RTME update on the Citrix Workspace app.
  • Starting with Version 2111, Citrix Workspace updates log paths are modified. The Workspace updates logs are present at /Library/Logs/Citrix Workspace Updater. For information about collecting logs, see the Log collection section.

Installing Citrix Workspace app Beta program

You receive an update notification when the Citrix Workspace app is configured for automatic updates. To install the Beta build on your system, perform the following steps:

  1. Open Citrix Workspace app.
  2. Right-click on Citrix Workspace in the toolbar and click Preferences > Advanced.
  3. Select Beta from the drop-down list, when the Beta build is available.

    Beta channel update notification

To switch from a Beta build to a Release build, perform the following steps:

  1. Open Citrix Workspace app.
  2. Right-click on Citrix Workspace in the toolbar and click Preferences > Advanced.
  3. Select Release from the Select the update channel drop-down list.

    Switch to release

Note:

Beta builds are available for customers to test in their non-production or limited production environments, and to share feedback. Citrix does not accept support cases for beta builds but welcomes feedback for improving them. Citrix might or might not act on feedback based on its severity, criticality, and importance. It’s advised that you do not deploy Beta builds in production environments.

Auto-update version control

Administrators can now manage the auto-updated version of Citrix Workspace app for the devices in the organization. Administrators can control the version by setting the range for maximumAllowedVersion and minimumAllowedVersion properties in the Global App Configuration service.

Example JSON file in Global App Configuration service:


{
  "serviceURL": {
    "url": "https://serviceURL:443"
  },
  "settings": {
    "name": "Version Control for Citrix Workspace",
    "description": "Provides admin ability to Version Control for Citrix Workspace",
    "useForAppConfig": true,
    "appSettings": {
      "macos": [
        {
          "category": "AutoUpdate",
          "userOverride": false,
          "assignedTo": [
            "AllUsersNoAuthentication"
          ],
          "settings": [
            {
              "name": "Auto update plugins settings",
              "value": [
                {
                  "pluginName": "Citrix Workspace",
                  "pluginId": "D99C3E77-FBF5-4B97-8EDA-4E381A1E0826",
                  "pluginSettings": {
                    "deploymentMode": "Update",
                    "upgradeToLatest": false,
                    "minimumAllowedVersion": "23.07.0.63",
                    "maximumAllowedVersion": "23.07.0.63",
                    "delayGroup": "Medium",
                    "detectRule": ""
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  }
}

<!--NeedCopy-->

When the range is set, Citrix Workspace app on the user’s device is automatically updated to the highest available version that falls between the mentioned range.

If you want to auto-update Citrix Workspace app to a specific version, enter the same version in the maximumAllowedVersion and minimumAllowedVersion properties in the Global App Configuration service.

Note:

  • To enable auto-update version control, set the upgradeToLatest setting to false in the Global App Configuration service. If the upgradeToLatest setting is true, maximumAllowedVersion and minimumAllowedVersion is ignored.
  • Do not modify the pluginId. The pluginID is mapped to Citrix Workspace app.
  • If the administrator hasn’t configured the version in the Global App Configuration service, Citrix Workspace app is updated to the latest available version by default.
  • You can only use the version ranges that are set to update Citrix Workspace app. However, a downgrade isn’t supported.
  • This feature is supported from release 2307 onwards.

Improved auto-update experience

The auto-update feature automatically updates the Citrix Workspace app to the latest version without the need for any user intervention.

Citrix Workspace app periodically checks and downloads the latest available version of the app. Citrix Workspace app determines the best time to install based on user activity not to cause any disruptions.

Advanced configuration for automatic updates (Citrix Workspace Updates)

You can configure Citrix Workspace updates using the following methods:

  • Graphical user interface (GUI)
  • Global App Configuration service (GACS)
  • Mobile Device Management (MDM)
  • StoreFront

Configure Citrix Workspace automatic updates using the graphical user interface

Individual users can override the Citrix Workspace updates setting using the Advanced preferences dialog box, which is a per-user configuration and the settings apply only to the current user. To configure the update using the GUI, perform the following steps:

  1. Select the Citrix Workspace app helper icon on your Mac.
  2. From the drop-down list, select Preferences > Advanced > Updates.
  3. Select the build for which you want to install the automatic updates. It can be either the Apple Silicon or Intel build (only applicable for users on Mac with Apple silicon (M1 Series).

Automatic Updates

Configure Citrix Workspace automatic updates using StoreFront

  1. Use a text editor to open the web.config file, which is typically in the C:\inetpub\wwwroot\Citrix\Roaming directory.

  2. Locate the user account element in the file (Store is the account name of your deployment).

    For example: <account id=... name="Store">

    Before the </account> tag, navigate to the properties of that user account:

    <properties>
           <clear/>
     </properties>
     <!--NeedCopy-->
    
  3. Add the auto-update tag after the <clear /> tag.

    <account>
    
        <clear />
    
        <account id="d1197d2c-ac82-4f13-9346-2ee14d4b0202" name="F84Store"
    
          description="" published="true" updaterType="Citrix" remoteAccessType="None">
    
          <annotatedServices>
    
            <clear />
    
            <annotatedServiceRecord serviceRef="1__Citrix_F84Store">
    
              <metadata>
    
                <plugins>
    
                  <clear />
    
                </plugins>
    
                <trustSettings>
    
                  <clear />
    
                </trustSettings>
    
                <properties>
    
                  <property name="Auto-Update-Check" value="Disabled" />
    
                  <property name="Auto-Update-DeferUpdate-Count" value="1" />
    
                  <property name="Auto-Update-Rollout-Priority" value="fast" />
    
                  <property name="Auto-Update-Architecture" value="Universal" or "Intel" />
    
                        </properties>
    
              </metadata>
    
            </annotatedServiceRecord>
    
          </annotatedServices>
    
          <metadata>
    
            <plugins>
    
              <clear />
    
            </plugins>
    
            <trustSettings>
    
              <clear />
    
            </trustSettings>
    
            <properties>
    
              <clear />
    
            </properties>
    
          </metadata>
    
        </account>
    
    <!--NeedCopy-->
    

The meaning of the properties and their possible values are detailed as follows:

  • Auto-Update-Check: Indicates that Citrix Workspace app detects an update automatically when available.

    • Auto (default) – Checks and performs updates automatically
    • Manual – updates are only fetched when the user makes a check request from the Citrix Workspace app system tray menu,
    • Disabled – Updates checks aren’t performed.
  • Auto-Update-Rollout-Priority: Indicates the delivery period in which you can receive the update.

    • Fast – updates are rolled-out to the users towards the beginning of the delivery period.
    • Medium – updates are rolled-out towards the middle of the delivery period.
    • Slow– updates are rolled-out towards the end of the delivery period.
  • Auto-Update-DeferUpdate-Count: Indicates the number of counts that you can defer the notifications for the updates.

    Note:

    This configuration is applicable only for interactive updates and not when the silent auto-update feature is enabled, as the user doesn’t get any option to defer the updates.

    • -1: The user can defer the auto-update any number of times.
    • 0: The user can’t view the remind me later option.
    • number: The user can view remind later options with the given count.

Configure Citrix Workspace automatic updates using the GACS

Administrators can use GACS to configure the automatic updates to either Apple Silicon or Intel builds by using the following settings:

“name”:“autoUpdateArchitecture”

“value”:“Universal” or “Intel”

Configure Citrix Workspace automatic updates using the MDM

Administrators can use MDM to configure the automatic updates to either Apple Silicon or Intel builds by using the following settings:

<key>AutoUpdateArchitecture</key>

<string>Universal</string> or <string>Intel</string>

<key>AutoUpdateState</key>

<string>Auto</string> or <string>Manual</string> or <string>Disabled</string>

For more information on how to use MDM, see Mobile Device Management.

Log collection

Log collection simplifies the process of collecting logs for Citrix Workspace app. The logs help Citrix to troubleshoot, and, in cases of complicated issues, provide support.

You can collect logs using the GUI.

Collecting logs:

  1. Open Citrix Workspace app.
  2. Right-click on Citrix Workspace in the toolbar and click Preferences > Advanced.
  3. Select Logging.

    log collection

  4. Select one of the following session log levels:
    • Disabled (Default): Minimum logs are collected for basic troubleshooting.
    • Connection Diagnostics: Identifies errors while connecting. All logging is enabled up until the point when the session is deemed successful.
    • Full: Captures everything including the connection diagnostics. Once enabled, the Citrix Workspace app will store up to 10 session logs after which they’re deleted starting with the oldest to maintain 10 logs.

    Note:

    Selecting the Full logging option can impact performance and must be used only while troubleshooting an issue because of the amount of data. Do not enable full logging during normal use. Enabling this level of logging triggers a warning dialog that must be acknowledged for you to continue.

  5. Select one of the following store log levels:
    • Disabled (Default): Minimum logs are collected for basic troubleshooting.
    • Normal: Only store communication logs are collected.
    • Verbose: Detailed authentication and store communication logs are collected.
  6. Click Email Log Files to collect and share logs as a .zip file.

Enhanced Universal Architecture builds for virtual apps and desktops session

From the 2311 version, the Universal Architecture build can now automatically choose to run the virtual sessions in the native Apple Silicon mode or Intel mode. It uses the Rosetta emulation to launch the virtual session in Intel mode. The virtual session launches in the native Apple Silicon mode, if the virtual channel SDK is built based on the native Apple Silicon architecture or there’s no virtual channel SDK. However, the virtual session launches in the Intel mode using the Rosetta emulation, if the virtual channel SDK is built based on the x86_64 Intel-based architecture.

This enhancement to the Universal Architecture build improves the launch experience on Macs with the Apple Silicon chipset. For users on Macs with the Intel-based chipset, there is no change, and the Universal Architecture build continues to run the virtual sessions natively.

Update