Adobe Reader XI Update lässt sich nicht installieren

Antworten
Benutzeravatar
D1Ck3n
Beiträge: 191
Registriert: 15 Mär 2013, 11:05

Adobe Reader XI Update lässt sich nicht installieren

Beitrag von D1Ck3n »

Hallöle Leute,
gestern war großer Patch-Day bei Adobe & co und ich wollte - fleißig wie ich bin - sofort alle Update-Pakete fertig machen, was auch gut klappte, nur das Adobe Reader 11.0.0.6 lässt sich nicht so einfach installieren, wie das letzte Update (11.0.0.5).

Hier der Code aus meiner setup.ins:

Code: Alles auswählen

[Aktionen]
Message=Installing Adobe Acrobat Reader  11.0.0.6
SetLogLevel=7
ScriptErrorMessages=true
ExitOnError=true
TraceMode=Off
DefVar $InstallDir$
DefVar $PRODUCTPATH$
DefVar $MinimumSpace$
DefVar $flInstallDir$
DefVar $flInstallPathRegKey$
DefVar $flVersion$
DefVar $UninstallCommand$
Set $MinimumSpace$ = "50 MB"
Set $PRODUCTPATH$="%ProgramFilesDir64%\Adobe\Acrobat"
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

if FileExists("%ScriptPath%\uninstall.ins")
comment "start uninstall"
sub "%ScriptPath%\uninstall.ins"
endif

comment "Installing flash11"
winbatch_flash11_install
[winbatch_flash11_install]
"%SCRIPTPATH%\AdbeRdrUpd11006.msp" /quiet /norestart

Ich habe eigentlich nur den Namen der .msp Datei geändert, aber Opsi will es einfach nicht installieren.

Und das die Log-Datei:

Code: Alles auswählen

[6] [Jan 15 15:34:24:046] [reader11.0.0.6]   Call ""P:\install\reader11.0.0.6\AdbeRdrSecUpd11006.msp" /quiet /norestart"
[6] [Jan 15 15:34:24:046] [reader11.0.0.6]      Waiting until the called process is finished
[6] [Jan 15 15:34:24:046] [reader11.0.0.6]   Start process as invoker: pcpatch
[3] [Jan 15 15:34:24:062] [reader11.0.0.6]   Exception in StartProcess_cp: Failed to execute "P:\install\reader11.0.0.6\AdbeRdrSecUpd11006.msp" /quiet /norestart : 2
[6] [Jan 15 15:34:24:062] [reader11.0.0.6]   
[5] [Jan 15 15:34:24:078] [reader11.0.0.6] Process stopped
irgendwie verstehe ich nicht wo der Fehler liegt.

Gruß

D1Ck3n
Gruß
D1Ck3n
Benutzeravatar
tobias
Beiträge: 1294
Registriert: 20 Aug 2008, 12:36
Wohnort: Braunschweig
Kontaktdaten:

Re: Adobe Reader XI Update lässt sich nicht installieren

Beitrag von tobias »

Exception in StartProcess_cp: Failed to execute

Bedeutet ja das der WINST die Datei gar nicht aufrufen kann - ich würde mal ein opsi-setup --set-rights drüber laufen lassen und prüfen ob die Datei evtl. korrupt ist.
Benutzeravatar
D1Ck3n
Beiträge: 191
Registriert: 15 Mär 2013, 11:05

Re: Adobe Reader XI Update lässt sich nicht installieren

Beitrag von D1Ck3n »

tobias hat geschrieben:Exception in StartProcess_cp: Failed to execute

Bedeutet ja das der WINST die Datei gar nicht aufrufen kann - ich würde mal ein opsi-setup --set-rights drüber laufen lassen und prüfen ob die Datei evtl. korrupt ist.
Vergesst meinen Thread, ich bin einfach nur blöd :oops: :oops: :oops: :oops:

Ich hatte den Schreibfehler korrigiert, aber vergessen das aktualisierte Paket über den opsi-packet-manager zu integrieren :oops:

Könnte bitte einer der Mods den Thread löschen?^^

Gruß

D1Ck3n
Gruß
D1Ck3n
ltsepp
Beiträge: 1
Registriert: 01 Jul 2014, 16:46

Re: Adobe Reader XI Update lässt sich nicht installieren

Beitrag von ltsepp »

Hallo

Ich habe auch ein Problem mit dem Update auf 11.0.0.7

