Seite 1 von 2
Adobe Reader 11.0.0.11 oder DC?
Verfasst: 18 Mai 2015, 10:44
von D1Ck3n
Hallo Leute,
ich erstelle momentan neue Updates für die üblichen Verdächtigen (Firefox, Flash etc.) und bin dabei auf 2 neue Updates für den Adobe Reader gestoßen: Adobe Reader 11.0.0.11 und Reader DC.
Welchen verwendet ihr? Und gibt es eine .exe für die 11.0.0.11 Version? Ich habe noch keine gefunden.
Gruß
D1Ck3n
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 18 Mai 2015, 12:34
von Synco
Eine .exe Datei für den 11.0.11 habe ich auch noch nicht gefunden. Da ich aber das .msi aus der entpackten 11.0-exe mit msiexec installiere, muss ich lediglich das 11.0.10-msp durch das aktuelle 11.0.11-msp ersetzen.
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 18 Mai 2015, 14:05
von D1Ck3n
Mit welchen Parameter installierst du die .msp?
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 18 Mai 2015, 15:48
von Synco
Code: Alles auswählen
[Winbatch_install]
msiexec /i Acroread.msi TRANSFORMS=Acroread.mst /passive /l* "$LogDir$\$ProductId$.install_log.txt" REBOOT=ReallySuppress
[Winbatch_install_msp]
msiexec /p AdbeRdrUpd11011.msp /passive /l* "$LogDir$\$ProductId$-msp.install_log.txt" REBOOT=ReallySuppress
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 14:24
von rfrankow
Da gibts immer die msp direkt:
ftp://ftp.adobe.com/pub/adobe/reader/wi ... 0.11/misc/
Mein Install Parameter:
Code: Alles auswählen
msiexec /i "$MsiFile$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=2 REBOOT=ReallySuppress EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES
Mein Update Parameter:
Code: Alles auswählen
msiexec /p "%ScriptPath%\files\updates\AdbeRdrUpd11011.msp" /qb! /l* "$LogDir$\$ProductId$.update-11011-log.txt"
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 14:56
von D1Ck3n
Mhhhh.....irgendwie kriege ich das nicht gebacken
So habe ich die letzten Updates immer mit der .exe installiert:
Code: Alles auswählen
[Aktionen]
Message=Installing Adobe Reader 11.0.0.10...
SetLogLevel=7
ScriptErrorMessages=true
ExitOnError=true
TraceMode=Off
DefVar $InstallDir$
DefVar $PRODUCTPATH$
DefVar $MinimumSpace$
DefVar $RXInstallDir$
DefVar $RXInstallPathRegKey$
DefVar $RXVersion$
DefVar $UninstallCommand$
Set $MinimumSpace$ = "250 MB"
Set $PRODUCTPATH$="%ProgramFilesDir64%\Adobe\Reader 11"
set $InstallDir$=$PRODUCTPATH$
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive%
isFatalError
; Stop process and set installation status to failed
endif
comment "Installing Adobe Reader XI"
winbatch_readerX_install
[winbatch_readerX_install]
"%SCRIPTPATH%\AdbeRdr11010_de_DE.exe" /msi EULA_ACCEPT=YES /qn
Könnt ihr mir mal eure Skripte zeigen?
Gruß
D1Ck3n
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 15:04
von rfrankow
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 15:53
von D1Ck3n
Ich habe mir jetzt ein Skript aus den Vorlagen gebastelt, aber die Installation bleibt bei dem Update einfach hängen.
setup.ins:
Code: Alles auswählen
;Standard Text, shown during installation
Message = Bitte warten, das Produkt wird installiert
;Set Loglevel
setLogLevel = 6
;Stop when errors
ExitOnError = false
;Syntax Error are shown in a seperate window
ScriptErrorMessages = on
;Do not use Single-Step Mode
TraceMode = off
;No winst-window in foreground while batchmode
StayOnTop = false
[Actions]
;Variable for the OS
DefVar $OS$
set $OS$ = GetOS
;Variable for the OS-subversion
DefVar $NTVersion$
set $NTVersion$ = GetNTVersion
;Name of product (max. 12 columns)
DefVar $ProductName$
Set $ProductName$ = "Adobe Reader XI"
;filename of productpicture with extension
DefVar $ProductPicture$
Set $ProductPicture$ = "AdobeReader.png"
;the variable for the ExitCode
DefVar $ExitCode$
;complete name of product incl. versionno.
DefVar $ProductNameFull1$
set $ProductNameFull1$ = "Adobe Reader XI 11.0.0"
DefVar $ProductNameFull2$
set $ProductNameFull2$ = "Adobe Reader XI 11.0.11"
;filename of MSI-package which has to be installed
DefVar $Executable1$
Set $Executable1$ = "AdbeRdr11000_de_DE.msi"
DefVar $Executable2$
Set $Executable2$ = "AdbeRdrUpd11011.msp"
;Check the winst-version
requiredWinstVersion >= "4.11"
;Show installation-message with full productname
Message "Installiere "+$ProductNameFull1$
;show $ProductPicture$ and $ProductName$
ShowBitmap /3 "%scriptpath%\" + $ProductPicture$ $ProductName$
;check free diskspace
if not (HasMinimumSpace ("%SYSTEMDRIVE%", "500 MB"))
LogError "Nicht genügend Platz auf %SYSTEMDRIVE%"
endif
;Get OS-Version
if ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista" )
Winbatch_Install_Reader
sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
Message "Installiere "+$ProductNameFull2$
Winbatch_Install_Update1
sub "%ScriptDrive%\install\check_exitcode\check_msi-exitcode.ins"
LinkFolder_Custom
Registry_Global /32Bit
Registry_User /SysNative /AllNTUserdats
else
LogError "Kein kompatibles Betriebssystem installiert"
isFatalError
endif
[Winbatch_Install_Reader]
msiexec.exe /i "%SCRIPTPATH%\$Executable1$" /qb-! /norestart ALLUSERS=2 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES
[Winbatch_Install_Update1]
msiexec /p "%ScriptPath%\AdbeRdrUpd11011.msp" /qb! /l*
[LinkFolder_Custom]
;Delete Desktop-Link
set_basefolder common_desktopdirectory
set_subfolder ""
delete_element "Adobe Reader XI"
;Configure Startmenu
set_basefolder common_programs
set_subfolder ""
delete_element "Adobe Reader XI"
set_subfolder ""
set_link
name: $ProductName$
target: "%ProgramFiles32Dir%\Adobe\Reader 11.0\Reader\AcroRd32.exe"
parameters:
working_dir: "%ProgramFiles32Dir%\Adobe\Reader 11.0\"
icon_file:
icon_index:
end_link
[Registry_Global]
;Deactivate Adobe Updater
OpenKey [HKLM\SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM]
Set "iCheck"=REG_DWORD:0x00000000
;Avoids start of Reader_sl.exe while booting
OpenKey [HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run]
DeleteVar "Adobe Reader Speed Launcher"
DeleteVar "Adobe ARM"
[Registry_User]
;Avoids splash-screens during start of the reader
[Registry_User]
;Avoids splash-screens during start of the reader
OpenKey [Software\Adobe\Acrobat Reader\11.0\IPM]
Set "bShowMsgAtLaunch"=REG_DWORD:0x00000000
;Avoid Splash-Screen
OpenKey [Software\Adobe\Acrobat Reader\11.0\Originals]
Set "bDisplayAboutDialog"=REG_DWORD:0x00000000
;Allow only certified Addons
OpenKey [Software\Adobe\Acrobat Reader\11.0\Originals]
Set "iTrustedMode"=REG_DWORD:0x00000001
;Set connection-speed to LAN
OpenKey [Software\Adobe\Acrobat Reader\11.0\AVGeneral]
Set "iConnectionSpeed"=REG_DWORD:0x00989680
;deactivate JavaScript
OpenKey [Software\Adobe\Acrobat Reader\11.0\JSPrefs]
Set "bEnableJS" = REG_DWORD:0x00000000
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 22:36
von SisterOfMercy
Anyway to get a msi without the msp? That's the way I got the 11.0.10 version, that 'd be easy.
This page still has the 11.0.10 version:
http://get.adobe.com/reader/enterprise/
And Reader DC will only be worth it if Reader 11 does not support the upcoming ISO 32000-2 standard, which should include PAdES.
http://en.wikipedia.org/wiki/PAdES
Re: Adobe Reader 11.0.0.11 oder DC?
Verfasst: 19 Mai 2015, 22:40
von SisterOfMercy
And BTW, this is a part of my install script for Adobe Reader:
Code: Alles auswählen
[Winbatch_install_32]
"%SystemRoot%\system32\msiexec.exe" /l*v "$LogDir$\$ProductId$-setup.log" /qb-! /package "%ScriptPath%\files\AcroRead.msi" REBOOT=ReallySuppress SYNCHRONIZER=NO EULA_ACCEPT=YES DISABLE_BROWSER_INTEGRATION=YES ENABLE_CACHE_FILES=NO ENABLE_OPTIMIZATION=NO ADDLOCAL=ALL REMOVE=DTShortcut,SearchAndIndex,MultimediaPlugin,Accessibility_Plugins,Atmosphere_3D,AdobeCommonLinguistics_Big,ARM,ReaderBrowserIntegration,ReaderPDFIntegration,Updater,ReaderAIRIntegration
[Winbatch_shellex_32]
; Disable unneeded shell extensions
;Description : PDF Shell Extension
;Filename : C:\Program Files (x86)\Common Files\Adobe\Acrobat\ActiveX\PDFShell.dll
"%ScriptPath%\files\shexview-x86\shexview.exe" /disable {F9DB5320-233E-11D1-9F84-707F02C10627}
;Extension Name : Adobe PDF Preview Handler
;Filename : C:\WINDOWS\system32\"pdfprevhndlrshim.exe"
"%ScriptPath%\files\shexview-x86\shexview.exe" /disable {49400A7C-81A8-4F52-8CCE-D54739EE87EC}
[Winbatch_shellex_64]
; Disable unneeded shell extensions
;Description : PDF Shell Extension
;Filename : C:\Program Files (x86)\Common Files\Adobe\Acrobat\ActiveX\PDFShell.dll
"%ScriptPath%\files\shexview-x64\shexview.exe" /disable {F9DB5320-233E-11D1-9F84-707F02C10627}
"%ScriptPath%\files\shexview-x64\shexview.exe" /wow64 /disable {F9DB5320-233E-11D1-9F84-707F02C10627}
;Extension Name : Adobe PDF Preview Handler
;Filename : C:\WINDOWS\system32\"pdfprevhndlrshim.exe"
"%ScriptPath%\files\shexview-x64\shexview.exe" /disable {49400A7C-81A8-4F52-8CCE-D54739EE87EC}
"%ScriptPath%\files\shexview-x64\shexview.exe" /wow64 /disable {49400A7C-81A8-4F52-8CCE-D54739EE87EC}
[Registry_install]
deletekey [HKEY_LOCAL_MACHINE\SOFTWARE\MozillaPlugins\Adobe Reader]
deletekey [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MozillaPlugins\Adobe Reader]
[Registry_install_AllProfiles]
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\AutoSaveDocs]
set "bAutoSaveDocsEnabled" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\IPM]
set "bShowMsgAtLaunch" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\JSPrefs]
set "bEnableJS" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\MeasuringGeo]
set "iAreaUnit" = REG_DWORD:00000000
set "iDistUnit" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\Originals]
set "bDisplayedSplash" = REG_DWORD:00000001
set "bFullScreenIgnoreTrans" = REG_DWORD:00000001
set "iPageUnits" = REG_DWORD:00000002
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\Security\cDigSig\cCustomDownload]
set "bAskBeforeInstalling" = REG_DWORD:00000001
set "bLoadSettingsFromURL" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\UsageMeasurement]
set "bInstalledCleanupCheckDone" = REG_DWORD:00000001
openkey [HKEY_CURRENT_USER\Software\Adobe\CommonFiles\Usage\Reader 11]
set "OptIn" = REG_DWORD:00000000
openkey [HKEY_CURRENT_USER\Software\Adobe\CommonFiles\Usage\Reader 11\Demographic]
set "CompanySize" = "NOVALUE"
set "Industry" = "NOVALUE"
set "JobFunction" = "NOVALUE"
It needs quite a lot to behave properly, but that's always the case with software from adobe.