hello guys,
i created this batch file to push a software to users pc. how can make this batch file work in KACE
:**********************************************************************************
: The command below will install EIM
:
: EIM_INPUT_SERVERNAMEORIP the server name or IP of the EIM server
: EIM_INPUT_STANDARDPORT the non-trusted port number for the client to use
: EIM_INPUT_TRUSTEDPORT the trusted port number for the client to use
: EIM_INPUT_USETRUSTEDPORT either true or false
: INSTALLDIR is the directory where EIM will be installed
: ALLUSERS set this to an empty string ("") if users do not have administrator
: rights to their computer. This will install start menu items and desktop
: shortcuts for the logged in user only, not the other users on this
: machine. To use the default behavior, and install for all users, simply
: remove the ALLUSERS="" section.
: NOTE: to run this installer "quietly" (aka without showing the normal
: install dialogs) include the /qn option at the end
msiexec /i "\\myserver\mysharfolder\pweimclient_v4000.msi" EIM_INPUT_SERVERNAMEORIP="192.168.5.8" EIM_INPUT_STANDARDPORT=7777 EIM_INPUT_TRUSTEDPORT=7778 EIM_INPUT_USETRUSTEDPORT=true INSTALLDIR="%PROGRAMFILES%\Passageways\Enterprise Instant Messenger" /qn
:**********************************************************************************
thanks
alex








Please log in to comment