Citrix ica web client
From WPKG | Open Source Software Deployment and Distribution
The Citrix Web plugin (v11), is extremely annoying to install! Due to some idiotic reason, they made a msi that will only install as an administrator interactively...
To install you first need to ensure Microsoft Visiual C++ 2005 is installed - I extracted the msi & cab from Microsoft.
Second download a transforms file from Citrix.
Then you need to run the regserver command.
Be warned it will reboot!
<packages> <package id="ica32web" name="Citrix Web Client" revision="11.2.03" reboot="false" priority="0"> <check type="uninstall" condition="exists" path="Citrix online plug-in (Web)" /> <!--Installs Visual C++ 2005 --> <install cmd='msiexec /i "%SOFTWARE%\citrix\vcredist.msi" /qn'> <exit code="any"/> </install> <!-- Installs & applies transform from http://support.citrix.com/article/CTX123761 --> <install cmd='msiexec /i "%SOFTWARE%\citrix\Ica32Web.msi" TRANSFORMS=%SOFTWARE%\citrix\transform_notstrict.mst /qb-' /> <install cmd='%COMSPEC% /c "%ProgramFiles%\Citrix\ICA Client\wfcrun32.exe" /regserver' /> <remove cmd='MsiExec.exe /X {0BCA9EFD-F2D6-4638-B053-8693BA0404BE} /qn' /> </package>
</packages>