Last modified 5 years ago Last modified on 02/01/10 23:38:51
ou also need the firstclass.iss file that you have to create.
firstclass.bat
:: OPTIONAL: Install First Class Client
:: Download from <http://www.firstclass.com/ClientDownloads/IntlClients>.
:: Firstclass 8.0 8.1 8.2
:: URL|DAN|http://www3.firstclass.com/ClientDownloads/IntlClients/dk/FC80DKDownloadFiles/FC8047DK.exe|packages/firstclass/fc-8047-dan.exe
:: URL|DEU|http://www3.firstclass.com/ClientDownloads/IntlClients/de/FC80DEDownloadFiles/FC8047DE.exe|packages/firstclass/fc-8047-dan.exe
:: URL|ENU|http://www3.firstclass.com/ClientDownloads/FC82ClientDownloadFiles/FC8200US.exe|packages/firstclass/fc-8200-enu.exe
:: URL|ENG|http://www3.firstclass.com/ClientDownloads/IntlClients/uk/FC81UKDownloadFiles/FC8101UK.exe|packages/firstclass/fc-8101-eng.exe
:: URL|ESN|http://www3.firstclass.com/ClientDownloads/IntlClients/es/FC80ESDownloadFiles/FC8047ES.exe|packages/firstclass/fc-8047-esn.exe
:: URL|FIN|http://www3.firstclass.com/ClientDownloads/IntlClients/fi/FC80FIDownloadFiles/FC8047FI.exe|packages/firstclass/fc-8047-fin.exe
:: URL|FRA|http://www3.firstclass.com/ClientDownloads/IntlClients/fr/FC80FRDownloadFiles/FC8047FR.exe|packages/firstclass/fc-8047-fra.exe
:: URL|ITA|http://www3.firstclass.com/ClientDownloads/IntlClients/it/FC80ITDownload%20Files/FC8047IT.exe|packages/firstclass/fc-8047-ita.exe
:: URL|NLD|http://www3.firstclass.com/ClientDownloads/IntlClients/nl/FC80NLDownloadFiles/FC8047NL.exe|packages/firstclass/fc-8047-dan.exe
:: URL|NOR|http://www3.firstclass.com/ClientDownloads/IntlClients/no/FC80NODownloadFiles/FC8047NO.exe|packages/firstclass/fc-8047-nor.exe
:: URL|PTB|http://www3.firstclass.com/ClientDownloads/IntlClients/ptbr/FC80PTBRDownloadFiles/FC8047PTBR.exe|packages/firstclass/fc-8047-ptb.exe
:: URL|SVE|http://www3.firstclass.com/ClientDownloads/IntlClients/se/FC80SEDownloadFiles/FC8101SE.exe|packages/firstclass/fc-8101-sve.exe
@Echo off
:: detect current level for your language
if exist "%Z%\packages\firstclass\fc-8200-%WINLANG%.exe" goto v8200
if exist "%Z%\packages\firstclass\fc-8101-%WINLANG%.exe" goto v8101
:: v8047
todo.pl "%Z%\packages\firstclass\fc-8047-%WINLANG%.exe /s /sms /f1%Z%\scripts\firstclass.iss /f2%SystemDrive%\netinst\logs\firstclass.txt"
goto end_of_script
:v8101
todo.pl "%Z%\packages\firstclass\fc-8101-%WINLANG%.exe /s /sms /f1%Z%\scripts\firstclass.iss /f2%SystemDrive%\netinst\logs\firstclass.txt"
goto end_of_script
:v8200
todo.pl "%Z%\packages\firstclass\fc-8200-%WINLANG%.exe /s /sms /f1%Z%\scripts\firstclass.iss /f2%SystemDrive%\netinst\logs\firstclass.txt"
goto end_of_script
:end_of_script