Terminal Server and Communicare
The Communicare client can be installed on a Terminal Server.
Install the client in the usual way from the Communicare Server Install share (i.e. \\\\CCAREXYZ\\Install).
Upgrading the Communicare Client on a Terminal Server
Because of the way Terminal Servers are used to serve applications to multiple users concurrently, there are some peculiarities with how applications must be installed and upgraded. The server must be put into "Install Mode" before installing a program, and then must be returned to "Execute Mode" afterwards.
This also applies to installing and upgrading Communicare. Most importantly, the upgrade MUST BE PERFORMED MANUALLY - say NO to any invitation to upgrade to the new version and cancel the Communicare log-on.
Instead, use Windows Explorer to browse to the install share - \\\\CCAREXYZ\\Install\\CCare (where CCAREXYZ is the name or IP address of the Communicare Server) and run the file setup.exe, accepting all the defaults. Windows Server should recognize the file name as an installer and will automatically put the system into Install Mode while it is running. It will also change it back afterwards.
Alternatively, you can install using
and browse to the location. This is guaranteed to put the server into Install Mode.Automatically Upgrade using Batch Script
The following script can be used to automatically install Communicare on a Terminal Server. Copy and paste this into a text file, and save as AutoUpgradeCommunicare.cmd on the server desktop. Make sure CCAREXYZ is replaced with the name or IP address of the Communicare Server before running the script.
@echo off
echo.
echo ##########################################################################
echo # #
echo # IMPORTANT: Check that no-one has an active session on the system. #
echo # Use task manager to send them a message and log them off. #
echo # #
echo ##########################################################################
echo.
taskmgr
:: Stop any new connections to the server.
change logon /disable
:: Put server into install mode.
change user /install
echo Installing Communicare...
:: Install the latest version of Communicare from the server.
"\\CCAREXYZ\Install\CCare\Setup.exe" /silent
:: Put server back into normal execute mode.
change user /execute
:: Allow connections again.
change logon /enable
echo.
echo Done!
pause
Configuration Notes
Communicare can use between 32MB to 256MB RAM. It also requires at least 512KB in Session Heap RAM. Old terminal servers like 2000 and 2003 might allocate only 512KB of Heap RAM per Window Station. We recommend 1MB per Window Station in Session Heap. This can be modified using the Windows registry.
... SharedSection=1024,3072,512 ...
... SharedSection=1024,3072,1024 ...