This commit is contained in:
Mario Fetka 2013-06-20 17:13:59 +02:00
parent 73f0d156c7
commit fd4665c6a0
21 changed files with 281 additions and 100 deletions

1
22020134.exe.sha1sum Normal file
View File

@ -0,0 +1 @@
e9c5580ac5d5c135abb18402a6f3217a975e6514 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/22020134.exe

View File

@ -0,0 +1 @@
0cbbecc4fee7c28a2d3f1b838682da362b9ae3de /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/Ac705PrP_ddnsfsip.exe

View File

@ -1 +0,0 @@
4f1ff389ea71f21d624083d65bbe5a74e4760079 /home/mario/.opsi-dist-cache/adobe.acrobat-7-7.0/X86/AcTR7EFG.exe

View File

@ -0,0 +1 @@
da7560da1678bfc32be31919bae84a005e8f52d4 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcroProUpd710_all_cum.exe

View File

@ -0,0 +1 @@
03c48bbfb74e5990e9c5fdeb065b96a0d19a53af /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcroUpd711_all_incr.msp

View File

@ -0,0 +1 @@
517a9cdd5ca4c507a261b020de328de0114cd982 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcrobatUpd707_all_incr.exe

View File

@ -0,0 +1 @@
0b8320e1f52f9e92950b5231b2d87d0718a4c0c0 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcrobatUpd708_all_incr.exe

View File

@ -0,0 +1 @@
b45942c5678a6ebf8c14f49d388977feee96e9da /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1.4/X86/AcrobatUpd709_all_incr.exe

View File

@ -0,0 +1 @@
12d2807cf15616f190186f1717b1e9f651165802 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcrobatUpd712_all_incr.msp

View File

@ -0,0 +1 @@
1a6109e12daf67e80c94abbeff939aab5fdca014 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcrobatUpd713_all_incr.msp

View File

@ -0,0 +1 @@
bce62cb4bbac4705662d9aeb0b63cb46e0db8351 /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1/X86/AcrobatUpd714_all_incr.msp

View File

