Unattended driver installation fails with code 800b0109

hi there
i´m trying to install server 2012r2 unattended.
at the moment its failing while installing some driver.
the driver are signed and - as far i can see it - the signature chain is complete with no errors.
however - when i´m trying to install the driver (i´ve tried pnputil and devcon, or even manually) i get a message that the driver isnt trusted.
when i accept this message everythink is working - but its no unattended installation.
i´ve checked the setupapi.dev.log and found this:
! sig: Verifying file against specific (valid) catalog failed! (0x800b0109)
! sig: Error 0x800b0109: A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.
i am willing and able to install the root certificate - but which one??
how can i find out which certificate is affected?
*edit*
it seems that disabling the testsigning via bcdedit is not longer working under 2012r2
or do i need more than one step?
thx
netlord

Hi,
If an unsigned or invalid boot-critical device driver is installed on an x64-based computer, the computer will not boot. The unsigned or invalid boot-critical device driver
will cause a Stop error.
If you trust this driver and trying to install this unsigned driver, use /ForceUnsigned to override the requirement that drivers installed on X64-based computers must have
a digital signature. For example,
Dism /Image:C:\test\offline /Add-Driver /Driver:C:\drivers\mydriver.INF /ForceUnsigned
The related KB:
Understanding Device Drivers and Deployment
http://technet.microsoft.com/en-us/library/dd744517(v=ws.10).aspx
Signing Device Driver Packages
http://technet.microsoft.com/en-us/library/cc771511(v=ws.10).aspx
Add and Remove Drivers Offline
http://technet.microsoft.com/en-us/library/dd744355(v=ws.10).aspx
More information:
Cross-Certificates for Kernel Mode Code Signing
http://msdn.microsoft.com/en-us/library/windows/hardware/dn170454(v=vs.85).aspx
Hope this helps.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Photoshop CC installation fails with code EX20

    The 64 bit version (WIN 7) stopped working, saying the internal file signature was invalid. To get past this I uninstalled PS and downloaded it again. This crashed during extraction with error code EX20. I now have no access to Photoshop. What can I do?

    Hi mordecaiwebb,
    Please follow this link, it mighr be useful for you:-
    http://forums.adobe.com/message/5582179
    Regards,
    Rajshree

  • Installation failed with error code 1603

    Hi all,
    while installing the configuration manager clients on a system manually, we came across this ERROR:
    installation failed with error code 1603
    Do anyone has any idea how can this be resolved. Several posts suggest its a problem related to client push installation method, but since I am installing the configuration manager clients manually, so I mush not be affected by anything related to Client Push Installation. However, be noted that client push installation is well configured on the server, there are certain computers where the client is not getting installed so we are installing the clients MANUALLY to those systems,
    Any help and suggestions would be higly appreciated.
    Regards,
    Naveed

    I have encountered the Error 1603/1602 while installing the HCKInstall\Client\Setup.exe on several machines. It appears to be generic at first, but it's not. The error code is being passed from the Service back to the MSI. It means that a service failed
    to start. The key is that it happens at the very end of the installation and then does the rollback. The solution is to figure out which service failed and then remove it and the directories.
    Here is what I did.
    I created batch to kick off before I install the client now. It basically checks for installed HCK products and if there uninstalls them. Then checks for the state of each service and if running stops the service before attempting to remove the HCK/WLK leftovers.
    Then it removes the sticky directory.
    @ECHO OFF
    :: Defaults...
    :: Default:_HCK_Services_="DTMService,FtsSvc,WLKSvc,WTTNotification,WTTResultsRelayAgent" services.
    SET _HCK_Services_=
    :: Default:_Directories_="C:^\Program Files ^(x86^)^\Microsoft Driver Test Manager"
    SET _Directories_=
    :: Default:_DEBUG_=off, use debug_on to change
    SET _DEBUG_=
    :: Examples: Comma delimited lists param1=Services param2=directory param3=debug_on
    :: ^<command.bat^> "DTMService,FtsSvc","C^:^\Program Files ^(x86^)^\Microsoft Driver Test Manager",c^:^\test, "debug_on"
    ::SetVars:
    SET _HCK_Services_=%1
    IF /I "%2" NEQ "" SET _Directories_=%2
    :: SetDefaults:
    IF /I "%3" GEQ "debug_on" SET _DEBUG_=True
    IF NOT DEFINED _HCK_Services_ (
    SET _HCK_Services_=DTMService,FtsSvc,WLKSvc,WTTNotification,WTTResultsRelayAgent
    IF NOT DEFINED _Directories_ SET _Directories_=C:\Program Files (x86)\Microsoft Driver Test Manager
    :: Clear Parans on directories
    set _Directories_=%_Directories_:(x86)=replace_x86%
    :: CallMainFunctions:
    CALL:UninstallHCK
    CALL:CheckVersion
    CALL:Main "%_HCK_Services_%"
    :Main
    FOR %%A IN (%~1) DO (
    REM Checking for Active Services ant attempting
    IF DEFINED _DEBUG_ (
    ECHO Checking %%A...
    FOR /F "tokens=3 delims=: " %%H IN ('sc query "%%A" ^| findstr "STATE"') DO (
    IF DEFINED _DEBUG_ (
    ECHO Service:"%%A" Status:"%%H"
    IF /I "%%H" NEQ "" (
    IF DEFINED _DEBUG_ (
    ECHO Service "%%A" is installed but not %%H.
    ) ELSE IF /I "%%H" GEQ "RUNNING" (
    IF DEFINED _DEBUG_ (
    ECHO. %%A %%H
    ECHO Attempting to Stop %%A
    SC STOP "%%A" >NUL
    ) ELSE IF /I "%%H" GEQ "START_PENDING" (
    IF DEFINED _DEBUG_ (
    ECHO. %%A %%H
    REM Need to wait for it to fail before we can stop the service.
    IF DEFINED _DEBUG_ (
    ECHO Attempting to Stop %%A in 60 seconds...
    PING.EXE 1.1.1.1 -n 1 -w 60000 >NUL
    SC STOP "%%A" >NUL
    ) ELSE (
    CALL:print Service, "%%A", Error, "Unexpected Results"
    FOR /F "tokens=3 delims=: " %%H IN ('sc query "%%A" ^| findstr "STATE"') DO (
    IF /I "%%H" NEQ "STOPPED" (
    CALL:print Service, %%A, Failure_To_STOP, %%H
    ) ELSE (
    CALL:print Service, %%A, State, %%H
    CALL:delete_Service %%A
    FOR /F "tokens=* delims=: " %%H IN ('sc query "%%A" ^| findstr "FAILED"') DO (
    IF DEFINED _DEBUG_ (
    ECHO Service:"%%A" is not installed.
    ECHO. State:%%H
    CALL:print Service, %%A, FinalState, "Not Installed"
    CALL:RemoveDirectories "%_Directories_%"
    GOTO:EOF
    :UninstallHCK
    CALL:CheckInstallation "{3BEE5E5E-8BEE-F691-4349-7B2B41FF3A59}", UninstallString
    IF DEFINED _REGKEYFOUND_ MsiExec.exe /X{3BEE5E5E-8BEE-F691-4349-7B2B41FF3A59} /qb+
    CALL:CheckInstallation "{6F8333B4-7DB1-E6D3-52ED-5641F8F38B76}", UninstallString
    IF DEFINED _REGKEYFOUND_ MsiExec.exe /X{6F8333B4-7DB1-E6D3-52ED-5641F8F38B76} /qb+
    CALL:CheckInstallation "{A329307E-3CCD-57BF-47EF-1B857D1AF08E}", UninstallString
    IF DEFINED _REGKEYFOUND_ MsiExec.exe /X{A329307E-3CCD-57BF-47EF-1B857D1AF08E} /qb+
    CALL:CheckInstallation "{F1213F53-D794-2021-E14E-F4BEED1BBF3B}", UninstallString
    IF DEFINED _REGKEYFOUND_ MsiExec.exe /X{F1213F53-D794-2021-E14E-F4BEED1BBF3B} /qb+
    GOTO:EOF
    :RemoveDirectories
    SET _RemoveDirectories_1_=%~1
    SET _RemoveDirectories_1_=%_RemoveDirectories_1_:"=%
    SET _RemoveDirectories_1_=%_RemoveDirectories_1_:'=%
    FOR /f "tokens=1-8 delims=," %%A IN ("%_RemoveDirectories_1_%") DO (
    IF "%%A" GEQ ":" (
    CALL:RMDIR "%%A"
    IF "%%B" GEQ ":" (
    CALL:RMDIR "%%B"
    IF "%%C" GEQ ":" (
    CALL:RMDIR "%%C"
    IF "%%D" GEQ ":" (
    CALL:RMDIR "%%D"
    IF "%%E" GEQ ":" (
    CALL:RMDIR "%%F"
    IF "%%G" GEQ ":" (
    CALL:RMDIR "%%H"
    IF "%%I" GEQ ":" (
    CALL:RMDIR "%%I"
    IF "%%J" GEQ ":" (
    CALL:RMDIR "%%J"
    exit /b 0
    FOR %%A IN ('%_RemoveDirectories_1_%') DO (
    ECHO.Dir=%%A
    REM CALL:RMDIR '%%A'
    GOTO:EOF
    :RMDIR
    :: GET Parans back
    SET _THEDIR_=%~1
    SET _DirStatus_=
    set _THEDIR_=%_THEDIR_:replace_x86=(x86)%
    set _THEDIR_=%_THEDIR_:"=%
    set _THEDIR_=%_THEDIR_:'=%
    IF NOT EXIST "%_THEDIR_%" goto endof
    RMDIR "%_THEDIR_%" /S /Q
    IF NOT EXIST "%_THEDIR_%" (
    SET _DirStatus_=Removed
    ) ELSE (
    SET _DirStatus_=Failed To Remove Directory
    CALL:print RemoveDirectory, "%_THEDIR_%", Results, "%_DirStatus_%"
    :endof
    GOTO:EOF
    :print
    SET var_3=%~3
    IF DEFINED var_3 (
    ECHO ^{^[^'%~1^'^]='%~2', ^[^'%~3^'^]='%~4'^}
    ) ELSE (
    ECHO ^{^[^'%~1^'^]='%~2'^}
    GOTO:EOF
    :delete_Service
    sc.exe delete "%~1" >Nul
    IF %ERRORLEVEL% NEQ 0 (
    CALL:print Service, %~1, FinalState, "Failed To Uninstall"
    ) ELSE (
    CALL:print Service, %~1, Current_State, Uninstalled
    GOTO:EOF
    :TestStr
    SET _ORIGINAL_=%~2
    SET STR2=%~2
    SET STR3=%~3
    SET STR4=%~4
    REM ECHO.Str2="!STR2!"
    SET STR2=!STR2:%~1=!
    REM echo.STR2="!STR2!"
    IF /I NOT "!STR2!" EQU "!_ORIGINAL_!" (
    SET %STR3%=%STR4%
    GOTO:EOF
    :CheckVersion
    REM Check Windows Version and sets variable for _Version_ and _OSType_
    REM Enhancement will be to install dependencies required for HCK
    SET _VERSION_=
    SET _OSType_=
    SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
    FOR /F "usebackq delims=" %%i IN (`VER`) DO (
    SET _VERSION_=%%i
    SET _VERSION_=!_VERSION_:[=!
    SET _VERSION_=!_VERSION_:]=!
    REM CALL:TestStr "6.1", "!_VERSION_!", _OSType_, Windows_7_2008R2
    CALL:TestStr "5.0", "!_VERSION_!", _OSType_, Windows_2000
    CALL:TestStr "5.1", "!_VERSION_!", _OSType_, Windows_XP
    CALL:TestStr "5.2", "!_VERSION_!", _OSType_, Windows_2003
    CALL:TestStr "6.0", "!_VERSION_!", _OSType_, Windows_Vista_2008R1
    CALL:TestStr "6.1", "!_VERSION_!", _OSType_, Windows_7_2008R2
    CALL:TestStr "6.2", "!_VERSION_!", _OSType_, Windows_2012
    CALL:print OSType, !_OSType_!
    CALL:print !_Version_!
    ENDLOCAL && SET _OSType_=%_OSType_% && SET _VERSION_=%_VERSION_%
    GOTO:EOF
    :CheckInstallation
    SET _REGKEYFOUND_=
    SET KEY_NAME="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%~1"
    SET VALUE_NAME=%~2
    FOR /F "usebackq skip=4 tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
    SET ValueName=%%A
    SET ValueType=%%B
    SET ValueValue=%%C
    IF DEFINED ValueName (
    SET _REGKEYFOUND_=True
    CALL:print "REGKEY", "%~2", Name, "%ValueName%"
    CALL:print "REGKEY", "%~2", Value_Type, "%ValueType%"
    CALL:print "REGKEY", "%~2", Value_Value, "%ValueValue%"
    ) else (
    CALL:print "REGKEY", "%~2", "%KEY_NAME%\%VALUE_NAME%", "not found."
    GOTO:EOF
    :Done

  • Windows Server 2008 R2 Service Pack 1 installation failed with error code 0x800f0a12

    Hello,
    I'm facing problem to install windows server 2008 R2 SP1. I cannot install SP1. In this server have running Exchange 2010 server. to update Win2008 R2 SP1 facing the following error:
    1. Service Pack installation failed with error code 0x800f0a12.
    2. Installation Failure: Windows failed to install the following update with error 0x80070643: Windows Server 2008 R2 Service Pack 1 for x64-based Systems (KB976932).
    Please suggest

    Please run the system update readiness tool.
    http://windows.microsoft.com/en-us/windows7/What-is-the-System-Update-Readiness-Tool?SignedIn=1
    Then post the complete contents of;
    %SYSTEMROOT%\Logs\CBS\CheckSUR.log
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • When installing cc desktop app installation fails with error code 1

    when trying to install CC desktop app on macbook pro running Lion, the installer downloads the software then says installation failed error code 1 when trying to install the files…help

    Signals7 please try the steps listed in Error "Failed to Install" Creative Cloud Desktop application - http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html to install the Creative Cloud Desktop application.

  • Office 2013 SP1 fails with code 17302 - SCCM 2007 R2

    Hi,
    I am trying to deploy Office 2013, along with SP1, in the following order:
    1. Prompt to close all office apps and continue (vbs)
    2. Installation of Office 2013, using modified msp.
    3. Restart
    4. Installation of SP1 with command line /passive /norestart.
    I am doing this all through a package I created in SCCM 2007 R2.
    The first few programs works well. However, when the installation of SP1 starts, SCCM launches the program, then SP1 fails with code 17302.
    Manual installation, through command prompt, with the same switches works fine.
    The error is only when remotely deploying.
    The system is Windows 7 X86 with latest SP.
    Please help!

    Hi,
    Have you checked the log file? Does it say anything there? Also, where is the SP1 installation file stored? Since this only happens while remotely deploying, check the network or the setting of your filewall.
    By the way, you can slipstream Service Pack 1 with your Office 2013 installation media, Office 2013 will be directly installed at Service Pack 1 level, saving you the trouble of applying it afterwards. For the details, please refer to this article:
    http://www.howto-outlook.com/otherprograms/slipstreamoffice2013sp.htm
    (Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.)
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Client installation fails with error: The client version 4.00.6487.2000 does not match the MP version 2.50.4253.3000. The client wil not be installed.

    Hello World,
    I have this remote server that used to be a sms 2003 secondary site server. We uninstalled the SMS role. And used the server as an SCCM remote distribution point. We also want to install an client agent on that server machine. But no mather how i try
    to install the client i always see the same error in ccmsetup.log:
    File download 100% complete (17847296 of 17847296 bytes). ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Download complete. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Successfully downloaded client files. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Searching for available transform ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Failed to find resource file 'client.mst' ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    No transform available for this locale. Installation will proceed with no transformation. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Updated security on object C:\WINDOWS\system32\ccmsetup\. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    An MP exists on this machine. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    The client version 4.00.6487.2000 does not match the MP version 2.50.4253.3000.  The client will not be installed. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    A Fallback Status Point has not been specified.  Message with STATEID='318' will not be sent. ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    Deleted file C:\WINDOWS\system32\ccmsetup\WindowsServer2003-KB923845-x86-ENU.exe.download ccmsetup 8/18/2010 9:17:18 AM 9916 (0x26BC)
    I think the installer finds some remenance of the old SMS_MP. When looking i found some remains in IIS . I tried to remove the remains but still have the same error when installing the client. I uninstalled IIS completly. Can someone tell me where the client
    installer looks for the MP version? Would it help if i installed an SCCM MP on that server and the uninstalled it (Upgrade the MP)?

    Hello Kent, i ran the ccmclean.exe from the SMS2003 Toolkit. It informed me that my system was cleaned. I ran the sccm client setup manualy and found this in the ccmsetup.log
    MSI PROPERTIES are SMSSITECODE=AUTO CCMHTTPPORT="80" CCMHTTPSPORT="443" INSTALL=ALL ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    IsFileMicrosoftTrusted Verified file 'C:\WINDOWS\system32\ccmsetup\{4CD82FBB-0AFC-4864-A089-15364DF5F14B}\client.msi' is MS signed. ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    Running installation package
      Package:     C:\WINDOWS\system32\ccmsetup\{4CD82FBB-0AFC-4864-A089-15364DF5F14B}\client.msi
      Log:         C:\WINDOWS\system32\ccmsetup\client.msi.log
      Properties:  SMSSITECODE=AUTO CCMHTTPPORT="80" CCMHTTPSPORT="443" INSTALL=ALL ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: INSTALL.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.12C909B6_5F69_4C4D_8EC3_C225C1607933.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.A6940213_CD40_4753_8BA2_E803376DECC3.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.F65FD590_5BEA_48BE_8408_26F7244E8B61.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: WindowsFolder.8AE6A59B_5597_4D75_9BFD_7F566BF56500.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.98C5B086_7EB0_422A_B0A8_674010F525CD.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SystemFolder.4C5E03E8_F8E5_47CB_8FF4_E46FE34D35A6.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: System64Folder.597B26B2_B5D6_40FF_90DA_B8E672626B1D.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: System64Folder.541D9CA5_CE53_4DCE_903A_9B9E5A6EF2C6.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:21: SmsCheckConfig.  ccmsetup 8/18/2010 10:48:21 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SMSValidateClientInstallStamp.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: LaunchConditions. Evaluating launch conditions ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsDetectWindowsEmbeddedFBWF.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsCheckNewRemoteTools.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: AppSearch. Searching for installed applications ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CCPSearch. Searching for qualifying products ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: RMCCPSearch. Searching for qualifying products ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: ValidateProductID.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetInstallDir.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: BCDSetX64Dir.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetInstallDirFromCmdLine.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: CcmSetPrimaryFolder.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: FindRelatedProducts. Searching for related applications ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: Action 10:48:22: SmsDetectInvalidOrderColocUpgrade.  ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    MSI: An older version of the SMS Management Point is installed. Please upgrade the Management Point before attempting to upgrade the client. ccmsetup 8/18/2010 10:48:22 AM 3140 (0x0C44)
    Installation failed with error code 1603 ccmsetup 8/18/2010 10:48:23 AM 3140 (0x0C44)
    Next retry in 120 minute(s)... ccmsetup 8/18/2010 10:48:23 AM 3140 (0x0C44)
    Their must be something remaining that ccmclean can't find or can' access so i ran ccmclean /mp. This did some stuff and told me the system was clean again. I reran the client setup.
    Guess what
    It worked !
    Thanxs Kent

  • IE 11 ERROR: Neutral package installation failed (exit code = 0x00003715 (14101)).

    Below is the log.
    00:00.000: ====================================================================
    00:00.063: Started: 2014/05/29 (Y/M/D) 16:48:19.266 (local)
    00:00.094: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.125: Command line: "C:\Windows\SoftwareDistribution\Download\Install\IE11-Windows6.1-x64-en-us.exe" /WU-SILENT
    00:00.156: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.203: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.234: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.266: INFO:    ...and 11.1.0.0...
    00:00.297: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.312: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.328: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.344: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.359: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.390: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:00.671: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.780: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1299F.tmp\Spelling_en.msu.
    00:00.796: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.812: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1299F.tmp\Hyphenation_en.msu.
    00:00.843: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:03.276: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:03.323: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1299F.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1299F.tmp\IE11-support\HardwareBlockingList.xml"
    00:03.573: INFO:    Hardware support check succeeded. Installation will continue.
    00:03.588: INFO:    Windows 7 operating system detected.
    00:03.604: INFO:    Service pack major: 1
    00:03.620: INFO:    Service pack minor: 0
    00:03.635: INFO:    Service pack name:  Service Pack 1
    00:03.713: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.1.7601.17514 >= 6.2.9200.16570 (False)
    00:03.869: WARNING: Checking version for C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll.  The file does not exist.
    00:03.900: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.17514 >= 6.1.7601.17727 (False)
    00:03.932: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7600.16385 >= 6.1.7601.17617 (False)
    00:03.963: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.17514 >= 6.1.7601.17888 (False)
    00:03.978: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:04.010: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.17514 >= 6.1.7601.18010 (False)
    00:04.056: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.17514 >= 6.1.7601.18254 (False)
    00:04.119: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7600.16385 >= 6.1.7601.18247 (False)
    00:07.052: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE1299F.tmp\KB2834140_amd64.cab
    00:07.083: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE1299F.tmp\KB2834140_amd64.cab
    00:07.114: INFO:    A local copy of the KB2834140 installation package has been copied to KB2834140_amd64.MSU.
    00:07.130: INFO:    IE Setup prerequisite package for KB2670838 included: C:\Windows\TEMP\IE1299F.tmp\KB2670838_amd64.cab
    00:07.145: INFO:    IE Setup prerequisite package for KB2670838 included: C:\Windows\TEMP\IE1299F.tmp\KB2670838_amd64.cab
    00:07.176: INFO:    A local copy of the KB2670838 installation package has been copied to KB2670838_amd64.CAB.
    00:07.192: INFO:    IE Setup prerequisite package for KB2639308 included: C:\Windows\TEMP\IE1299F.tmp\KB2639308_amd64.cab
    00:07.223: INFO:    IE Setup prerequisite package for KB2639308 included: C:\Windows\TEMP\IE1299F.tmp\KB2639308_amd64.cab
    00:07.239: INFO:    A local copy of the KB2639308 installation package has been copied to KB2639308_amd64.CAB.
    00:07.270: INFO:    IE Setup prerequisite package for KB2533623 included: C:\Windows\TEMP\IE1299F.tmp\KB2533623_amd64.cab
    00:07.286: INFO:    IE Setup prerequisite package for KB2533623 included: C:\Windows\TEMP\IE1299F.tmp\KB2533623_amd64.cab
    00:07.317: INFO:    A local copy of the KB2533623 installation package has been copied to KB2533623_amd64.MSU.
    00:07.348: INFO:    IE Setup prerequisite package for KB2731771 included: C:\Windows\TEMP\IE1299F.tmp\KB2731771_amd64.cab
    00:07.364: INFO:    IE Setup prerequisite package for KB2731771 included: C:\Windows\TEMP\IE1299F.tmp\KB2731771_amd64.cab
    00:07.395: INFO:    A local copy of the KB2731771 installation package has been copied to KB2731771_amd64.CAB.
    00:07.410: INFO:    IE Setup prerequisite package for KB2729094 included: C:\Windows\TEMP\IE1299F.tmp\KB2729094_amd64.cab
    00:07.442: INFO:    IE Setup prerequisite package for KB2729094 included: C:\Windows\TEMP\IE1299F.tmp\KB2729094_amd64.cab
    00:07.473: INFO:    A local copy of the KB2729094 installation package has been copied to KB2729094_amd64.MSU.
    00:07.488: INFO:    IE Setup prerequisite package for KB2786081 included: C:\Windows\TEMP\IE1299F.tmp\KB2786081_amd64.cab
    00:07.520: INFO:    IE Setup prerequisite package for KB2786081 included: C:\Windows\TEMP\IE1299F.tmp\KB2786081_amd64.cab
    00:07.535: INFO:    A local copy of the KB2786081 installation package has been copied to KB2786081_amd64.CAB.
    00:07.566: INFO:    IE Setup prerequisite package for KB2888049 included: C:\Windows\TEMP\IE1299F.tmp\KB2888049_amd64.cab
    00:07.613: INFO:    IE Setup prerequisite package for KB2888049 included: C:\Windows\TEMP\IE1299F.tmp\KB2888049_amd64.cab
    00:07.629: INFO:    A local copy of the KB2888049 installation package has been copied to KB2888049_amd64.MSU.
    00:07.691: INFO:    IE Setup prerequisite package for KB2882822 included: C:\Windows\TEMP\IE1299F.tmp\KB2882822_amd64.cab
    00:07.800: INFO:    IE Setup prerequisite package for KB2882822 included: C:\Windows\TEMP\IE1299F.tmp\KB2882822_amd64.cab
    00:07.832: INFO:    A local copy of the KB2882822 installation package has been copied to KB2882822_amd64.MSU.
    00:07.863: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE1299F.tmp\IE-Spelling-en.cab
    00:07.894: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE1299F.tmp\IE-Hyphenation-en.cab
    00:08.066: INFO:    Waiting for 9 prerequisite downloads.
    00:08.081: INFO:    Prerequisite download processes have completed. Starting Installation of 9 prerequisites.
    00:08.128: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2834140_amd64.cab /quiet /norestart
    00:38.049: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:38.080: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2670838_amd64.cab /quiet /norestart
    02:22.117: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    02:22.164: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2639308_amd64.cab /quiet /norestart
    02:59.199: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    02:59.230: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2533623_amd64.cab /quiet /norestart
    03:38.074: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    03:38.121: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2731771_amd64.cab /quiet /norestart
    04:24.765: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    04:24.796: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2729094_amd64.cab /quiet /norestart
    04:56.652: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    04:56.683: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2786081_amd64.cab /quiet /norestart
    05:01.972: INFO:    Process exit code 0x00000000 (0) [The operation completed successfully. ]
    05:02.003: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2888049_amd64.cab /quiet /norestart
    05:38.164: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    05:38.179: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\KB2882822_amd64.cab /quiet /norestart
    06:22.702: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    06:22.749: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    06:22.780: INFO:    Waiting for 0 language pack downloads.
    06:22.796: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    06:23.030: INFO:    No reboot logic message NrApiStart(0), lParam=0x000227e8 returned 0x00000000.
    06:24.184: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    06:24.200: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    06:24.231: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1299F.tmp\IE11-neutral.Downloaded.cab
    06:24.246: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    07:49.860: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    07:49.922: INFO:    Setting registry to check if Internet Explorer is the default browser on first run: SUCCESS.
    07:49.953: INFO:    Preparing to install Spelling_en.msu using C:\Windows\TEMP\IE1299F.tmp\Spelling_en.msu
    07:50.031: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\Spelling_en\Windows6.3-KB2849696-x86.cab /quiet /norestart
    08:41.933: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    08:41.964: INFO:    Preparing to install Hyphenation_en.msu using C:\Windows\TEMP\IE1299F.tmp\Hyphenation_en.msu
    08:42.042: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\Hyphenation_en\Windows6.3-KB2849697-x86.cab /quiet /norestart
    09:32.758: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    09:32.789: INFO:    Preparing to install IE-Spelling-en.cab using C:\Windows\TEMP\IE1299F.tmp\IE-Spelling-en.cab
    09:32.820: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\IE-Spelling-en.cab /quiet /norestart
    09:49.372: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    09:49.388: INFO:    Preparing to install IE-Hyphenation-en.cab using C:\Windows\TEMP\IE1299F.tmp\IE-Hyphenation-en.cab
    09:49.419: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1299F.tmp\IE-Hyphenation-en.cab /quiet /norestart
    10:05.565: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    10:05.581: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00000bc2 returned 0x00000000.
    10:05.596: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    10:05.752: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    10:05.799: INFO:    Verifying that the Internet Explorer Optional Component is enabled.
    10:05.893: INFO:    Setup exit code: 0x00000BC2 (3010) - Installation Succeeded. Reboot required.
    10:05.986: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1299F.tmp
    10:06.033: INFO:    Unable to remove directory C:\Windows\TEMP\IE1299F.tmp, marking for deletion on reboot.
    10:06.095: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.047: Started: 2015/04/08 (Y/M/D) 16:31:22.090 (local)
    00:00.063: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.078: Command line: "C:\Windows\ccmcache\8\IE11-Windows6.1-x64-en-us.exe"  /passive /quiet /norestart
    00:00.094: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.125: INFO:    Previous version of Internet Explorer: 8.0.7601.18404
    00:00.141: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.156: INFO:    ...and 11.1.0.0...
    00:00.172: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.203: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.250: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.297: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.312: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.328: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:00.702: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.936: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1AD8.tmp\Spelling_en.msu.
    00:01.092: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:01.155: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1AD8.tmp\Hyphenation_en.msu.
    00:01.233: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:02.184: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:05.632: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:05.663: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1AD8.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1AD8.tmp\IE11-support\HardwareBlockingList.xml"
    00:06.162: INFO:    Graphics Device Information: Intel(R) HD Graphics 4000
    00:06.178: INFO:    Hardware support check succeeded. Installation will continue.
    00:06.194: INFO:    Windows 7 operating system detected.
    00:06.225: INFO:    Service pack major: 1
    00:06.240: INFO:    Service pack minor: 0
    00:06.256: INFO:    Service pack name:  Service Pack 1
    00:06.443: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:06.490: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:06.537: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18741 >= 6.1.7601.17727 (True)
    00:06.615: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:06.662: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:06.677: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:06.693: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:06.833: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18438 >= 6.1.7601.18254 (True)
    00:06.974: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:33.509: INFO:    Waiting for 0 prerequisite downloads.
    03:00.993: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    03:01.180: INFO:    Waiting for 0 language pack downloads.
    03:01.195: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    03:01.273: INFO:    No reboot logic message NrApiStart(0), lParam=0x00531188 returned 0x00000000.
    03:02.412: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    03:02.459: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    03:02.475: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1AD8.tmp\IE11-neutral.Downloaded.cab
    03:02.521: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1AD8.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    03:29.556: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    03:29.619: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    03:29.634: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    03:29.650: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    03:29.759: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    03:29.775: INFO:    Waiting for Active Setup to complete.
    03:29.806: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    03:29.837: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    03:29.853: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    03:29.900: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1AD8.tmp
    03:29.962: INFO:    Unable to remove directory C:\Windows\TEMP\IE1AD8.tmp, marking for deletion on reboot.
    03:30.040: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.109: Started: 2015/04/08 (Y/M/D) 16:52:25.541 (local)
    00:00.156: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.219: Command line: "C:\Windows\ccmcache\8\IE11-Windows6.1-x64-en-us.exe"  /passive /quiet /norestart
    00:00.328: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.375: INFO:    Previous version of Internet Explorer: 8.0.7601.18404
    00:00.421: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.484: INFO:    ...and 11.1.0.0...
    00:00.546: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.640: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.718: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.796: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.874: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.936: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:03.916: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:03.994: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1C0CE.tmp\Spelling_en.msu.
    00:04.010: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:04.041: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1C0CE.tmp\Hyphenation_en.msu.
    00:04.056: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:04.883: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:06.272: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:06.412: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1C0CE.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1C0CE.tmp\IE11-support\HardwareBlockingList.xml"
    00:07.052: INFO:    Graphics Device Information: Intel(R) HD Graphics 4000
    00:07.067: INFO:    Hardware support check succeeded. Installation will continue.
    00:07.083: INFO:    Windows 7 operating system detected.
    00:07.098: INFO:    Service pack major: 1
    00:07.114: INFO:    Service pack minor: 0
    00:07.145: INFO:    Service pack name:  Service Pack 1
    00:07.176: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:07.208: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:07.223: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18741 >= 6.1.7601.17727 (True)
    00:07.254: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:07.301: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:07.317: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:07.332: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:07.410: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18438 >= 6.1.7601.18254 (True)
    00:07.473: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:30.140: INFO:    Waiting for 0 prerequisite downloads.
    00:32.277: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    00:32.339: INFO:    Waiting for 0 language pack downloads.
    00:32.355: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    00:32.417: INFO:    No reboot logic message NrApiStart(0), lParam=0x00351188 returned 0x00000000.
    00:33.119: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:33.197: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:33.213: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1C0CE.tmp\IE11-neutral.Downloaded.cab
    00:33.244: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C0CE.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    00:52.370: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    00:52.401: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    00:52.417: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:52.463: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:52.573: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:52.744: INFO:    Waiting for Active Setup to complete.
    00:52.900: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    00:53.009: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    00:53.072: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    00:53.150: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1C0CE.tmp
    00:53.290: INFO:    Unable to remove directory C:\Windows\TEMP\IE1C0CE.tmp, marking for deletion on reboot.
    00:53.353: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.031: Started: 2015/04/08 (Y/M/D) 17:01:40.023 (local)
    00:00.062: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.093: Command line: IE11-Windows6.1-x64-en-us.exe
    00:00.109: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.140: INFO:    Previous version of Internet Explorer: 8.0.7601.18404
    00:00.171: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.218: INFO:    ...and 11.1.0.0...
    00:00.249: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.280: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.296: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.312: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.343: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.358: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:00.826: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.889: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1AF41.tmp\Spelling_en.msu.
    00:00.951: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.982: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1AF41.tmp\Hyphenation_en.msu.
    00:01.014: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:02.199: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:03.837: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:04.258: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1AF41.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1AF41.tmp\IE11-support\HardwareBlockingList.xml"
    00:05.335: INFO:    Graphics Device Information: Intel(R) HD Graphics 4000
    00:05.351: INFO:    Hardware support check succeeded. Installation will continue.
    00:05.382: INFO:    Windows 7 operating system detected.
    00:05.413: INFO:    Service pack major: 1
    00:05.475: INFO:    Service pack minor: 0
    00:05.507: INFO:    Service pack name:  Service Pack 1
    00:05.663: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:05.694: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:05.741: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18741 >= 6.1.7601.17727 (True)
    00:05.803: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:05.850: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:05.865: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:05.897: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:06.037: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18438 >= 6.1.7601.18254 (True)
    00:06.146: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:31.699: INFO:    Waiting for 0 prerequisite downloads.
    02:45.501: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    02:45.548: INFO:    Waiting for 0 language pack downloads.
    02:45.579: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    02:45.642: INFO:    No reboot logic message NrApiStart(0), lParam=0x003d2b10 returned 0x00000000.
    02:46.921: INFO:    No reboot logic message NrApiScan(1), lParam=0x80070005 returned 0x00000000.
    02:46.999: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    02:47.030: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1AF41.tmp\IE11-neutral.Downloaded.cab
    02:47.061: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1AF41.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    03:06.842: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    03:06.858: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    03:06.889: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    03:07.092: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    03:07.653: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    03:07.778: INFO:    Waiting for Active Setup to complete.
    03:07.981: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    03:14.705: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    03:14.767: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1AF41.tmp
    03:14.861: INFO:    Unable to remove directory C:\Windows\TEMP\IE1AF41.tmp, marking for deletion on reboot.
    03:14.923: INFO:    Released Internet Explorer Installer Mutex

    Hi,
    We hope your issue has been resolved, if you've found solution by yourself. We would appreciate it if you could share with us and we will mark it as answer.
    I am looking to your log find that it's trying to launch DISM from c:\windows\SysNative. You might try build a symbolic link from c:\windows\system32 (where DISM lives) to the non-existent path c:\windows\SysNative. Then check the issue again.
    To build a symbolic link, try workaround as Brian's reply to this thread.
     http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_update/i-get-error-9c59-when-updating-internet-explorer/03d4473a-867b-44a5-9a37-913e9a5879cf?page=8&msgId=afe85da0-36e0-4160-860b-d2973e78c8b9
    Regards,
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • SoundBlaster X-Fi Driver Installation Fails After Moving Soundcard to New Slot

    NSoundBlaster X-Fi Driver Installation Fails After Moving Soundcard to New Slot4 I recently moved my X-Fi Elite Pro soundcard to a different PCI slot to accommodate my new large PCIE graphics card.
    Prior to moving the card, my?original SoundBlaster install went fine without any trouble. When I booted up after relocating the card,?it was not detected at all. So I uninstalled my SoundBlaster driver software and?rebooted the computer?thinking that was necessary to clear any hardware configuration settings from the old install. This made no difference. I then discovered my card was not seated properly and corrected it.
    Next I installed the SoundBlaster driver software. The installation proceeded and finished with a request to restart the computer. Once I did, the computer detects my card and starts the hardware installation wizard asking if I want Windows to search online for driver software. It does not recognize the just installed SoundBlaster driver installation. I have a dual boot setup and this happens in both WinXP Pro and Vista 32 Home Premium.
    What's wrong here?

    Forget it folks...couldn't wait for any suggestions so I just cleaned off my hard dri've and reinstalled everything. Works fine.

  • Flash builder 4 Verifying payload integerity : Failed with code 1

    where i install flash builder 4 on windows servers 2003 32x
    got this error
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 2 warning(s)
    WARNING: Payload {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX is already installed and the session payload {5EE868D6-7B6B-49ee-AF60-09B1358AFFD7} Adobe Flash Player 10 ActiveX has no upgrage/conflict relationship with it.
    WARNING: Payload {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin is already installed and the session payload {FB7F30B6-BFBF-4d2c-9F61-B5533659ACBE} Adobe Flash Player 10 Plugin has no upgrage/conflict relationship with it.
    ERROR: Verifying payload integerity : Failed with code 1
    ERROR: Unable to get root from inChildPath
    who can help me,i'll thank you very much

    Hi,
    Please deselect the option of Flash Player in the installer before beginning the installation and see if installation is successful. (Please uninstall Flash Builder and reboot before trying to reinstall)
    If that doesn't help, please run the CS5 clean tool with option to uninstall Flash player and FB, reboot after cleaning and now reinstall FB (selecting Flash Player also)
    CS5 Clean Tool can be downloaded from http://www.adobe.com/support/contact/cs5clean.html
    Please let us know whether this helps.
    Thanks,
    Deeptika

  • Windows 7 Service Pack 1 installation fail, error code : Error_Access_Denied(0x80070005)

    Hi All,
    Windows 7 SP1 installs fail with error code: Error_Access_Denied (0x80070005).
    Windows 7 Professional 32 bit.
    1. Remove Symantec Endpoint Protection.
    2. Install System Update Readiness Tool
    3. Install Windows SP 1  and still unable to install.
    Anyone have seen this issue? I have uploaded the CBS log file here the below link.
    https://onedrive.live.com/redir?resid=7627981B9D84362B%211868

    Hi,
    Do you have any other antivirus or antispyware programs installed? Make sure to temporarily turn off them.
    Run Troubleshootor under Action Center\Troubleshooting\System and Security, and see if we can find something useful.
    Run sfc/scannow and check if can fix something.
    Or try to clear the softwaredistribute folder, then test issue again.
    Stopping the Automatic Updates service.
    Deleting the Windows\SoftwareDistribution folder.
    Restarting the Automatic Updates service.
    Yolanda Zhu
    TechNet Community Support

  • IE 11 Neutral package installation failed (exit code = 0x800f081e (2148468766)).

    Hi,
    We are upgrading to IE11 on Windows 7 SP1(IE 8 or IE 9 installed.)Many of the machine am getting below error.
    Please help me to resolve the issue asap.
    00:53.180: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab
    00:53.212: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart
    00:55.489: INFO:    Process 'C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart' exited with exit code 0x800F081E (-2146498530)
    00:55.521: ERROR:   Neutral package installation failed (exit code = 0x800f081e (2148468766)).
    00:55.552: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:55.583: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:55.614: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:55.661: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    00:55.708: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    01:00.793: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup0.sqm" with error: 2147500036
    01:00.887: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1C3EE.tmp
    01:00.934: INFO:    Unable to remove directory C:\Windows\TEMP\IE1C3EE.tmp, marking for deletion on reboot.
    01:01.027: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.187: Started: 2013/11/27 (Y/M/D) 13:38:03.009 (local)
    00:00.296: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.358: Command line: "C:\Windows\SoftwareDistribution\Download\Install\IE11-Windows6.1-x64-en-us.exe" /WSUS
    00:00.452: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.514: INFO:    Previous version of Internet Explorer: 9.0.8112.16520
    00:00.561: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.624: INFO:    ...and 11.1.0.0...
    00:00.702: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.795: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.873: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.936: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:01.014: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:01.185: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:07.254: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:07.394: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE17800.tmp\Spelling_en.msu.
    00:07.519: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:07.597: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE17800.tmp\Hyphenation_en.msu.
    00:07.691: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:09.126: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE17800.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE17800.tmp\HardwareBlockingList.xml"
    00:09.906: INFO:    Hardware support check succeeded. Installation will continue.
    00:10.015: INFO:    Windows 7 operating system detected.
    00:10.077: INFO:    Service pack major: 1
    00:10.155: INFO:    Service pack minor: 0
    00:10.233: INFO:    Service pack name:  Service Pack 1
    00:10.343: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.1.7601.17514 >= 6.2.9200.16570 (False)
    00:10.436: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:10.545: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:10.670: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:10.764: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:10.857: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:10.920: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:11.045: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18254 >= 6.1.7601.18254 (True)
    00:11.201: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:14.539: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.648: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.679: INFO:    A local copy of the KB2834140 installation package has been copied to KB2834140_amd64.MSU.
    00:14.742: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Spelling-en.cab
    00:14.820: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Hyphenation-en.cab
    00:14.898: INFO:    Waiting for 1 prerequisite downloads.
    00:14.976: INFO:    Prerequisite download processes have completed. Starting Installation of 1 prerequisites.
    00:15.163: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-p

    Hi,
    As per log all update installed fine and find the below log file..We are deploying IE package via SCCM deployment tool.We are not using any WSUS server.Downloaded setup.exe from Microsoft website and installing silently IE11-Windows6.1-x64-en-us.exe /passive
    /quiet /norestart
    00:50.139: INFO:    Download for KB2834140 initiated. Downloading http://go.microsoft.com/fwlink/?LinkID=303935 -> KB2834140_amd64.MSU.
    00:50.170: INFO:    Download for KB2729094 initiated. Downloading http://go.microsoft.com/fwlink/?LinkID=258385 -> KB2729094_amd64.MSU.
    00:50.217: INFO:    Waiting for 2 prerequisite downloads.
    01:05.567: INFO:    Prerequisite download processes have completed. Starting Installation of 2 prerequisites.
    01:05.770: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE17C40.tmp\KB2834140\Windows6.1-KB2834140-v2-x64.cab /quiet /norestart
    01:50.308: INFO:    Process exit code 0x00000000 (0) [The operation completed successfully. ]
    01:50.823: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE17C40.tmp\KB2729094\Windows6.1-KB2729094-v2-x64.cab /quiet /norestart
    02:57.685: INFO:    Process exit code 0x00000000 (0) [The operation completed successfully. ]
    03:33.628: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    03:33.706: INFO:    Waiting for 0 language pack downloads.
    03:33.721: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    03:33.799: INFO:    No reboot logic message NrApiStart(0), lParam=0x00362bc0 returned 0x00000000.
    03:35.734: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    03:35.812: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    03:35.827: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE17C40.tmp\IE11-neutral.Downloaded.cab
    03:35.952: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE17C40.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    04:03.845: INFO:    Process 'C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE17C40.tmp\IE11-neutral.Downloaded.cab /quiet /norestart' exited with exit code 0x800F081E (-2146498530)
    04:04.251: ERROR:   Neutral package installation failed (exit code = 0x800f081e (2148468766)).
    04:04.313: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    04:04.391: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    04:04.563: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    04:04.656: INFO:    Waiting for Active Setup to complete.
    04:04.734: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    04:04.797: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    04:04.875: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    04:05.327: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    04:10.428: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup0.sqm" with error: 2147500036
    04:10.569: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup1.sqm" with error: 2147500036
    04:10.662: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup2.sqm" with error: 2147500036
    04:10.787: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup3.sqm" with error: 2147500036
    04:10.850: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup4.sqm" with error: 2147500036
    04:10.943: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup5.sqm" with error: 2147500036
    04:11.021: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup6.sqm" with error: 2147500036
    04:11.099: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup7.sqm" with error: 2147500036
    04:11.177: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup8.sqm" with error: 2147500036
    04:11.318: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup9.sqm" with error: 2147500036
    04:11.427: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE17C40.tmp
    04:12.145: INFO:    Unable to remove directory C:\Windows\TEMP\IE17C40.tmp, marking for deletion on reboot.
    04:12.410: INFO:    Released Internet Explorer Installer Mutex

  • Re: Satellite P100-160 - Display driver installation failed

    Satellite P100-160, PSPAAE, vista 32 bit,
    Today Aero wasn't working and not available in graphics properties. Installed latest display driver from Toshiba UK site, Intel 15.0.1.1114. This version was actually older than my current driver but I thought that maybe as it was the only one availabel that it must be correct.
    The driver install failed with an error (no details just 'an error has occurred'). Now I have no aero and my display resolution cant be set above 1280x800 - should be 1440x900
    To say I am pisseed would be an understatement. Can anyone help? thanks

    Hey,
    If Aero is not available I dont think its display driver problem
    Anyway, have you removed the old display driver before you installed the new one? Go to device manager > right click on graphic card > uninstall. After reboot the display driver should be uninstalled and you can start with display driver installation.
    If you install drivers make sure you are logged in as Administrator and antivirus/firewall is disabled. Restart once again and you should be able to choose the native screen resolution now.
    Check this!!!

  • IE11 Neutral package installation failed (exit code = 0x800f081e (2148468766)).

    00:53.180: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab
    00:53.212: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart
    00:55.489: INFO:    Process 'C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart' exited with exit code 0x800F081E (-2146498530)
    00:55.521: ERROR:   Neutral package installation failed (exit code = 0x800f081e (2148468766)).
    00:55.552: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:55.583: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:55.614: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:55.661: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    00:55.708: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    00:55.739: INFO:    Scheduling upload to IE SQM server:
    01:00.793: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup0.sqm" with error: 2147500036
    01:00.887: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1C3EE.tmp
    01:00.934: INFO:    Unable to remove directory C:\Windows\TEMP\IE1C3EE.tmp, marking for deletion on reboot.
    01:01.027: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.187: Started: 2013/11/27 (Y/M/D) 13:38:03.009 (local)
    00:00.296: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.358: Command line: "C:\Windows\SoftwareDistribution\Download\Install\IE11-Windows6.1-x64-en-us.exe" /WSUS
    00:00.452: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.514: INFO:    Previous version of Internet Explorer: 9.0.8112.16520
    00:00.561: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.624: INFO:    ...and 11.1.0.0...
    00:00.702: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.795: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.873: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.936: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:01.014: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:01.185: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:07.254: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:07.394: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE17800.tmp\Spelling_en.msu.
    00:07.519: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:07.597: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE17800.tmp\Hyphenation_en.msu.
    00:07.691: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:09.126: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE17800.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE17800.tmp\HardwareBlockingList.xml"
    00:09.906: INFO:    Hardware support check succeeded. Installation will continue.
    00:10.015: INFO:    Windows 7 operating system detected.
    00:10.077: INFO:    Service pack major: 1
    00:10.155: INFO:    Service pack minor: 0
    00:10.233: INFO:    Service pack name:  Service Pack 1
    00:10.343: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.1.7601.17514 >= 6.2.9200.16570 (False)
    00:10.436: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:10.545: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:10.670: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:10.764: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:10.857: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:10.920: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:11.045: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18254 >= 6.1.7601.18254 (True)
    00:11.201: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:14.539: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.648: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.679: INFO:    A local copy of the KB2834140 installation package has been copied to KB2834140_amd64.MSU.
    00:14.742: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Spelling-en.cab
    00:14.820: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Hyphenation-en.cab
    00:14.898: INFO:    Waiting for 1 prerequisite downloads.
    00:14.976: INFO:    Prerequisite download processes have completed. Starting Installation of 1 prerequisites.
    00:15.163: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-p

    00:53.180: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab
    00:53.212: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart
    00:55.489: INFO:    Process 'C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C3EE.tmp\IE11-neutral.Extracted.cab /quiet /norestart' exited with exit code 0x800F081E (-2146498530)
    00:55.521: ERROR:   Neutral package installation failed (exit code = 0x800f081e (2148468766)).
    00:55.552: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:55.583: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:55.614: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:55.661: ERROR:   Couldn't create setup troubleshooting shortcut on the desktop. HRESULT: 0x80070002,
    00:55.708: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    00:55.739: INFO:    Scheduling upload to IE SQM server:
    01:00.793: ERROR:   SQM Upload failed while uploading "C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\SQM\iesqmdata_setup0.sqm" with error: 2147500036
    01:00.887: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1C3EE.tmp
    01:00.934: INFO:    Unable to remove directory C:\Windows\TEMP\IE1C3EE.tmp, marking for deletion on reboot.
    01:01.027: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.187: Started: 2013/11/27 (Y/M/D) 13:38:03.009 (local)
    00:00.296: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.358: Command line: "C:\Windows\SoftwareDistribution\Download\Install\IE11-Windows6.1-x64-en-us.exe" /WSUS
    00:00.452: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.514: INFO:    Previous version of Internet Explorer: 9.0.8112.16520
    00:00.561: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.624: INFO:    ...and 11.1.0.0...
    00:00.702: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.795: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.873: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.936: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:01.014: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:01.185: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:07.254: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:07.394: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE17800.tmp\Spelling_en.msu.
    00:07.519: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:07.597: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE17800.tmp\Hyphenation_en.msu.
    00:07.691: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:09.126: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE17800.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE17800.tmp\HardwareBlockingList.xml"
    00:09.906: INFO:    Hardware support check succeeded. Installation will continue.
    00:10.015: INFO:    Windows 7 operating system detected.
    00:10.077: INFO:    Service pack major: 1
    00:10.155: INFO:    Service pack minor: 0
    00:10.233: INFO:    Service pack name:  Service Pack 1
    00:10.343: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.1.7601.17514 >= 6.2.9200.16570 (False)
    00:10.436: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16426 (True)
    00:10.545: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:10.670: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18229 >= 6.1.7601.17617 (True)
    00:10.764: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:10.857: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:10.920: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:11.045: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18254 >= 6.1.7601.18254 (True)
    00:11.201: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:14.539: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.648: INFO:    IE Setup prerequisite package for KB2834140 included: C:\Windows\TEMP\IE17800.tmp\KB2834140_amd64.cab
    00:14.679: INFO:    A local copy of the KB2834140 installation package has been copied to KB2834140_amd64.MSU.
    00:14.742: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Spelling-en.cab
    00:14.820: INFO:    IE Setup Language pack included: C:\Windows\TEMP\IE17800.tmp\IE-Hyphenation-en.cab
    00:14.898: INFO:    Waiting for 1 prerequisite downloads.
    00:14.976: INFO:    Prerequisite download processes have completed. Starting Installation of 1 prerequisites.
    00:15.163: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-p

  • QuickTime installation failed: Error Code : 1607

    I just DL'd and installed the iTunes 6.0.1.3 upgrade. At the end of the installation, just before announcing success, I got this Quixotic message in a small dialogue box:
    QuickTime installation failed:
    Error Code : 1607
    This is on Windows XP SP1.

    hi Daniel!
    okay, here is a good place to start with a
    b standard
    1607 (you're looking for the Scenario one advice since you're only at SP1):
    http://docs.info.apple.com/article.html?artnum=93976
    ... and the InstallShield Tips and Pointers are also useful:
    http://consumer.installshield.com/faq.asp#ts
    b but if you've recently installed an MS Security Hotfix,
    check to see if this is relevant to your situation:
    Matt Bennett1, "iTunes 6 - Error 1607 - Solution", 11:01am Oct 18, 2005 CDT
    keep us posted.
    love, b

Maybe you are looking for

  • How can I stop iCal displaying a timed event as an all day event?

    Since updating to Lion and hence to Mountain Lion when I add a timed event in ical which continues past 04.00 the following morning it is displayed as an all day event covering both days. As I work shifts which involve night turns this is very annoyi

  • Vmtoolsd not starting correctly when started as service

    Hello, I have installed Archlinux in a VMware virtual machine and tried to follow the instructions in the wiki but there are a few things which I don't understand. If I enable vmtoolsd in systemd systemctl enable vmtoolsd the system will pause for a

  • Dial-up dropping.

    My brother has a Toshiba laptop that he uses Verizon dial-up service with. It will drop connection, will not connect, and pauses, the Vista connection Icon will change from Local and Internet connection to local connection and some times back to loca

  • Foreign key mapped to a unique constraint

    ok here is the issue create table parent(col1 char, col2 char); alter table parent add constraint pk_parent primary key(col1); alter table parent add constraint uk_parent unique(col1,col2); insert into parent values('A','7'); *1 row created.* create

  • Syncing pictures toa Logic song

    I think it's possible but I haven't made it yet. How I can sync some pictures (not a movie) in some points of a song so that I can view them in that precise moments on playback? Thanks Fulvio