|

Check to see if Cool Info is installed, and if not, then install it silently
|
Q How do I check to see if Cool Info is installed through a script and if not install it?
A An easy way to automate the installation to the client is to add the install to all users’ login scripts. First check for the existence of Cool Info and if it was not found install it in silent mode using the /S installation switch.
The following is an example:
@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
( See Using Cool Info
FX on a
Network)
|
|