Installing Citrix/terminal services
Who is this article for?
Administrators who want to learn to install for Citrix/terminal services.
No elevated permissions are required.
This article explains how to install and configure the desktop software in a Citrix or terminal services environment.
1. Default behavior
By default, when installed in a Citrix or terminal services environment, the software will load for all users connected to the server.
2. Restricting access to specific users
You can configure the software to load only for a subset of users by naming specific users for inclusion or exclusion.
When a user starts the application, the UserAvailabilityList.xml file will be detected and evaluated to determine access.
Important: Only individual user credentials can be used. Active Directory groups are not supported.
3. Create the user availability list
- Create an XML file named
UserAvailabilityList.xml - Save the file to the program installation directory on the server (typically
C:\Program Files\OnePlace Solutions) - Copy and paste the appropriate XML content and modify the list of users to include or exclude
You can edit the userList within the XML file to specify which programs the add-in should appear in or be hidden from.
Valid application values
- Outlook
- Word
- Excel
- Explorer
- RightClickSendTo
- AdobeReader
- AdobeAcrobat
- LiveClient
<configuration> <userList listType="inclusion">
<user name="scinaptic\tech11" />
</userList>
<userList listType="exclusion" application="LiveClient">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="RightClickSaveTo">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="Explorer">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="Outlook">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="Excel">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="PowerPoint">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="Word">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="AdobeReader">
<user name="scinaptic\tech11" /> </userList>
<userList listType="exclusion" application="AdobeAcrobat">
<user name="scinaptic\tech11" /> </userList>
</configuration>