exception in StartProcess_cp: Failed to execute "\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\AdbeRdr11007_de_DE.exe" /sAll /rs /exe EULA_ACCEPT=YES : 5


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 11"
 
;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.07"
 
;filename of MSI-package which has to be installed
DefVar $Executable1$
Set $Executable1$ = "AdbeRdr11000_de_DE.msi"
DefVar $Executable2$
Set $Executable2$ = "AdbeRdr11007_de_DE.exe"
 
;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%"
	isFatalError
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=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES
 
[Winbatch_Install_Update1]
"%SCRIPTPATH%\$Executable2$" /sAll /rs /exe EULA_ACCEPT=YES
 
[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
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


Logfile:

Code: Alles auswählen

[5] [Jul 04 11:01:00:619] --
[5] [Jul 04 11:01:00:620] --
[1] [Jul 04 11:01:00:623] opsi-winst 4.11.3.11 started at 04.07.2014 10:44:13
[1] [Jul 04 11:01:00:653] 
[1] [Jul 04 11:01:00:654] ============ Version 4.11.3.11 WIN32 script "\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\setup.ins"
[1] [Jul 04 11:01:00:656]              start: 2014-07-04  11:01:00 
[1] [Jul 04 11:01:00:657]              on client named    "RUMPLE"
[1] [Jul 04 11:01:00:657]              loggedin user    "MSprenger"
[1] [Jul 04 11:01:00:659]              winst running as    "MSprenger"
[1] [Jul 04 11:01:00:661]              winst running with admin privileges
[1] [Jul 04 11:01:00:662]              winst running in standard script mode
[1] [Jul 04 11:01:00:664] executing: "C:\Program Files (x86)\opsi.org\opsi-client-agent\opsi-winst\winst32.exe"
[1] [Jul 04 11:01:00:666] system infos:
[1] [Jul 04 11:01:00:668] 48-5B-39-00-31-15  -  PC hardware address
[1] [Jul 04 11:01:00:670] Rumple.fsk.local  -  IP name 
[1] [Jul 04 11:01:00:672] 192.168.42.53  -  IP address
[1] [Jul 04 11:01:00:674] DEU  -  System default locale 
[1] [Jul 04 11:01:00:677] MS Windowds 6.3 64 Bit
[1] [Jul 04 11:01:00:679] 
[6] [Jul 04 11:01:00:681] Registry key [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion]  opened
[6] [Jul 04 11:01:00:683] Key closed
[5] [Jul 04 11:01:00:758] 
[5] [Jul 04 11:01:00:760] Set  $OS$ = GetOS
[6] [Jul 04 11:01:00:763]   The value of the variable "$OS$" is now: "Windows_NT"
[5] [Jul 04 11:01:00:765] 
[5] [Jul 04 11:01:00:768] Set  $NTVersion$ = GetNTVersion
[6] [Jul 04 11:01:00:771]   The value of the variable "$NTVersion$" is now: "Windows Vista"
[5] [Jul 04 11:01:00:773] 
[5] [Jul 04 11:01:00:776] Set  $ProductName$ = "Adobe Reader 11"
[6] [Jul 04 11:01:00:778]   The value of the variable "$ProductName$" is now: "Adobe Reader 11"
[5] [Jul 04 11:01:00:781] 
[5] [Jul 04 11:01:00:782] Set  $ProductPicture$ = "AdobeReader.png"
[6] [Jul 04 11:01:00:785]   The value of the variable "$ProductPicture$" is now: "AdobeReader.png"
[5] [Jul 04 11:01:00:788] 
[5] [Jul 04 11:01:00:790] Set  $ProductNameFull1$ = "Adobe Reader XI 11.0.0"
[6] [Jul 04 11:01:00:793]   The value of the variable "$ProductNameFull1$" is now: "Adobe Reader XI 11.0.0"
[5] [Jul 04 11:01:00:796] 
[5] [Jul 04 11:01:00:798] Set  $ProductNameFull2$ = "Adobe Reader XI 11.0.07"
[6] [Jul 04 11:01:00:801]   The value of the variable "$ProductNameFull2$" is now: "Adobe Reader XI 11.0.07"
[5] [Jul 04 11:01:00:804] 
[5] [Jul 04 11:01:00:807] Set  $Executable1$ = "AdbeRdr11000_de_DE.msi"
[6] [Jul 04 11:01:00:811]   The value of the variable "$Executable1$" is now: "AdbeRdr11000_de_DE.msi"
[5] [Jul 04 11:01:00:814] 
[5] [Jul 04 11:01:00:817] Set  $Executable2$ = "AdbeRdr11007_de_DE.exe"
[6] [Jul 04 11:01:00:821]   The value of the variable "$Executable2$" is now: "AdbeRdr11007_de_DE.exe"
[6] [Jul 04 11:01:00:824] opsi-winst has version  4.11.3.11, required is : >= 4.11
[5] [Jul 04 11:01:00:826] message Installiere Adobe Reader XI 11.0.0
[5] [Jul 04 11:01:00:849] 
[5] [Jul 04 11:01:00:854] If
[6] [Jul 04 11:01:00:861]     Free on Disk C:: 30.544.478.208 bytes  This is more than the required amount of 500.000.000 bytes
[5] [Jul 04 11:01:00:866]   HasMinimumSpace ("C:", "500 MB")   <<< result true
[5] [Jul 04 11:01:00:872]   not (HasMinimumSpace ("C:", "500 MB"))   <<< result false
[5] [Jul 04 11:01:00:879] Then
[5] [Jul 04 11:01:00:885] EndIf
[5] [Jul 04 11:01:00:892] 
[5] [Jul 04 11:01:00:898] If
[5] [Jul 04 11:01:00:904]   $NTVersion$ = "Windows Vista"    <<< result true
[5] [Jul 04 11:01:00:909]   $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista"    <<< result true
[5] [Jul 04 11:01:00:915]   $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista"    <<< result true
[5] [Jul 04 11:01:00:922]   $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista"    <<< result true
[5] [Jul 04 11:01:00:928]   ( $NTVersion$ = "Win2K" OR $NTVersion$ = "WinXP" OR $NTVersion$ = "Win NT 5.2" OR $NTVersion$ = "Windows Vista" )   <<< result true
[5] [Jul 04 11:01:00:934] Then
[5] [Jul 04 11:01:00:941]   
[5] [Jul 04 11:01:00:948]   Execution of Winbatch_Install_Reader
[6] [Jul 04 11:01:00:953]     Call "msiexec.exe /i "\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\AdbeRdr11000_de_DE.msi" /qb-! /norestart ALLUSERS=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES"
[6] [Jul 04 11:01:00:959]        Waiting until the called process is finished
[6] [Jul 04 11:01:00:966]     Start process as invoker: MSprenger
[6] [Jul 04 11:01:09:027]     ExitCode 0    Executed process "msiexec.exe /i "\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\AdbeRdr11000_de_DE.msi" /qb-! /norestart ALLUSERS=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES"
[6] [Jul 04 11:01:09:063]   
[6] [Jul 04 11:01:09:067]   ~~~~~~~ Start Sub ~~~~~~~  sub "\\LULU\opsi_workbench\install\check_exitcode\check_msi-exitcode.ins"
[5] [Jul 04 11:01:09:088]   
[5] [Jul 04 11:01:09:093]   Set  $ExitCode$ = getLastExitCode
[6] [Jul 04 11:01:09:099]     The value of the variable "$ExitCode$" is now: "0"
[1] [Jul 04 11:01:09:106]   LogLevel was 6
[1] [Jul 04 11:01:09:112]   LogLevel set to 4
[1] [Jul 04 11:01:09:119]       LogLevel was 4
[1] [Jul 04 11:01:09:125]       LogLevel set to 5
[5] [Jul 04 11:01:09:132]       comment: ExitCode = 0 Action completed successfully.
[1] [Jul 04 11:01:09:138]       LogLevel was 5
[1] [Jul 04 11:01:09:144]       LogLevel set to 4
[1] [Jul 04 11:01:09:153]   LogLevel was 4
[1] [Jul 04 11:01:09:158]   LogLevel set to 6
[6] [Jul 04 11:01:09:164]   
[6] [Jul 04 11:01:09:171]   ~~~~~~~ End Sub   ~~~~~~~  sub "\\LULU\opsi_workbench\install\check_exitcode\check_msi-exitcode.ins"
[6] [Jul 04 11:01:09:176]   
[5] [Jul 04 11:01:09:200]   message Installiere Adobe Reader XI 11.0.07
[5] [Jul 04 11:01:09:205]   
[5] [Jul 04 11:01:09:211]   Execution of Winbatch_Install_Update1
[6] [Jul 04 11:01:09:220]     Call ""\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\AdbeRdr11007_de_DE.exe" /sAll /rs /exe EULA_ACCEPT=YES"
[6] [Jul 04 11:01:09:225]        Waiting until the called process is finished
[6] [Jul 04 11:01:09:235]     Start process as invoker: MSprenger
[3] [Jul 04 11:01:09:261]     Exception in StartProcess_cp: Failed to execute "\\LULU\opsi_workbench\adobe_reader_app\CLIENT_DATA\AdbeRdr11007_de_DE.exe" /sAll /rs /exe EULA_ACCEPT=YES : 5
[6] [Jul 04 11:01:09:265]     
[6] [Jul 04 11:01:09:298]   
[6] [Jul 04 11:01:09:302]   ~~~~~~~ Start Sub ~~~~~~~  sub "\\LULU\opsi_workbench\install\check_exitcode\check_msi-exitcode.ins"
[5] [Jul 04 11:01:09:323]   
[5] [Jul 04 11:01:09:327]   Set  $ExitCode$ = getLastExitCode
[6] [Jul 04 11:01:09:334]     The value of the variable "$ExitCode$" is now: "-1"
[1] [Jul 04 11:01:09:341]   LogLevel was 6
[1] [Jul 04 11:01:09:347]   LogLevel set to 4
[1] [Jul 04 11:01:09:358]   LogLevel was 4
[1] [Jul 04 11:01:09:364]   LogLevel set to 6
[6] [Jul 04 11:01:09:370]   
[6] [Jul 04 11:01:09:377]   ~~~~~~~ End Sub   ~~~~~~~  sub "\\LULU\opsi_workbench\install\check_exitcode\check_msi-exitcode.ins"
[6] [Jul 04 11:01:09:383]   
[5] [Jul 04 11:01:09:390]   
[5] [Jul 04 11:01:09:396]   Execution of LinkFolder_Custom
[6] [Jul 04 11:01:09:403]     Base folder is the COMMON DESKTOPDIRECTORY folder
[6] [Jul 04 11:01:09:409]     Opened "" in the COMMON DESKTOPDIRECTORY folder
[6] [Jul 04 11:01:09:416]       Link "Adobe Reader XI" deleted
[6] [Jul 04 11:01:09:423]       Base folder is the COMMON PROGRAMS folder
[6] [Jul 04 11:01:09:428]     Opened "" in the COMMON PROGRAMS folder
[6] [Jul 04 11:01:09:435]       Link "Adobe Reader XI" deleted
[6] [Jul 04 11:01:09:441]     Opened "" in the COMMON PROGRAMS folder
[6] [Jul 04 11:01:09:458]       ShellLink "Adobe Reader 11" created
[5] [Jul 04 11:01:09:464]   
[5] [Jul 04 11:01:09:469]   Execution of Registry_Global
[6] [Jul 04 11:01:09:474]     Registry key [HKLM\SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM]  opened
[6] [Jul 04 11:01:09:481]               Variable "iCheck"  is keeping its value "0"
[6] [Jul 04 11:01:09:487]               Key closed
[6] [Jul 04 11:01:09:493]               Registry key [HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run]  opened
[6] [Jul 04 11:01:09:499]               Variable "Adobe Reader Speed Launcher"  not found. Code: 2
[6] [Jul 04 11:01:09:505]               Entry   "Adobe ARM" = ""C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\AdobeARM.exe""  deleted
[6] [Jul 04 11:01:09:511]               Key closed
[5] [Jul 04 11:01:09:522]   
[5] [Jul 04 11:01:09:527]   Execution of Registry_User
[5] [Jul 04 11:01:09:534]     
[5] [Jul 04 11:01:09:540]     Branch: fortschritt
[6] [Jul 04 11:01:09:557]     "C:\Users\fortschritt\NTUser.dat" loaded.
[5] [Jul 04 11:01:09:561]       
[5] [Jul 04 11:01:09:568]       Execution of Registry_User
[6] [Jul 04 11:01:09:574]         Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\IPM]  opened
[6] [Jul 04 11:01:09:581]                   Variable "bShowMsgAtLaunch"  is keeping its value "0"
[6] [Jul 04 11:01:09:588]                   Key closed
[6] [Jul 04 11:01:09:594]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:600]                   Variable "bDisplayAboutDialog"  is keeping its value "0"
[6] [Jul 04 11:01:09:607]                   Key closed
[6] [Jul 04 11:01:09:613]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:620]                   Variable "iTrustedMode"  is keeping its value "1"
[6] [Jul 04 11:01:09:625]                   Key closed
[6] [Jul 04 11:01:09:631]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\AVGeneral]  opened
[6] [Jul 04 11:01:09:637]                   Variable "iConnectionSpeed"  is keeping its value "10000000"
[6] [Jul 04 11:01:09:643]                   Key closed
[6] [Jul 04 11:01:09:649]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\JSPrefs]  opened
[6] [Jul 04 11:01:09:656]                   Variable "bEnableJS"  is keeping its value "0"
[6] [Jul 04 11:01:09:663]                   Key closed
[5] [Jul 04 11:01:09:698]     
[5] [Jul 04 11:01:09:703]     Branch: User
[6] [Jul 04 11:01:09:718]     "C:\Users\User\NTUser.dat" loaded.
[5] [Jul 04 11:01:09:724]       
[5] [Jul 04 11:01:09:730]       Execution of Registry_User
[6] [Jul 04 11:01:09:738]         Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\IPM]  opened
[6] [Jul 04 11:01:09:744]                   Variable "bShowMsgAtLaunch"  is keeping its value "0"
[6] [Jul 04 11:01:09:751]                   Key closed
[6] [Jul 04 11:01:09:756]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:762]                   Variable "bDisplayAboutDialog"  is keeping its value "0"
[6] [Jul 04 11:01:09:769]                   Key closed
[6] [Jul 04 11:01:09:777]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:783]                   Variable "iTrustedMode"  is keeping its value "1"
[6] [Jul 04 11:01:09:789]                   Key closed
[6] [Jul 04 11:01:09:796]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\AVGeneral]  opened
[6] [Jul 04 11:01:09:802]                   Variable "iConnectionSpeed"  is keeping its value "10000000"
[6] [Jul 04 11:01:09:808]                   Key closed
[6] [Jul 04 11:01:09:815]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\JSPrefs]  opened
[6] [Jul 04 11:01:09:821]                   Variable "bEnableJS"  is keeping its value "0"
[6] [Jul 04 11:01:09:828]                   Key closed
[5] [Jul 04 11:01:09:839]     
[5] [Jul 04 11:01:09:844]     Branch: msprenger
[4] [Jul 04 11:01:09:851]     Warning: NTUser.dat could not be loaded from path "C:\Users\msprenger\NTUser.dat". Code 32: Der Prozess kann nicht auf die Datei zugreifen, da sie von einem anderen Prozess verwendet wird.<
[5] [Jul 04 11:01:09:860]     
[5] [Jul 04 11:01:09:868]     Branch: Default
[6] [Jul 04 11:01:09:930]     "C:\Users\Default\NTUser.dat" loaded.
[5] [Jul 04 11:01:09:935]       
[5] [Jul 04 11:01:09:942]       Execution of Registry_User
[6] [Jul 04 11:01:09:948]         Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\IPM]  opened
[6] [Jul 04 11:01:09:955]                   Variable "bShowMsgAtLaunch"  is keeping its value "0"
[6] [Jul 04 11:01:09:961]                   Key closed
[6] [Jul 04 11:01:09:968]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:973]                   Variable "bDisplayAboutDialog"  is keeping its value "0"
[6] [Jul 04 11:01:09:980]                   Key closed
[6] [Jul 04 11:01:09:986]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:09:992]                   Variable "iTrustedMode"  is keeping its value "1"
[6] [Jul 04 11:01:09:998]                   Key closed
[6] [Jul 04 11:01:10:005]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\AVGeneral]  opened
[6] [Jul 04 11:01:10:011]                   Variable "iConnectionSpeed"  is keeping its value "10000000"
[6] [Jul 04 11:01:10:018]                   Key closed
[6] [Jul 04 11:01:10:025]                   Registry key [HKEY_USERS\PatchNTUserdatTempUser\Software\Adobe\Acrobat Reader\11.0\JSPrefs]  opened
[6] [Jul 04 11:01:10:032]                   Variable "bEnableJS"  is keeping its value "0"
[6] [Jul 04 11:01:10:038]                   Key closed
[5] [Jul 04 11:01:10:051]     
[5] [Jul 04 11:01:10:058]     Make it for user .DEFAULT
[5] [Jul 04 11:01:10:065]       
[5] [Jul 04 11:01:10:071]       Execution of Registry_User
[6] [Jul 04 11:01:10:078]         Registry key [HKEY_USERS\.DEFAULT\Software\Adobe\Acrobat Reader\11.0\IPM]  opened
[6] [Jul 04 11:01:10:085]                   Variable "bShowMsgAtLaunch"  is keeping its value "0"
[6] [Jul 04 11:01:10:091]                   Key closed
[6] [Jul 04 11:01:10:097]                   Registry key [HKEY_USERS\.DEFAULT\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:10:103]                   Variable "bDisplayAboutDialog"  is keeping its value "0"
[6] [Jul 04 11:01:10:110]                   Key closed
[6] [Jul 04 11:01:10:117]                   Registry key [HKEY_USERS\.DEFAULT\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:10:123]                   Variable "iTrustedMode"  is keeping its value "1"
[6] [Jul 04 11:01:10:130]                   Key closed
[6] [Jul 04 11:01:10:135]                   Registry key [HKEY_USERS\.DEFAULT\Software\Adobe\Acrobat Reader\11.0\AVGeneral]  opened
[6] [Jul 04 11:01:10:141]                   Variable "iConnectionSpeed"  is keeping its value "10000000"
[6] [Jul 04 11:01:10:148]                   Key closed
[6] [Jul 04 11:01:10:155]                   Registry key [HKEY_USERS\.DEFAULT\Software\Adobe\Acrobat Reader\11.0\JSPrefs]  opened
[6] [Jul 04 11:01:10:161]                   Variable "bEnableJS"  is keeping its value "0"
[6] [Jul 04 11:01:10:169]                   Key closed
[5] [Jul 04 11:01:10:176]     
[5] [Jul 04 11:01:10:183]     And finally: The current user: MSprenger : [S-1-5-21-444492582-834643745-3737123881-7139]
[5] [Jul 04 11:01:10:190]       
[5] [Jul 04 11:01:10:196]       Execution of Registry_User
[6] [Jul 04 11:01:10:203]         Registry key [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\IPM]  created
[6] [Jul 04 11:01:10:208]                 Variable "bShowMsgAtLaunch"  set to "0x00000000"
[6] [Jul 04 11:01:10:216]                 Key closed
[6] [Jul 04 11:01:10:223]                 Registry key [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\Originals]  created
[6] [Jul 04 11:01:10:228]                 Variable "bDisplayAboutDialog"  set to "0x00000000"
[6] [Jul 04 11:01:10:235]                 Key closed
[6] [Jul 04 11:01:10:242]                 Registry key [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\Originals]  opened
[6] [Jul 04 11:01:10:250]                 Variable "iTrustedMode"  set to "0x00000001"
[6] [Jul 04 11:01:10:257]                 Key closed
[6] [Jul 04 11:01:10:263]                 Registry key [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\AVGeneral]  created
[6] [Jul 04 11:01:10:270]                 Variable "iConnectionSpeed"  set to "0x00989680"
[6] [Jul 04 11:01:10:277]                 Key closed
[6] [Jul 04 11:01:10:283]                 Registry key [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\JSPrefs]  created
[6] [Jul 04 11:01:10:290]                 Variable "bEnableJS"  set to "0x00000000"
[6] [Jul 04 11:01:10:297]                 Key closed
[5] [Jul 04 11:01:10:303] 
[5] [Jul 04 11:01:10:310] Else
[5] [Jul 04 11:01:10:316] EndIf
[1] [Jul 04 11:01:10:339] ___________________
[1] [Jul 04 11:01:10:344] script finished
[1] [Jul 04 11:01:10:351] 1 error
[1] [Jul 04 11:01:10:361] 1 warning
[1] [Jul 04 11:01:10:368] 
[1] [Jul 04 11:01:10:374] 
[6] [Jul 04 11:01:10:381] Delete "c:\opsi.org\tmp\_winstbat_*"
[6] [Jul 04 11:01:10:386]   Search "c:\opsi.org\tmp\"
Ich habe die exe schon getauscht, habe opsi-setup --set-rights . ausgeführt.
Da ich gerade erst mit Opsi anfange bin ich im Moment noch nicht so fit. Ich hoffe ihr könnt mir einen hinweiß geben.

Gruß ltsepp
Antworten