@ -1,13 +1,26 @@
; Copyright (c) uib gmbh (www.uib.de)
; This sourcecode is owned by uib gmbh
; and published under the Terms of the General Public License.
; credits: http://www.opsi.org/credits/
; credits: http://www.opsi.org/en/credits/
Set $MsiId$ = '{AC76BA86-1033-F400-BA7E-100000000002}'
Set $IniFile$ = $InstallDir$ + "\opsi-" + $ProductId$ + ".ini"
Message "Uninstalling " + $ProductId$ + " ..."
if FileExists($IniFile$)
Set $OLD_VERSION$ = GetValueFromInifile($IniFile$,"COMMON","VERSION","")
Set $OLD_CREATOR_TAG$ = GetValueFromInifile($IniFile$,"COMMON","CREATOR_TAG","")
Set $OLD_RELEASE$ = GetValueFromInifile($IniFile$,"COMMON","RELEASE","")
endif
Message "Uninstalling " + $ProductId$ + " " + $OLD_VERSION$ + "-" + $OLD_CREATOR_TAG$ + $OLD_RELEASE$ + " ..."
if FileExists($IniFile$)
Set $MsiIdOld$ = GetValueFromInifile($IniFile$,"X86","MsiId","{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}")
if not (GetRegistryStringValue32("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" + $MsiIdOld$ + "] DisplayName") = "")
comment "Old MSI id " + $MsiIdOld$ + " found in registry, starting msiexec to uninstall old version"
Winbatch_uninstall_msi_old
sub_check_exitcode
endif
endif
if not (GetRegistryStringValue32("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" + $MsiId$ + "] DisplayName") = "")
comment "MSI id " + $MsiId$ + " found in registry, starting msiexec to uninstall"
Winbatch_uninstall_msi
@ -23,13 +36,16 @@ Registry_uninstall /32Bit
comment "Delete program shortcuts"
LinkFolder_uninstall
[Winbatch_uninstall_msi_old]
msiexec /x $MsiIdOld$ /qb! REBOOT=ReallySuppress
[Winbatch_uninstall_msi]
msiexec /x $MsiId$ /qb! REBOOT=ReallySuppress
[Files_uninstall]
; Example for recursively deleting the installation directory (don't forget the trailing backslash):
; Example for recursively deleting the installation directory:
;
; delete -sf "$InstallDir$\"
del -sf "$InstallDir$\"
[Registry_uninstall]
; Example of deleting a registry key:

24
CLIENT_DATA/login.ins Normal file
View File

@ -0,0 +1,24 @@
; Copyright (c) uib gmbh (www.uib.de)
; This sourcecode is owned by uib gmbh
; and published under the Terms of the General Public License.
; credits: http://www.opsi.org/en/credits/
[Actions]
Message "Profile Patch for VLC ...."
comment "Did we run this script before ? - and set version stamp in profile"
if getValue("installationstate", getProductMap) = "installed"
comment "Product is installed"
if not (scriptWasExecutedBefore)
comment "loginscript was not run yet "
Files_profile_copy
Registry_currentuser_set
endif
endif
[Files_profile_copy]
copy "%Scriptpath%\profiles\*.*" "%CurrentAppdataDir%\ACME"
[Registry_currentuser_set]
openkey [HKCU\Software\ACME]
set "show_greeting_window" = "no"

View File

@ -0,0 +1,6 @@
[X86]
MsiId={XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
[COMMON]
PN=name
VERSION=version

View File

@ -1,12 +1,14 @@
; Copyright (c) uib gmbh (www.uib.de)
; This sourcecode is owned by uib
; and published under the Terms of the General Public License.
; credits: http://www.opsi.org/credits/
; credits: http://www.opsi.org/en/credits/
[Actions]
requiredWinstVersion >= "4.10.8.6"
requiredWinstVersion >= "4.11.2.6"
DefVar $MsiId$
DefVar $MsiIdOld$
DefVar $IniFile$
DefVar $IniCfgFile$
DefVar $LogDir$
DefVar $ProductId$
DefVar $MinimumSpace$
@ -15,6 +17,9 @@ DefVar $ExitCode$
DefVar $LicenseRequired$
DefVar $LicenseKey$
DefVar $LicensePool$
DefVar $OLD_VERSION$
DefVar $OLD_CREATOR_TAG$
DefVar $OLD_RELEASE$
Set $LogDir$ = "%SystemDrive%\tmp"
@ -34,49 +39,75 @@ Set $LogDir$ = "%SystemDrive%\tmp"
;$ProductId$ should be the name of the product in opsi
; therefore please: only lower letters, no umlauts,
; no white space use '-' as a seperator
Set $ProductId$ = "adobe.acrobat7"
Set $MinimumSpace$ = "185 MB"
Set $MinimumSpace$ = "400 MB"
; the path were we find the product after the installation
Set $InstallDir$ = "%ProgramFiles32Dir%\Adobe\Acrobat 7.0"
Set $LicenseRequired$ = "true"
Set $LicensePool$ = "p_" + $ProductId$
; ----------------------------------------------------------------
Set $IniCfgFile$ = "%ScriptPath%\opsi-" + $ProductId$ + ".ini"
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
isFatalError
isFatalError "No Space"
; Stop process and set installation status to failed
else
comment "Show product picture"
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $NAME$
if FileExists("%ScriptPath%\delsub32.ins")
comment "Start uninstall sub section"
Sub "%ScriptPath%\delsub32.ins"
endif
Message "Installing " + $ProductId$ + " ..."
Message "Installing " + $ProductId$ + " "+ $VERSION$ + "-" + $CREATOR_TAG$ + $RELEASE$ + " ..."
if $LicenseRequired$ = "true"
comment "Licensing required, reserve license and get license key"
Sub_get_licensekey
endif
comment "Extract Office"
Winbatch_extract
Sub_check_exitcode
comment "Start setup program"
ChangeDirectory "%SCRIPTPATH%"
Winbatch_install
Sub_check_exitcode
;comment "Extract Office Updates"
;Winbatch_update
;Sub_check_exitcode
comment "Start setup program"
Winbatch_install
Sub_check_exitcode
comment "Remove Install Files"
Winbatch_remove
Sub_check_exitcode
comment "Update to 7.0.5"
Winbatch_705_update
Sub_check_exitcode
comment "Update to 7.0.7"
Winbatch_707_update
Sub_check_exitcode
comment "Update to 7.0.8"
Winbatch_708_update
Sub_check_exitcode
comment "Update to 7.0.9"
Winbatch_709_update
Sub_check_exitcode
comment "Update to 7.1.0"
Winbatch_710_update
Sub_check_exitcode
comment "Update to 7.1.1"
Winbatch_711_update
Sub_check_exitcode
comment "Update to 7.1.2"
Winbatch_712_update
Sub_check_exitcode
comment "Update to 7.1.3"
Winbatch_713_update
Sub_check_exitcode
comment "Update to 7.1.4"
Winbatch_714_update
Sub_check_exitcode
comment "Copy files"
Files_install /32Bit
@ -87,35 +118,42 @@ else
comment "Create shortcuts"
LinkFolder_install
comment "Test for installation success"
; Test if software marked as installed in registry
; if (GetRegistryStringValue32("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}] DisplayName") = "")
; logError "Fatal: After Installation 32 bit [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}] not found"
; isFatalError
; else
; comment "Successful Installation"
; endif
comment "Reboot"
ExitWindows /Reboot
endif
[Winbatch_extract]
$InstallExe$ -nos_ne -nos_o"$LogDir$\AdobeAcrobat7
;[Winbatch_update]
;$InstallSp3Exe$ /quiet /extract:$LogDir$\msoffice2007\Updates
[Winbatch_install]
msiexec /i "%ScriptPath%\files\Adobe Acrobat 7.0 Standard\AcroStan.msi" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress USERNAME="%HostID%" COMPANYNAME="%HostID%" ISX_SERIALNUMBER="$LicenseKey$" INSTALLDIR="$InstallDir$"
msiexec /i "$InstallMsi$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 REBOOT=ReallySuppress EULA_ACCEPT=YES ISX_SERIALNUMBER=$Licensekey$ USERNAME="%PCName%" COMPANYNAME="%IPName%" INSTALLDIR="$InstallDir$"
[Winbatch_remove]
delete -sf "$LogDir$\AdobeAcrobat7\"
[Winbatch_705_update]
msiexec /p "$Install705Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_707_update]
msiexec /p "$Install707Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_708_update]
msiexec /p "$Install708Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_709_update]
msiexec /p "$Install709Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_710_update]
msiexec /p "$Install710Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_711_update]
msiexec /p "$Install711Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_712_update]
msiexec /p "$Install712Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_713_update]
msiexec /p "$Install713Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Winbatch_714_update]
msiexec /p "$Install714Msp$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 EULA_ACCEPT=YES REINSTALLMODE=omus REINSTALL=ALL REBOOT=ReallySuppress
[Files_install]
; copy the ini file to the InstallDir
copy "$IniCfgFile$" "$InstallDir$"
; Example of recursively copying some files into the installation directory:
;
; copy -s "%ScriptPath%\files\*.*" "$InstallDir$"

View File

@ -1,18 +1,23 @@
; Copyright (c) uib gmbh (www.uib.de)
; This sourcecode is owned by uib gmbh
; and published under the Terms of the General Public License.
; credits: http://www.opsi.org/credits/
; credits: http://www.opsi.org/en/credits/
[Actions]
requiredWinstVersion >= "4.10.8.6"
requiredWinstVersion >= "4.11.2.6"
DefVar $MsiId$
DefVar $MsiIdOld$
DefVar $IniFile$
DefVar $IniCfgFile$
DefVar $LogDir$
DefVar $ExitCode$
DefVar $ProductId$
DefVar $InstallDir$
DefVar $LicenseRequired$
DefVar $LicensePool$
DefVar $OLD_VERSION$
DefVar $OLD_CREATOR_TAG$
DefVar $OLD_RELEASE$
Set $LogDir$ = "%SystemDrive%\tmp"
@ -29,15 +34,15 @@ Set $LogDir$ = "%SystemDrive%\tmp"
; ----------------------------------------------------------------
; - Please edit the following values -
; ----------------------------------------------------------------
Set $ProductId$ = "adobe.acrobat7"
Set $InstallDir$ = "%ProgramFiles32Dir%\Adobe\Acrobat 7.0"
Set $LicenseRequired$ = "true"
Set $LicensePool$ = "p_" + $ProductId$
; ----------------------------------------------------------------
Set $IniCfgFile$ = "%ScriptPath%\opsi-" + $ProductId$ + ".ini"
comment "Show product picture"
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $NAME$
Message "Uninstalling " + $ProductId$ + " ..."
@ -52,23 +57,16 @@ if $LicenseRequired$ = "true"
endif
[Sub_free_license]
if opsiLicenseManagementEnabled
comment "License management is enabled and will be used"
comment "Trying to free license used for the product"
DefVar $result$
Set $result$ = FreeLicense($LicensePool$)
; If there is an assignment of a license pool to the product, it is possible to use
; Set $result$ = FreeLicense("", $ProductId$)
;
; If there is an assignment of a license pool to a windows software id, it is possible to use
; DefVar $WindowsSoftwareId$
; $WindowsSoftwareId$ = "..."
; set $result$ = FreeLicense("", "", $WindowsSoftwareId$)
else
LogError "Error: licensing required, but license management not enabled"
isFatalError
endif
comment "License management is enabled and will be used"
comment "Trying to free license used for the product"
DefVar $result$
Set $result$ = FreeLicense($LicensePool$)
; If there is an assignment of a license pool to the product, it is possible to use
; Set $result$ = FreeLicense("", $ProductId$)
;
; If there is an assignment of a license pool to a windows software id, it is possible to use
; DefVar $WindowsSoftwareId$
; $WindowsSoftwareId$ = "..."
; set $result$ = FreeLicense("", "", $WindowsSoftwareId$)

View File

@ -0,0 +1,2 @@
Don't add cahngelog entries here!
It get autogenerated by the opsi-builder.sh

View File

@ -1,17 +1,17 @@
[Package]
version: RELEASE
version: 2
depends:
incremental: False
[Product]
type: localboot
id: adobe.acrobat7
name: Adobe Acrobat 7
description: Unter Adobe Acrobat wird eine Gruppe von Programmen zusammengefasst, die zum Erstellen, Verwalten, Kommentieren und Verteilen von PDF-Dateien verwendet werden.
advice: ADVICE
version: VERSION
priority: PRIORITY
licenseRequired: False
id: opsi-template
name: opsi template product
description: A template for opsi products
advice:
version: 4.0.2
priority: 0
licenseRequired: True
productClasses:
setupScript: setup32.ins
uninstallScript: uninstall32.ins
@ -19,14 +19,12 @@ updateScript:
alwaysScript:
onceScript:
customScript:
userLoginScript:
userLoginScript:
[ProductDependency]
action: setup
requiredProduct: sereby.aio
requiredStatus: installed
requirementType: before
[ProductProperty]
type: unicode
name: install_architecture
multivalue: False
editable: False
description: which architecture (32/64 bit) has to be installed
values: ["32 only", "64 only", "both", "system specific"]
default: ["system specific"]

1
PDF-Icon.jpg.sha1sum Normal file
View File

@ -0,0 +1 @@
f1368d858b2ba39f72ce0c003ee76bcb53eb2f7c /home/mario/.opsi-dist-cache/adobe.acrobatpro7-7.1//PDF-Icon.jpg

View File

@ -1 +0,0 @@
54dec610f9fc4de5d7b3aea4b374a03806a78637 /home/mario/.opsi-dist-cache/adobe.acrobat-7-7.0//adobe_pdf_logo.jpg

View File

@ -2,25 +2,115 @@
# Setup product information
############################
VENDOR="adobe.com"
PN="adobe.acrobat7"
VERSION="7.0"
PN="adobe.acrobatpro7"
NAME="Adobe Acrobat Pro 7"
DESCRIPTION="Programmen zum zsammengefasst, Erstellen, Verwalten, Kommentieren und Verteilen von PDF-Dateien."
VERSION="7.1.4"
RELEASE="3"
PRIORITY="0"
ADVICE=""
# TYPE - defines, if the install files are public or restricted.
# Valid value: restricted | public
TYPE="public"
TYPE="restricted"
DL_FILE[0]="adobe_pdf_logo.jpg"
DL_SOURCE[0]="http://techielobang.com/blog/wp-content/uploads/2010/10/adobe_pdf_logo.jpg"
DL_FILE[0]="PDF-Icon.jpg"
DL_SOURCE[0]="http://www.womensgolf.org/wscga/images/PDF-Icon.jpg"
DL_FILE[1]="AcTR7EFG.exe"
DL_SOURCE[1]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.0/misc/AcTR7EFG.exe"
DL_FILE[1]="22020134.exe"
DL_SOURCE[1]="http://download.adobe.com/pub/adobe/magic/creativesuite/CS2_EOL/APRO/22020134.exe"
DL_ARCH[1]="X86"
DL_WINST_NAME[1]=InstallExe
DL_EXTRACT_FORMAT[1]="7zip"
DL_EXTRACT_TO[1]="7.0"
DL_FILE[2]="Ac705PrP_ddnsfsip.exe"
DL_SOURCE[2]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.0.5/misc/Ac705PrP_ddnsfsip.exe"
DL_ARCH[2]="X86"
DL_EXTRACT_FORMAT[2]="7zip"
DL_EXTRACT_TO[2]="7.0.5"
DL_FILE[3]="AcrobatUpd707_all_incr.exe"
DL_SOURCE[3]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.0.7/misc/AcrobatUpd707_all_incr.exe"
DL_ARCH[3]="X86"
DL_EXTRACT_FORMAT[3]="7zip"
DL_EXTRACT_TO[3]="7.0.7"
DL_FILE[4]="AcrobatUpd708_all_incr.exe"
DL_SOURCE[4]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.0.8/misc/AcrobatUpd708_all_incr.exe"
DL_ARCH[4]="X86"
DL_EXTRACT_FORMAT[4]="7zip"
DL_EXTRACT_TO[4]="7.0.8"
DL_FILE[5]="AcrobatUpd709_all_incr.exe"
DL_SOURCE[5]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.0.9/misc/AcrobatUpd709_all_incr.exe"
DL_ARCH[5]="X86"
DL_EXTRACT_FORMAT[5]="7zip"
DL_EXTRACT_TO[5]="7.0.9"
DL_FILE[6]="AcroProUpd710_all_cum.exe"
DL_SOURCE[6]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.1.0/misc/AcroProUpd710_all_cum.exe"
DL_ARCH[6]="X86"
DL_EXTRACT_FORMAT[6]="7zip"
DL_EXTRACT_TO[6]="7.1.0"
DL_FILE[7]="AcroUpd711_all_incr.msp"
DL_SOURCE[7]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.1.1/misc/AcroUpd711_all_incr.msp"
DL_ARCH[7]="X86"
DL_EXTRACT_FORMAT[7]="cp"
DL_EXTRACT_TO[7]="7.1.1"
DL_FILE[8]="AcrobatUpd712_all_incr.msp"
DL_SOURCE[8]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.1.2/misc/AcrobatUpd712_all_incr.msp"
DL_ARCH[8]="X86"
DL_EXTRACT_FORMAT[8]="cp"
DL_EXTRACT_TO[8]="7.1.2"
DL_FILE[9]="AcrobatUpd713_all_incr.msp"
DL_SOURCE[9]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.1.3/misc/AcrobatUpd713_all_incr.msp"
DL_ARCH[9]="X86"
DL_EXTRACT_FORMAT[9]="cp"
DL_EXTRACT_TO[9]="7.1.3"
DL_FILE[10]="AcrobatUpd714_all_incr.msp"
DL_SOURCE[10]="ftp://ftp.adobe.com/pub/adobe/acrobat/win/7x/7.1.4/misc/AcrobatUpd714_all_incr.msp"
DL_ARCH[10]="X86"
DL_EXTRACT_FORMAT[10]="cp"
DL_EXTRACT_TO[10]="7.1.4"
# File array index for the image showing while installing the program
ICON_DL_INDEX=0
WINST_NAME[0]="Install7Msi"
WINST_VALUE[0]="@DL_EXTRACT_WINST_PATH[1]@\\AcroPro.msi"
WINST_NAME[1]="Install705Msp"
WINST_VALUE[1]="@DL_EXTRACT_WINST_PATH[2]@\\Ac705PrP_ddnsfsip.msp"
WINST_NAME[2]="Install707Msp"
WINST_VALUE[2]="@DL_EXTRACT_WINST_PATH[3]@\\Acro707.msp"
WINST_NAME[3]="Install708Msp"
WINST_VALUE[3]="@DL_EXTRACT_WINST_PATH[4]@\\Acro708.msp"
WINST_NAME[4]="Install709Msp"
WINST_VALUE[4]="@DL_EXTRACT_WINST_PATH[5]@\\Acro709.msp"
WINST_NAME[5]="Install710Msp"
WINST_VALUE[5]="@DL_EXTRACT_WINST_PATH[6]@\\AcPr710.msp"
WINST_NAME[6]="Install711Msp"
WINST_VALUE[6]="@DL_EXTRACT_WINST_PATH[7]@\\AcroUpd711_all_incr.msp"
WINST_NAME[7]="Install712Msp"
WINST_VALUE[7]="@DL_EXTRACT_WINST_PATH[8]@\\AcrobatUpd712_all_incr.msp"
WINST_NAME[8]="Install713Msp"
WINST_VALUE[8]="@DL_EXTRACT_WINST_PATH[9]@\\AcrobatUpd713_all_incr.msp"
WINST_NAME[9]="Install714Msp"
WINST_VALUE[9]="@DL_EXTRACT_WINST_PATH[10]@\\AcrobatUpd714_all_incr.msp"
OPSI_INI_SECTION[0]="X86"
OPSI_INI_OPTION[0]="MsiId"
OPSI_INI_VALUE[0]="{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"