Difference between revisions of "Citrix receiver"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Citrix Receiver)
(Update version, fix typo in package id, add parameters to prevent the add account prompt popping up)
 
Line 4: Line 4:
  
 
Download from  [http://receiver.citrix.com/] - following the instructions at [http://support.citrix.com/proddocs/topic/receiver-windows-34/receiver-windows-cfg-command-line.html] you can add extra parameters to your install if needed.
 
Download from  [http://receiver.citrix.com/] - following the instructions at [http://support.citrix.com/proddocs/topic/receiver-windows-34/receiver-windows-cfg-command-line.html] you can add extra parameters to your install if needed.
 +
 +
The installer will pop up a prompt to add an account even with the silent switch. For some reason specifically listing the components to install as shown below will prevent that.
  
 
<source lang="xml">
 
<source lang="xml">
Line 10: Line 12:
 
   
 
   
 
     <package
 
     <package
             id="citirx"
+
             id="citrix"
 
             name="Citrix Receiver"
 
             name="Citrix Receiver"
 
             revision="%PKG_VERSION%"
 
             revision="%PKG_VERSION%"
             reboot="false"
+
             reboot="false">
            priority="10">
+
 
   
 
   
         <variable name="PKG_VERSION"    value="14.0.1.4" />
+
         <variable name="PKG_VERSION"    value="14.1.0.0" />
 
   
 
   
 
         <check type="uninstall" condition="versionequalto" path="Citrix Receiver" value="%PKG_VERSION%" />
 
         <check type="uninstall" condition="versionequalto" path="Citrix Receiver" value="%PKG_VERSION%" />
 
   
 
   
         <install cmd='"%SOFTWARE%\citrix\CitrixReceiverWeb.exe" /silent' />
+
         <install cmd='"%SOFTWARE%\citrix\CitrixReceiverWeb.exe" ADDLOCAL=ReceiverInside,ICA_Client,USB,DesktopViewer,Flash,Vd3d /silent' />
  
 
         <upgrade include="install" />
 
         <upgrade include="install" />

Latest revision as of 22:25, 20 February 2014

Citrix Receiver

Really easy and simple install - finally an "Enterprise" company gets it!

Download from [1] - following the instructions at [2] you can add extra parameters to your install if needed.

The installer will pop up a prompt to add an account even with the silent switch. For some reason specifically listing the components to install as shown below will prevent that.

<?xml version="1.0" encoding="UTF-8"?>
<packages>
 
    <package
            id="citrix"
            name="Citrix Receiver"
            revision="%PKG_VERSION%"
            reboot="false">
 
        <variable name="PKG_VERSION"     value="14.1.0.0" />
 
        <check type="uninstall" condition="versionequalto" path="Citrix Receiver" value="%PKG_VERSION%" />
 
        <install cmd='"%SOFTWARE%\citrix\CitrixReceiverWeb.exe" ADDLOCAL=ReceiverInside,ICA_Client,USB,DesktopViewer,Flash,Vd3d /silent' />

        <upgrade include="install" />

        <remove cmd='"%SOFTWARE%\citrix\CitrixReceiverWeb.exe" /uninstall' />

    </package>
</packages>