Perform a silent install (FrameMaker 9 on Windows)
Add your rating:
[Adobe FrameMaker 9]
http://kb2.adobe.com/cps/406/kb406898.html
http://kb2.adobe.com/cps/406/kb406898.html
cls
color
:Installation
call :progress 0
echo Adobe FrameMaker 9 installation is in progress, please do not close this window
start "" /wait "%SourceDir%Adobe FrameMaker 9\setup.exe" /SerialNumber="xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" /AdminInstall="false" /Interface_Lang="DE" /Air="true" /Silent="true" /Language="de_de" /Retain_Preferences="false"
call :progress 80
:Install PDF-Creation Add-On -> Deutsch
start "" /wait msiexec.exe /i "%SourceDir%adobe framemaker 9\Adobe PDF Creation Add-On 9\de_de\Distillr.msi" ISX_SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx /qn
call :progress 100
EXIT
:progress
SETLOCAL ENABLEDELAYEDEXPANSION
SET ProgressPercent=%1
SET /A NumBars=%ProgressPercent%/2
SET /A NumSpaces=50-%NumBars%
SET Meter=
FOR /L %%A IN (%NumBars%,-1,1) DO SET Meter=!Meter!I
FOR /L %%A IN (%NumSpaces%,-1,1) DO SET Meter=!Meter!
TITLE Adobe FrameMaker 9 Install: [%Meter%] %ProgressPercent%%%
ENDLOCAL
The above batch file is for installing Adobe FrameMaker 9 and the PDF Creation Add-On 9, with a progress bar shown while the installation is not yet complete. - ikeen 11 years ago