: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
10 years ago
This website uses cookies.
By continuing to use this site and/or clicking the "Accept" button you are providing consent
Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our
websites or when you do business with us. For more information about our
Privacy Policy and our data protection
efforts, please visit
GDPR-HQ
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 10 years ago