From what I’ve seen, once the Client is installed in “loud” mode (i.e. user interaction required), a file named silent.bat
is created based on the settings you made in “loud” mode. That file is located on the App server. In my case it is:
\\<appserver>\c$\Epicor\ERP10\ERP10.2.300.0\Updates\ERP10.2.300.23\ClientDeployment\ClientInstaller\silent.bat
Here’s the contents of the BAT file that my last install created:
@echo off
Title Installing usdcaaps00371 Client on %Computername%
E10Client.exe /s SILENT="YES" DESKTOPICO="TRUE" SILENTINSTALLS="AutoLIVE_CONVERTED on usdcaaps00371!NEWLINE!LIVE_CONVERTED on usdcaaps00371!NEWLINE!" TARGETDIR=c:\Epicor\ERP10.2Client_LIVE_CONV SERVERLOC="\\usdcaaps00371\c$\Epicor\ERP10\ERP10.2.300.0\ClientDeployment"
Everything after the E10Client.exe ...
is on the same line as E10Clinet.exe
And the file actually has !NEWLINE!
in it (never saw that before - must be the way BAT files represent a CRLF)