Remotely installing Cool Info XP on a Network

Cool Info XP can be installed on each system on a network without it being done manually. This is not only timesaving but the script can also be used to export the data as well. (See AlsoSee Exporting to a common Database File

To install Cool Info XP silently, use the following script:


@ECHO OFF
rem The following checks to see if Cool Info needs to be installed
rem Change the last path to match where you have the Cool Info installation located
If not exist c:\progra~1\Creation\CoolInfo\CoolInfo.exe
\\myserver\myshare\install_location\setup.exe /S


If you wish to install Cool Info XP in compatibility mode from a batch file, add the following to the batch file to set the environment variable COOL_INFO_COMPAT_MODE to the letter B
 
set COOL_INFO_COMPAT_MODE=B

To install Cool Info XP silently and in Compatibility Mode, use the following script:

@ECHO OFF
set COOL_INFO_COMPAT_MODE=B
rem The following checks to see if Cool Info needs to be installed
rem Change the last path to match where you have the Cool Info installation located
If not exist c:\progra~1\Creation\CoolInfo\CoolInfo.exe
\\myserver\myshare\install_location\setup.exe /S