Troubleshooting UNAV package installs during SCCM TS

We use driver packages filtered by WMI to install drivers and we have never had any luck installing the UNAV driver.  So we are trying to install the UNAV setup.exe during the post windows install portion of the Task Sequence 
It's a standard program running a batch that reads "%~dp0setup.exe -s -sms" My issue is  it fails during the TS but I see no error trapping in the smsts.log.
Any help on installing UNAV setup.exe in a SCCM TS or point me in the direction of how to troubleshoot woudl be appreciated.
Below is a portion of the TS pertaining to the package:
Parsing step node: INSTALL(P) - NEW UNAV Mouse for T540p and X240 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Description: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
ContinueOnError: true TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
SuccessCodeList: 0 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
A condition is associated with the step found TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Found and operator. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
There are 1 operands TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
**Processing operator node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Found or operator. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
There are 2 operands TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
**Processing expression node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Found SMS_TaskSequence_WMIConditionExpression expression. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
**In ProcessBuiltInCondition node: expression TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
There are 2 operands in the built in action TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Operand Namespace=root\cimv2 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Operand Query=SELECT * FROM Win32_ComputerSystem WHERE Model = '20BFS1GJ00' TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Successfully added 3 condition parameters TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
**Processing expression node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Found SMS_TaskSequence_WMIConditionExpression expression. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
**In ProcessBuiltInCondition node: expression TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
There are 2 operands in the built in action TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Operand Namespace=root\cimv2 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Operand Query=SELECT * FROM Win32_ComputerSystem WHERE Model = '20AMS37500' TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Successfully added 3 condition parameters TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Disable: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Run in attribute: FullOS TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Timeout: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
DefaultVarlist found TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Variable name: _SMSSWDProgramName TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Action command line: smsswd.exe /pkg:CAS000AA /install /basevar: /continueOnError: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Adding instruction at 194 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Processed all elements TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Adding end group instruction at 195 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
The next instruction after group will be at 196 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
Processing group TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)

What specific UNAV package are you trying to install?  What OS?  What machine? 

Similar Messages

  • Automate USER BASED PACKAGE installations in SCCM 2012

    Hi All,
    I want to automate the installation of software(in my case a user based package) from the Application Catalog.
    Here is just some general information:
    1. All software(Applications and Packages) deployed to Device Colllections will be published in Software Center
    2. All software(Applications and Packages) deployed to User Based Collections will be published in the Application Catalog
    3. Once software has been deployed from the Application Catalog, it is also available/visible in Software Centre .. this could be confusing for (scripted) test purposes!
    To Automate installations i tested the following (Powershell) methods:
    Methode 1 - Install Device Based Packages (This works)
    $SoftwareCenter = New-Object -ComObject UIResource.UIResourceMgr
    # to show applications
    $Application = $SoftwareCenter.GetAvailableApplications() | where {$_.name -like $APPNAME}
    # to install an application
    $SoftwareCenter.ExecuteProgram($Application.id, $Application.PackageId, $true)
    (once an User Based Package has been installed from the Application Catalog, it will be shown in the results of this method .. but initially it don't!!)
    Method 2 - Install Device based Applications (This works)
    Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$True,$False,1,1
    Method 3 - Install User based Applications
    Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$False,$False,1,1
    (once an User Based Application has been installed from the Application Catalog, this method can be used .. but initially it can't!!)
    Method 4 - Install User Based Packages (NOT WORKING)
    This solution is based on an (scripted) installation from the Application Catalog. Information can be found on the following sites:
    http://blogs.technet.com/b/configmgrteam/archive/2012/09/19/extending-the-application-catalog-in-system-center-2012-configuration-manager.aspx
    http://allthingsconfigmgr.wordpress.com/2012/10/02/application-catalog-uncovered/#more-284
    You can see the usable operations/methodes, by using the following URL in your SCCM 2012 environment:
    http://YOURSITE/CMApplicationCatalog/ApplicationViewService.asmx
    The method i tried for an installation part is 'installapplication', see example below:
    $service.Installapplication($appid, $deviceid, $null)
    This syntax is correct because it's giving a result that indicates the my command was correct(when i change the variables it produces an error), but that's it ... no application is installed.
    For the record: the operations/methods 'RequestApplicationForUser and GetApplications' are working fine.
    There is also log file 'ServicePortalWebService.log' on the Application Catalog Server in
    C:\Program Files\SMS_CCM\CMApplicationCatalogSvc\Logs, where i can see that Installation call is (correctly) be done.
    To be short:
    Is there anybody who can tell me how to automate (with Powershell) an USER BASED PACKAGE installation?
    With kind regards,
    Hayo Veenstra

    Thanks for your reaction.
    What i want is creating shortcuts in the startmenu of a user, that initiates a SCCM software installation. We also use this method for our SCCM 2007 environment by initating advertisments. I do not want a required user deployments, because when that user
    logs on on another machine (for a short time) .. all his/her software will be deployed. So i do not want to install unnescessary software .. only what a user initiates.
    Do you have other suggestions?
    I'm not sure about the shortcuts.  But, as for required deployments to users installing on all machines they log onto:  Not if you have User Device Affinity running for you.  You can set a requirement in the application to only install on a user's
    primary device.  Another option that we often deploy is to use App-V to deploy a virtual version of that app if the device they logged onto is not their primary.  When they log off, it goes away.  This is all done using User Device Affinity. 
    This is new in 2012. 

  • Troubleshoot partial package installs

    # uname -a
    SunOS xxxxxxxx 5.8 sun4u sparc SUNW,Netra-240
    # pkginfo -p | wc -l
    12
    The failed packages are all pretty much font packages.
    But I'm unable to start VNC due to related X problems.
    Example package...
    # pkginfo -p | grep SUNWxwoft
    system SUNWxwoft X Window System optional fonts
    # pkgadd SUNWxwoft
    [ Already installed, will attempt to override. ]
    Then I get a bunch of errors...
    &#91; verifying class <fontsdir> &#93;
    ERROR: attribute verification of
    </usr/openwin/lib/X11/fonts/100dpi/fonts.dir> failed
    pathname does not exist
    &#91; verifying class <fontsalias> &#93;
    ERROR: attribute verification of
    </usr/openwin/lib/X11/fonts/100dpi/fonts.alias.all> failed
    pathname does not exist
    How do I go about troubleshooting WHY they failed?
    The directory /usr/openwin/lib/X11/fonts/100dpi/ exists.
    (And so do all of the other directories that failed, too.)

    Yes, I think so. There is no functionality (that I know of) that will advise non-global zones of pkg installations. The proper way to handle this is by using inherited filesystems
    via LOFI.
    And, really, this isn't missing functionality... I wouldn't call it a feature, per se, but it's the right thing to do. There is no reason to inflict a new package into all of my zones just because I need a new package for this or that. Think of it as a security concern.
    There should be any reason you can't just add the pkg into the non-global zone itself if it's going to install into a non-inherited directory. I do this all the time for QA purposes.
    benr.

  • Package installation error during zone installation

    Hi All
    I am getting a lot of errors from package installations during zone installation
    Installation of these packages generated errors: <SUNWcsu SUNWckr SUNWgnome-base-libs SUNWgnome-audio SUNWtltk SUNWzoner SUNWzfskr SUNWzfsr SUNWzfsu SUNWzoneu SUNWtoo SUNWssad SUNWusb SUNWtavor SUNWudapltu SUNWopenssl-libraries SUNWwbsup SUNWPython SUNWbip SUNWxge SUNWxcu4 SUNWxcu6 SUNWcry SUNWntp4u SUNWqlc SUNWqlcu SUNWgnome-im-client SUNWgnome-img-editor SUNWsndmr SUNWsndmu SUNWsshcu SUNWsshdu SUNWsshu SUNWgnome-text-editor>
    When I look into /var/sadm/system/logs/install_log in the zone, I am seeing the erros are relate to file corruption:
    *** package <SUNWckr> failed to install - interrupted:
    pkgadd: ERROR: packaging file </var/sadm/pkg/SUNWckr/save/pspool/SUNWckr/pkginfo
    is corruptfile size <17259> expected <17199> actual
    *** package <SUNWsshcu> failed to install - interrupted:
    pkgadd: ERROR: packaging file </var/sadm/pkg/SUNWsshcu/save/pspool/SUNWsshcu/pkg
    info> is corrupt
    file size <6235> expected <7087> actual
    as an example, the pkginfo file referred to above has size 17199 and 7087 in the global zone so why is it thinking it should be 17259 and 6235? Could this be due to the patching done before the zone creation?
    thanks

    I just realized what is causing this but no sure what is the best way to get around this:
    we have another home grown package the overwrite the problematic files reported thay lay on top of the sun packages and zone installation does not like that. The original file size and check sum is checked against what was installed in the global zone and hence the warning messages.
    I would have thought it should pick the most updated ones especially it was overwritten by another package (and therefore it should have the updated information in the package database)?

  • Palm resets during Hotsync of Package Installer

    Today, my Treo 755p started resetting during Hotsync, specifically the "Package Installer" step. If I uncheck Package Installer, Hotsync works fine. I'm using version 6.2.2 of the Palm Desktop with Vista. On my computer, the Package and Install folders are both empty. I did install some files a couple days ago, but sucessfully hotsynched after the installation.
    I also tried to sync on another computer that I hotsync to only occassionally, and the same thing happened, suggesting the problem is on the Treo itself. I was hoping I could resolve this problem without a hard reset, as it seems my Treo isn't quite 100% as before the reset.
    Any suggestions?
    Post relates to: Treo 755p (Verizon)

    Try a 10 second soft reset by taking out the battery for at least 10 seconds. This allows the device to power off completely, like a shutdown on a PC.
    If that doesn't work, try renaming the backup folder on the PC in your username folder to backup.old. After the rename, sync the Treo and esee if you get the same error. If you do, you will need to hard reset the Treo.
    Click on the following link to the kb.palm.com webpage for the article regarding find your device's User Folder on your desktop computer.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=26674
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://www.palm.com/us/support/treo/treo755pverizon/
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Post relates to: Palm i705

  • Creative Cloud: "Build" MSI Hangs During SCCM OSD Task Sequence Installation

    I wanted to share problem and solution I found when deploying Creative Cloud Packager-created packages/application using SCCM 2012 R2.  I encountered this problem packaging this as both a Package and as an Application in SCCM.
    When installing the software through SCCM Software Center onto a client, Software Center would close right as the installation of the "Build" folder MSI completed.  This is abnormal behavior.
    When installing the application as part of an OSD Task Sequence, the software would get installed (as shown by logs) but SCCM would hang forever at the "Installing Application" step.
    I tried all sorts of different settings in SCCM and with the MSIEXEC command line and eventually traced it to the Reboot Manager functionality in MSIEXEC that will close and attempt to restart processes using files that the installer needs. Reboot Manager clobbered part of SCCM and in the Task Sequence, the connection between SCCM and the installer was broken.
    The solution is to pass the property "MSIRESTARTMANAGERCONTROL=Disable" along the command line when calling MSIEXEC on the Build folder MSI file.  This setting disabled Restart Manager so it didn't mess up SCCM.  Once I did this, my Software Center installs and OSD Task Sequences ran as intended.
    For reference, I used the REBOOT=ReallySuppress property for reboots and let SCCM determine what to do with reboots based on the return code.  My testing was done with Windows 8.1 Enterprise x64.

    Like said, did you configure my proposal: "Configuration Manager client will force a mandatory device
    restart" ? After you've configured that, update your deployment type manually and remove the old revisions of the application and try running the TS again. I'm guessing you're a little bit too fast on your doings so the ConfigMgr doesn't play a long very
    nicely...
    The TS stops because of your Hard Reboot (exit code 1641), I've seen this before and I configured my application so that ConfigMgr client will force device restart and that fixed my problem. Although, also my application is the last one in the TS, but still,
    the TS continues after the reboot.
    Btw. have you tried changing your command line to:
    msiexec.exe /i cd-ord.msi TRANSFORMS=sv-se.mst MVLICENSE_KEY=xxxxxxxxxxxxxxxxx /L*V "%temp%\cdord.log" /qn
    /norestart

  • Some package installation error during zone installation steps.....

    hi,
    i am totally new to this technology.
    i had created 3 Zone's on X86 Sun Fire X4270 M2 Hardware (OS - Solaris 10 update 9)
    & during OS Installation i had selected Software installations using the Entire Distribution.
    every thing worked fine but during zone installation steps, got some package installation error (refer the below output)
    bash-3.00# zoneadm -z OFSMU-PWM-zone1 install
    Preparing to install zone <OFSMU-PWM-zone1>.
    Creating list of files to copy from the global zone.
    Copying <158400> files to the zone.
    Initializing zone product registry.
    Determining zone package initialization order.
    Preparing to initialize <1240> packages on the zone.
    Initialized <1240> packages on zone.
    Zone <OFSMU-PWM-zone1> is initialized.
    Installation of these packages generated errors: <SUNWpostgr-82-libs SUNWpostgr-82-devel SUNWpostgr-83-server-data-root SUNWpostgr-82-server SUNWpostgr-82-contrib SUNWpostgr-82-client SUNWpostgr-82-server-data-root>
    The file </zone/OFSMU-PWM-zone1/root/var/sadm/system/logs/install_log> contains a log of the zone installation.
    i checked the log file "/zone/OFSMU-PWM-zone1/root/var/sadm/system/logs/install_log"
    its show below error's
    *** package <SUNWpostgr-82-libs> failed to install with fatal errors:
    *** package <SUNWpostgr-82-devel> failed to install with fatal errors:
    need your help my friends..
    thanks in advance....
    Edited by: Raja Kondar on Dec 9, 2010 11:59 AM

    hi DR,
    thnks for reply..
    but i can see that "postgres" already exist in the system as user &l group.
    postgres:x:90:90:PostgreSQL Reserved UID:/:/usr/bin/pfksh
    also the failed packages duirng zone creation steps are already installed in the global zone..
    is thr any other way to resolve this issue....
    Edited by: Raja Kondar on Dec 16, 2010 11:00 AM

  • 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

  • Fasten the Process of MDT UDI OD Installation in SCCM 2012 R2 OSD

    Hi,
    I have implemented MDT UDI Task Sequence in SCCM 2012 R2 OSD. The issue  which I am facing is the UDI Installation progress is very slow. it is taking around 2 hours to complete the whole Installation. 
    Is there any way to fasten the Process of MDT UDI OD Installation in SCCM 2012 R2 OSD.
    Thanks & Regards,
    Sanjay Dubey

    Application installs can take awhile - it depends on what applications you're installing, and how many.  For instance, installing Office is clearly going to take longer than say 7-Zip.  How many applications are you installing during a normal OS
    deployment?  You can check the AppEnforce.log to see how long an application(s) is taking to install, as the start and end times are recorded.  
    As for the MDT Settings package, how many times are you calling this package?  My task sequence only calls it 5 times, and one of them is before you even get the UDI wizard, while the second and third is an either/or situation, depending on whether
    you do a refresh or a fresh PC build. 

  • Office 365 ProPlus App-V 5.0 Package installs Lync, Outlook, Infopath and Onenote even though they are not selected for publishing

    I have created an App-V 5.0 Package for Office 365 ProPlus using the documentation provided here:
    http://technet.microsoft.com/en-us/library/jj219422.aspx
    I am able to load the App-V Package into my SCCM 2012 SP1 environment and deploy the package to a test machine
    Within SCCM, I have configured the deployment type to only select a couple of applications.  Notice that Lync, Outlook, Infopath and Onenote are not selected.
    http://i.imgur.com/1eMxUlY.jpg
    For my deployment type, I only selected Word, Excel and Powerpoint.  Looking at my test machine, those 3 applications now show up in my start screen.
    http://i.imgur.com/amZmxAT.jpg
    I don't see any of the other Office applications be default on my start screen, so I would think all looks good.  If I type another Office application, lets say access at the start screen I get, "No apps match your search."
    http://i.imgur.com/fxbWEvb.jpg
    But if I type Lync, Outlook, Infopath or Onenote, it shows me that those applications are available, and I can launch them as an App-V application just as I could Excel, Word or Powerpoint, the applications that I wanted to have available.
    This is not what I was expecting when I went through the trouble to create an App-V package.  It looks like almost all of the apps become available on my client machine, all App-V is doing is making the application button in the start screen a little
    harder to find.
    What is interesting is that for the applications I did want published, I can search for them by just entering a few letters of the application name, and they show up with the 2013 version label, see below for an example search for Word.
    http://i.imgur.com/0LeS05z.jpg
    For the applications that I did not publish but still show up on my client, I have to type in the full name of the application for the launch button to come up.  For example, I can't type lyn and expect to see Lync, but if i type lync I will get an
    option to launch the application.  The same goes for Outlook, Infopath and Onenote, and when you do type in the full namke of the app, it doesn't show the version number like Word does as Word 2013, it just shows Lync, or Outlook, or Infopath, or
    Onenote.
    http://i.imgur.com/QV1afuc.jpg
    vs
    http://i.imgur.com/PxgSmUc.jpg
    Can anyone from Microsoft confirm that this is expected behavior.  If this is to be expected this is pretty disappointing, because a main point of the App-V package is it is the only way to limit which applications are deployed via Office 365 ProPlus
    but from what I can tell, it really isn't limiting anything beyond the start screen for most cases.

    So it looks like the config xml files are the best option
    http://blogs.technet.com/b/office_resource_kit/archive/2013/12/02/announcing-app-v-5-0-sp2-support-for-office-2013-volume-licensing-editions.aspx
    You can now use the Deployment Configuration file to configure the Office installation. One question I often get is, “How do I disable msaccess.exe or infopath.exe from an Office install if I am not using the MSI package?” This can be done by modifying the
    Deployment Configuration file in App-V with entries like the following:
    <Application Id="[(AppVPackageRoot}]\office15\MSACCESS.EXE" Enabled="false">
      <VisualElements>
        <Name>Access 2013</Name>
        <Icon />
        <Description />
      </VisualElements>
    </Application>
    That will prevent App-V from publishing msaccess.exe on the system and/or you can remove any undesired application shortcuts from publishing on the targeted computer using the shortcuts properties by deleting or commenting them out. Once you’ve configured your
    Deployment and User Configuration files, you’ll have everything you need to import the packages into your App-V environment to start testing.

  • 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]

  • IE 10 Installation Fails - Neutral package installation failed

    IE 10 will not install in Windows 7 64 bit SP1
    I go past the prompt that says "restarting programs".  Then the installation fails.  The updates are all up to the minute.
    Please help me install IE 10
    Here is the log.  Same error in three tries.  It gives the IE10 Failed to install message.
    00:00.000: Started: 2013/02/27 (Y/M/D) 16:34:02.472 (local)
    00:00.016: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.016: Command line: "C:\Users\Pats Workstation\Downloads\IE10-Windows6.1-x64-en-us.exe"
    00:00.031: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.047: INFO:    Previous version of Internet Explorer: 9.0.8112.16464
    00:00.047: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.062: INFO:    ...and 10.1.0.0...
    00:00.062: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.062: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.078: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.094: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.109: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.109: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.499: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.515: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1A275.tmp\Spelling_en.msu.
    00:00.515: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.530: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1A275.tmp\Hyphenation_en.msu.
    00:00.546: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:01.388: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    01:01.371: INFO:    The no reboot policy and supplemental files failed to download correctly. Default installation files will be used. Wait return value was 0x00000102 (258) [The wait operation timed out. ]
    01:01.402: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1A275.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1A275.tmp\HardwareBlockingList.xml"
    01:01.496: INFO:    Graphics Device Information: NVIDIA Quadro 600
    01:01.496: INFO:    Hardware support check succeeded. Installation will continue.
    01:01.496: INFO:    Windows 7 operating system detected.
    01:01.511: INFO:    Service pack major: 1
    01:01.511: INFO:    Service pack minor: 0
    01:01.511: INFO:    Service pack name:  Service Pack 1
    01:01.527: 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.16492 (True)
    01:01.527: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18044 >= 6.1.7601.17727 (True)
    01:01.542: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18015 >= 6.1.7601.17617 (True)
    01:01.558: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18015 >= 6.1.7601.17932 (True)
    01:01.558: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    01:01.574: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    01:03.414: INFO:    Waiting for 0 prerequisite downloads.
    01:03.414: INFO:    The neutral pack was not successfully downloaded from the internet. Installation will continue using the extracted package.
    01:03.446: INFO:    No reboot logic message NrApiStart(0), lParam=0x031b1838 returned 0x00000000.
    01:04.085: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    01:04.085: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    01:04.101: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1A275.tmp\IE10-neutral.Extracted.cab
    01:04.116: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1A275.tmp\IE10-neutral.Extracted.cab /quiet /norestart
    01:18.796: INFO:    Process exit code 0x000036B3 (14003) [The referenced assembly is not installed on your system. ]
    01:18.796: ERROR:   Neutral package installation failed (exit code = 0x000036b3 (14003)).
    01:18.796: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    01:18.812: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    01:18.812: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    01:18.812: INFO:    Waiting for Active Setup to complete.
    01:18.812: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:23.819: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:28.827: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:33.850: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:38.873: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:43.912: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    02:36.578: INFO:    Link clicked, opening URL in new window:'http://go.microsoft.com/fwlink/?LinkId=272316'
    06:31.594: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    06:31.625: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1A275.tmp
    06:31.656: INFO:    Unable to remove directory C:\Windows\TEMP\IE1A275.tmp, marking for deletion on reboot.
    06:31.672: INFO:    Released Internet Explorer Installer Mutex

    I can only install if I disconnect from the internet....... WHY???
    I need to create a working package for SCCM but it keeps facking up!
    Here's my log (If I am connected to the internet):
    00:00.000: ====================================================================
    00:00.000: Started: 2014/09/02 (Y/M/D) 16:44:10.176 (local)
    00:00.000: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.000: Command line: "C:\Users\emkr\Desktop\IE10-Windows6.1-x64-en-us.exe" 
    00:00.000: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.000: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.000: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.015: INFO:    ...and 10.1.0.0...
    00:00.015: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.015: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.015: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.015: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.015: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.031: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.187: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.202: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1FC8.tmp\Spelling_en.msu.
    00:00.202: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.218: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1FC8.tmp\Hyphenation_en.msu.
    00:00.218: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.639: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:01.357: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:01.419: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1FC8.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1FC8.tmp\IE10-support\HardwareBlockingList.xml"
    00:01.497: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:01.497: INFO:    Hardware support check succeeded. Installation will continue.
    00:01.497: INFO:    Windows 7 operating system detected.
    00:01.497: INFO:    Service pack major: 1
    00:01.497: INFO:    Service pack minor: 0
    00:01.497: INFO:    Service pack name:  Service Pack 1
    00:01.513: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:01.513: 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.16492 (True)
    00:01.513: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:01.513: 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:01.528: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:01.544: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:01.544: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:13.244: INFO:    Waiting for 0 prerequisite downloads.
    00:13.291: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    00:13.322: INFO:    No reboot logic message NrApiStart(0), lParam=0x032d28d8 returned 0x00000000.
    00:14.102: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:14.102: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:14.118: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1FC8.tmp\IE10-neutral.Downloaded.cab
    00:14.118: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1FC8.tmp\IE10-neutral.Downloaded.cab /quiet /norestart
    00:23.509: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    00:23.509: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    00:23.524: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:23.524: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:23.524: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:23.524: INFO:    Waiting for Active Setup to complete.
    00:23.524: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:28.532: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:33.524: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:38.532: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:43.539: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:48.563: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    03:52.254: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    03:52.285: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    03:52.301: INFO:    SQM Upload returned 403
    03:56.435: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1FC8.tmp
    03:56.466: INFO:    Unable to remove directory C:\Windows\TEMP\IE1FC8.tmp, marking for deletion on reboot.
    03:56.466: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.000: Started: 2014/09/02 (Y/M/D) 16:48:12.132 (local)
    00:00.000: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.000: Command line: "C:\Users\emkr\Desktop\IE10-Windows6.1-x64-en-us.exe" 
    00:00.016: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.016: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.016: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.016: INFO:    ...and 10.1.0.0...
    00:00.016: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.031: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.031: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.031: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.031: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.031: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.140: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.203: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1C12C.tmp\Spelling_en.msu.
    00:00.203: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.218: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1C12C.tmp\Hyphenation_en.msu.
    00:00.218: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.640: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:01.232: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:01.295: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1C12C.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1C12C.tmp\IE10-support\HardwareBlockingList.xml"
    00:01.357: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:01.357: INFO:    Hardware support check succeeded. Installation will continue.
    00:01.357: INFO:    Windows 7 operating system detected.
    00:01.357: INFO:    Service pack major: 1
    00:01.373: INFO:    Service pack minor: 0
    00:01.373: INFO:    Service pack name:  Service Pack 1
    00:01.373: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:01.373: 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.16492 (True)
    00:01.388: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:01.388: 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:01.388: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:01.388: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:01.404: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    03:58.666: INFO:    Waiting for 0 prerequisite downloads.
    03:58.697: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    03:58.728: INFO:    No reboot logic message NrApiStart(0), lParam=0x006428d8 returned 0x00000000.
    03:59.352: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    03:59.352: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    03:59.352: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1C12C.tmp\IE10-neutral.Downloaded.cab
    03:59.368: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1C12C.tmp\IE10-neutral.Downloaded.cab /quiet /norestart
    04:08.588: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    04:08.603: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    04:08.603: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    04:08.603: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    04:08.603: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    04:08.619: INFO:    Waiting for Active Setup to complete.
    04:08.619: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    04:13.627: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    04:18.619: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    04:23.626: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    04:28.634: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    04:33.704: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    04:35.716: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    04:35.732: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    04:35.732: INFO:    SQM Upload returned 403
    04:38.836: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1C12C.tmp
    04:38.867: INFO:    Unable to remove directory C:\Windows\TEMP\IE1C12C.tmp, marking for deletion on reboot.
    04:38.883: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.000: Started: 2014/09/02 (Y/M/D) 16:59:11.347 (local)
    00:00.000: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.000: Command line: "C:\Users\emkr\Desktop\IE10-Windows6.1-x64-en-us.exe" 
    00:00.016: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.016: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.016: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.016: INFO:    ...and 10.1.0.0...
    00:00.016: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.016: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.016: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.016: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.016: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.031: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.109: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.156: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1D049.tmp\Spelling_en.msu.
    00:00.156: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.156: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1D049.tmp\Hyphenation_en.msu.
    00:00.156: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.577: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:15.694: ERROR:   No reboot policy cab file was not downloaded correctly. Default installation files will be used. Error: 0x800c0005 (2148270085) [(null)]
    00:15.725: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1D049.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1D049.tmp\HardwareBlockingList.xml"
    00:15.772: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:15.772: INFO:    Hardware support check succeeded. Installation will continue.
    00:15.772: INFO:    Windows 7 operating system detected.
    00:15.772: INFO:    Service pack major: 1
    00:15.787: INFO:    Service pack minor: 0
    00:15.787: INFO:    Service pack name:  Service Pack 1
    00:15.787: 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.16492 (True)
    00:15.787: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:15.787: 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:15.787: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:15.803: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:15.803: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:17.378: INFO:    Waiting for 0 prerequisite downloads.
    00:17.378: INFO:    The neutral pack was not successfully downloaded from the internet. Installation will continue using the extracted package.
    00:17.410: INFO:    No reboot logic message NrApiStart(0), lParam=0x006928d8 returned 0x00000000.
    00:18.034: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:18.049: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:18.049: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1D049.tmp\IE10-neutral.Extracted.cab
    00:18.049: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1D049.tmp\IE10-neutral.Extracted.cab /quiet /norestart
    00:26.629: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:26.629: INFO:    Setting registry to check if Internet Explorer is the default browser on first run: SUCCESS.
    00:26.629: INFO:    Preparing to install Spelling_en.msu using C:\Windows\TEMP\IE1D049.tmp\Spelling_en.msu
    00:26.645: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1D049.tmp\Spelling_en\Windows6.2-KB2764916-x86.cab /quiet /norestart
    00:48.251: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:48.267: INFO:    Preparing to install Hyphenation_en.msu using C:\Windows\TEMP\IE1D049.tmp\Hyphenation_en.msu
    00:48.267: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1D049.tmp\Hyphenation_en\Windows6.2-KB2764913-x86.cab /quiet /norestart
    01:11.870: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    01:11.870: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00000bc2 returned 0x00000000.
    01:11.885: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    01:11.885: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    01:11.885: INFO:    Verifying that the Internet Explorer Optional Component is enabled.
    01:18.406: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    01:18.422: INFO:    Setup exit code: 0x00000BC2 (3010) - Installation Succeeded. Reboot required.
    01:18.422: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    01:18.437: INFO:    SQM Upload returned 403
    01:21.495: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1D049.tmp
    01:21.526: INFO:    Unable to remove directory C:\Windows\TEMP\IE1D049.tmp, marking for deletion on reboot.
    01:21.526: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.016: Started: 2014/09/02 (Y/M/D) 17:03:16.899 (local)
    00:00.016: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.016: Command line: IE10-Windows6.1-x64-en-us.exe  /update-no
    00:00.016: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.016: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.016: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.016: INFO:    ...and 10.1.0.0...
    00:00.016: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.032: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.032: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.032: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.032: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.032: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.156: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.188: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE18F73.tmp\Spelling_en.msu.
    00:00.203: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.203: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE18F73.tmp\Hyphenation_en.msu.
    00:00.203: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.640: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:00.687: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE18F73.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE18F73.tmp\HardwareBlockingList.xml"
    00:00.734: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:00.734: INFO:    Hardware support check succeeded. Installation will continue.
    00:00.749: INFO:    Windows 7 operating system detected.
    00:00.749: INFO:    Service pack major: 1
    00:00.749: INFO:    Service pack minor: 0
    00:00.749: INFO:    Service pack name:  Service Pack 1
    00:00.749: 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.16492 (True)
    00:00.749: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:00.765: 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:00.765: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:00.765: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:00.765: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:02.403: INFO:    Waiting for 0 prerequisite downloads.
    00:02.418: INFO:    The neutral pack was not successfully downloaded from the internet. Installation will continue using the extracted package.
    00:02.450: INFO:    No reboot logic message NrApiStart(0), lParam=0x008928d0 returned 0x00000000.
    00:03.120: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:03.136: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:03.136: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE18F73.tmp\IE10-neutral.Extracted.cab
    00:03.136: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE18F73.tmp\IE10-neutral.Extracted.cab /quiet /norestart
    00:11.701: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:11.701: INFO:    Setting registry to check if Internet Explorer is the default browser on first run: SUCCESS.
    00:11.701: INFO:    Preparing to install Spelling_en.msu using C:\Windows\TEMP\IE18F73.tmp\Spelling_en.msu
    00:11.716: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE18F73.tmp\Spelling_en\Windows6.2-KB2764916-x86.cab /quiet /norestart
    00:18.471: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:18.471: INFO:    Preparing to install Hyphenation_en.msu using C:\Windows\TEMP\IE18F73.tmp\Hyphenation_en.msu
    00:18.487: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE18F73.tmp\Hyphenation_en\Windows6.2-KB2764913-x86.cab /quiet /norestart
    00:25.226: INFO:    Process exit code 0x00000BC2 (3010) [The requested operation is successful. Changes will not be effective until the system is rebooted. ]
    00:25.226: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00000bc2 returned 0x00000000.
    00:25.226: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:25.226: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:25.226: INFO:    Verifying that the Internet Explorer Optional Component is enabled.
    00:27.129: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    00:27.145: INFO:    Setup exit code: 0x00000BC2 (3010) - Installation Succeeded. Reboot required.
    00:27.145: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    00:27.160: INFO:    SQM Upload returned 403
    00:30.233: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE18F73.tmp
    00:30.280: INFO:    Unable to remove directory C:\Windows\TEMP\IE18F73.tmp, marking for deletion on reboot.
    00:30.296: INFO:    Rebooting computer...
    00:30.311: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.016: Started: 2014/09/02 (Y/M/D) 17:12:57.796 (local)
    00:00.016: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.016: Command line: "C:\Users\emkr\Downloads\IE10-Windows6.1-x64-en-us.exe" 
    00:00.016: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.016: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.031: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.031: INFO:    ...and 10.1.0.0...
    00:00.031: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.031: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.031: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.031: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.047: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.047: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.203: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.234: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1702F.tmp\Spelling_en.msu.
    00:00.234: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.234: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1702F.tmp\Hyphenation_en.msu.
    00:00.234: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.671: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:01.248: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:01.311: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1702F.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1702F.tmp\IE10-support\HardwareBlockingList.xml"
    00:01.373: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:01.373: INFO:    Hardware support check succeeded. Installation will continue.
    00:01.389: INFO:    Windows 7 operating system detected.
    00:01.389: INFO:    Service pack major: 1
    00:01.389: INFO:    Service pack minor: 0
    00:01.389: INFO:    Service pack name:  Service Pack 1
    00:01.389: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:01.389: 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.16492 (True)
    00:01.404: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:01.404: 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:01.404: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:01.420: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:01.420: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:03.557: INFO:    Waiting for 0 prerequisite downloads.
    00:04.462: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    00:04.493: INFO:    No reboot logic message NrApiStart(0), lParam=0x001e10f8 returned 0x00000000.
    00:05.226: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:05.226: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:05.226: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE1702F.tmp\IE10-neutral.Downloaded.cab
    00:05.226: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1702F.tmp\IE10-neutral.Downloaded.cab /quiet /norestart
    00:14.945: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    00:14.945: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    00:14.945: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:14.961: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:14.961: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:14.961: INFO:    Waiting for Active Setup to complete.
    00:14.961: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:19.968: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:24.960: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:29.968: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:34.976: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:39.999: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    00:41.949: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    00:41.964: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    00:41.964: INFO:    SQM Upload returned 403
    00:45.084: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1702F.tmp
    00:45.131: INFO:    Unable to remove directory C:\Windows\TEMP\IE1702F.tmp, marking for deletion on reboot.
    00:45.131: INFO:    Released Internet Explorer Installer Mutex
    00:00.000: ====================================================================
    00:00.000: Started: 2014/09/02 (Y/M/D) 17:17:57.281 (local)
    00:00.015: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.015: Command line: "C:\IE10-Windows6.1-x64-en-us.exe" 
    00:00.015: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
    00:00.015: INFO:    Previous version of Internet Explorer: 8.0.7601.17514
    00:00.015: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
    00:00.015: INFO:    ...and 10.1.0.0...
    00:00.015: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
    00:00.015: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.015: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.031: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.031: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.031: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
    00:00.187: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.234: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE11F3.tmp\Spelling_en.msu.
    00:00.234: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.249: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE11F3.tmp\Hyphenation_en.msu.
    00:00.249: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
    00:00.671: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:01.232: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:01.295: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE11F3.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE11F3.tmp\IE10-support\HardwareBlockingList.xml"
    00:01.341: INFO:    Graphics Device Information: Intel(R) HD Graphics 4600
    00:01.357: INFO:    Hardware support check succeeded. Installation will continue.
    00:01.357: INFO:    Windows 7 operating system detected.
    00:01.357: INFO:    Service pack major: 1
    00:01.357: INFO:    Service pack minor: 0
    00:01.357: INFO:    Service pack name:  Service Pack 1
    00:01.357: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:01.357: 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.16492 (True)
    00:01.373: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:01.373: 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:01.373: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18409 >= 6.1.7601.17932 (True)
    00:01.373: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:01.388: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:05.569: INFO:    Waiting for 0 prerequisite downloads.
    00:05.616: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using the downloaded package.
    00:05.632: INFO:    No reboot logic message NrApiStart(0), lParam=0x02bd2898 returned 0x00000000.
    00:06.271: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:06.271: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:06.271: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE11F3.tmp\IE10-neutral.Downloaded.cab
    00:06.287: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE11F3.tmp\IE10-neutral.Downloaded.cab /quiet /norestart
    00:14.024: INFO:    Process exit code 0x00003715 (14101) [The identities of the manifests are identical but their contents are different. ]
    00:14.024: ERROR:   Neutral package installation failed (exit code = 0x00003715 (14101)).
    00:14.024: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    00:14.024: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    00:14.024: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    00:14.024: INFO:    Waiting for Active Setup to complete.
    00:14.040: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:19.032: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:24.040: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:29.047: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:34.039: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    00:39.109: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    00:41.746: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    00:41.746: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    00:41.746: INFO:    SQM Upload returned 403
    00:44.819: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE11F3.tmp
    00:44.866: INFO:    Unable to remove directory C:\Windows\TEMP\IE11F3.tmp, marking for deletion on reboot.
    00:44.866: INFO:    Released Internet Explorer Installer Mutex

  • 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

  • Windows 7 64bits Installing Internet Explorer 11 ERROR Neutral package installation failed

    Hi,
    The laptop is running Windows 7 64bits with Internet Explorer 10 and the Windows automatic updates is turned on. The problem happens when the Windows keeps installing the Internet Explorer 11 every time between shutdown process. So I decided to download
    IE11 offline installation and try to install from it but the problem doesn't solve, the installation still does not complete. I have tried to delete all files in the Windows temp folder and IE temp folder already but the problem still exist.
    Below is the details from IE11_main.log file
    00:00.000:
    ====================================================================
    00:00.000: Started: 2014/05/26 (Y/M/D) 11:00:44.473 (local)
    00:00.000: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.016: Command line: "C:\Users\TBG\Desktop\IE11-Windows6.1-x64-en-us.exe"
    00:00.016: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.016: INFO:    Previous version of Internet Explorer: 10.0.9200.16866
    00:00.016: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.016: INFO:    ...and 11.1.0.0...
    00:00.016: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.016: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.016: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
    00:00.016: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.016: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.016: 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.702: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE18CE4.tmp\Spelling_en.msu.
    00:00.702: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.702: INFO:    Extracted Hyphenation dictionary for en to
    C:\Windows\TEMP\IE18CE4.tmp\Hyphenation_en.msu.
    00:00.718: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:01.607: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:02.714: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded
    and extracted for use.
    00:02.730: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE18CE4.tmp\IE11-
    SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE18CE4.tmp\IE11-support\HardwareBlockingList.xml"
    00:02.870: INFO:    Graphics Device Information: Intel(R) HD Graphics Family
    00:02.870: INFO:    Hardware support check succeeded. Installation will continue.
    00:02.870: INFO:    Windows 7 operating system detected.
    00:02.886: INFO:    Service pack major: 1
    00:02.886: INFO:    Service pack minor: 0
    00:02.886: INFO:    Service pack name:  Service Pack 1
    00:02.886: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >=
    6.2.9200.16570 (True)
    00:02.886: 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:02.886: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18409 >=
    6.1.7601.17727 (True)
    00:02.902: 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:02.902: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >=
    6.1.7601.17888 (True)
    00:02.902: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:02.902: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >=
    6.1.7601.18010 (True)
    00:02.902: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18254 >=
    6.1.7601.18254 (True)
    00:02.917: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >=
    6.1.7601.18247 (True)
    00:07.597: INFO:    Waiting for 0 prerequisite downloads.
    01:37.423: INFO:    The neutral pack was successfully downloaded from the internet. Installation will continue using
    the downloaded package.
    01:37.423: INFO:    Waiting for 0 language pack downloads.
    01:37.423: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    01:37.438: INFO:    No reboot logic message NrApiStart(0), lParam=0x03771068 returned 0x00000000.
    01:38.000: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    01:38.000: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    01:38.000: INFO:    Installing with the downloaded package. C:\Windows\TEMP\IE18CE4.tmp\IE11-
    neutral.Downloaded.cab
    01:38.000: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package
    /packagepath:C:\Windows\TEMP\IE18CE4.tmp\IE11-neutral.Downloaded.cab /quiet /norestart
    02:20.619: INFO:    Process exit code 0x80004005 (-2147467259) [Unspecified error ]
    02:20.713: ERROR:   Neutral package installation failed (exit code = 0x80004005 (2147500037)).
    02:20.729: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    02:20.744: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    02:20.775: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    02:20.869: INFO:    Waiting for Active Setup to complete.
    02:20.963: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
    02:32.694: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
    02:32.741: INFO:    Scheduling upload to IE SQM server: http://sqm.microsoft.com/sqm/ie/sqmserver.dll
    02:32.756: INFO:    SQM Upload returned 403
    02:36.453: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE18CE4.tmp
    02:36.531: INFO:    Unable to remove directory C:\Windows\TEMP\IE18CE4.tmp, marking for deletion on reboot.
    02:36.531: INFO:    Released Internet Explorer Installer Mutex
    Taweesak Archawamaitreekool

    DISM.log would make this clearer.  And using ProcMon I suspect would really make it snap out at you.   <eg>
    C.f. (credit for a recent discovery)
    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 
    Unfortunately, since then others have quickly stuck a pin in this balloon, finding that it is just one more bump in the road, but at least working around this coding error should change your symptom.
    Good luck
    Robert Aldwinckle
    Thank you very much.
    I have tried to create a symbolic link as suggested on a forum but the problem still cannot be solved. The error message from IE11_main.log file is exactly the same as before.
    For DISM.Log, here are the details from the started time of the installtion process
    2014-05-29 16:53:55, Info                  DISM   DISM.EXE: <----- Starting Dism.exe session ----->
    2014-05-29 16:53:55, Info                  DISM   DISM.EXE:
    2014-05-29 16:53:55, Info                  DISM   DISM.EXE: Host machine information: OS Version=6.1.7601, Running architecture=amd64, Number of processors=4
    2014-05-29 16:53:55, Info                  DISM   DISM.EXE: Executing command line: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1CA88.tmp\IE11-neutral.Downloaded.cab
    /quiet /norestart
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Getting Provider FolderManager - CDISMProviderStore::GetProvider
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Loading Provider from location C:\Windows\System32\Dism\FolderProvider.dll - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Connecting to the provider located at C:\Windows\System32\Dism\FolderProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Getting Provider FolderManager - CDISMProviderStore::GetProvider
    2014-05-29 16:53:55, Info                  DISM   DISM Provider Store: PID=9144 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Manager: PID=9144 Successfully loaded the ImageSession at "C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583"
    - CDISMManager::LoadImageSession
    2014-05-29 16:53:58, Info                  DISM   DISM Image Session: PID=8324 Instantiating the Provider Store. - CDISMImageSession::get_ProviderStore
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Initializing a provider store for the IMAGE session type. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\OSProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\OSProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:58, Info                  DISM   DISM OS Provider: PID=8324 Defaulting SystemPath to C:\ - CDISMOSServiceManager::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM OS Provider: PID=8324 Defaulting Windows folder to C:\Windows - CDISMOSServiceManager::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Attempting to initialize the logger from the Image Session. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\LogProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\LogProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider OSServices - CDISMProviderStore::GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\PEProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Warning               DISM   DISM Provider Store: PID=8324 Failed to Load the provider: C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\PEProvider.dll.
    - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Failed to get and initialize the PE Provider.  Continuing by assuming that it
    is not a WinPE image. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider DISMLogger - CDISMProviderStore::GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Manager: PID=9144 Image session successfully loaded from the temporary location: C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583
    - CDISMManager::CreateImageSession
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider OSServices - CDISMProviderStore::GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  CSI    00000001 Shim considered [l:256{128}]"\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_OBJECT_PATH_NOT_FOUND
    2014-05-29 16:53:58, Info                  CSI    00000002 Shim considered [l:250{125}]"\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_SUCCESS
    2014-05-29 16:53:58, Info                  DISM   DISM.EXE: Target image information: OS Version=6.1.7601.17592, Image architecture=amd64
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Getting the collection of providers from an image provider store type. - CDISMProviderStore::GetProviderCollection
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\CbsProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\CbsProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:58, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:58, Info                  CSI    00000001 Shim considered [l:256{128}]"\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_OBJECT_PATH_NOT_FOUND
    2014-05-29 16:53:58, Info                  CSI    00000002 Shim considered [l:250{125}]"\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_SUCCESS
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Finished initializing the CbsConUI Handler. - CCbsConUIHandler::Initialize
    2014-05-29 16:53:59, Info                  CSI    00000001 Shim considered [l:256{128}]"\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_OBJECT_PATH_NOT_FOUND
    2014-05-29 16:53:59, Info                  CSI    00000002 Shim considered [l:250{125}]"\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_SUCCESS
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 CBS is being initialized for online use. More information about CBS actions can be
    located at: %windir%\logs\cbs\cbs.log - CDISMPackageManager::Initialize
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Loaded servicing stack for online use only. - CDISMPackageManager::RefreshInstanceAndLock
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\MsiProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\MsiProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\IntlProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\IntlProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\DmiProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\DmiProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  CSI    00000001 Shim considered [l:256{128}]"\??\C:\Windows\Servicing\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_OBJECT_PATH_NOT_FOUND
    2014-05-29 16:53:59, Info                  CSI    00000002 Shim considered [l:250{125}]"\??\C:\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\pkgmgr.exe"
    : got STATUS_SUCCESS
    2014-05-29 16:53:59, Info                  DISM   DISM OS Provider: PID=8324 Successfully loaded the hive. - CDISMOSServiceManager::DetermineBootDrive
    2014-05-29 16:53:59, Info                  DISM   DISM Driver Manager: PID=8324 Further logs for driver related operations can be found in the target operating system
    at %WINDIR%\inf\setupapi.offline.log - CDriverManager::Initialize
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\UnattendProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\UnattendProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\SmiProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\SmiProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Loading Provider from location C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\TransmogProvider.dll
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Connecting to the provider located at C:\Users\TBG\AppData\Local\Temp\A444213B-3012-4ACB-9A8C-561F175FD583\TransmogProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Encountered a servicing provider, performing additional servicing initializations.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider DISM Package Manager - CDISMProviderStore::GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider DISM Unattend Manager - CDISMProviderStore::GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Got the collection of providers. Now enumerating them to build the command table.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: DISM Package Manager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: DISM Package Manager.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: OSServices
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: MsiManager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: MsiManager.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: IntlManager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: IntlManager.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: DriverManager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: DriverManager.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: DISM Unattend Manager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: DISM Unattend Manager.
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: DISM Log Provider
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: SmiManager
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: Edition Manager
    2014-05-29 16:53:59, Info                  DISM   DISM Transmog Provider: PID=8324 Current image session is [ONLINE] - CTransmogManager::GetMode
    2014-05-29 16:53:59, Info                  DISM   DISM.EXE: Succesfully registered commands for the provider: Edition Manager.
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Getting Provider DISM Package Manager - CDISMProviderStore::GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Provider Store: PID=8324 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Processing the top level command token(add-package). - CPackageManagerCLIHandler::Private_ValidateCmdLine
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Attempting to route to appropriate command handler. - CPackageManagerCLIHandler::ExecuteCmdLine
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Routing the command... - CPackageManagerCLIHandler::ExecuteCmdLine
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Encountered the option "packagepath" with value "C:\Windows\TEMP\IE1CA88.tmp\IE11-neutral.Downloaded.cab"
    - CPackageManagerCLIHandler::Private_GetPackagesFromCommandLine
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Package Microsoft-Windows-InternetExplorer-Package-TopLevel~31bf3856ad364e35~amd64~~11.2.9600.16428
    with CBS state 4(CbsInstallStateStaged) being mapped to dism state 3(DISM_INSTALL_STATE_STAGED) - CDISMPackage::LogInstallStateMapping
    2014-05-29 16:53:59, Info                  DISM   DISM Package Manager: PID=8324 Initiating Changes on Package with values: 4, 7 - CDISMPackage::Internal_ChangePackageState
    2014-05-29 16:54:00, Info                  DISM   PID=4640 Scratch directory set to 'C:\Users\TBG\AppData\Local\Temp\'. - CDISMManager::put_ScratchDir
    2014-05-29 16:54:00, Info                  DISM   PID=4640 Successfully loaded the ImageSession at "C:\Windows\System32\Dism" - CDISMManager::LoadImageSession
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Found and Initialized the DISM Logger. - CDISMProviderStore::Internal_InitializeLogger
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Failed to get and initialize the PE Provider.  Continuing by assuming that it
    is not a WinPE image. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Finished initializing the Provider Map. - CDISMProviderStore::Final_OnConnect
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Getting Provider DISMLogger - CDISMProviderStore::GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Getting Provider DISMLogger - CDISMProviderStore::GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Manager: PID=4640 Successfully created the local image session and provider store. - CDISMManager::CreateLocalImageSession
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Getting Provider DISMLogger - CDISMProviderStore::GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has previously been initialized.  Returning the existing instance. -
    CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE:
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: <----- Starting Dism.exe session ----->
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE:
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Host machine information: OS Version=6.1.7601, Running architecture=amd64, Number of processors=4
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Executing command line: c:\windows\sysnative\dism.exe
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Getting the collection of providers from a local provider store type. - CDISMProviderStore::GetProviderCollection
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Loading Provider from location C:\Windows\System32\Dism\WimProvider.dll - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Connecting to the provider located at C:\Windows\System32\Dism\WimProvider.dll. -
    CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Loading Provider from location C:\Windows\System32\Dism\FolderProvider.dll - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Connecting to the provider located at C:\Windows\System32\Dism\FolderProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Provider has not previously been encountered.  Attempting to initialize the provider.
    - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Loading Provider from location C:\Windows\System32\Dism\CompatProvider.dll - CDISMProviderStore::Internal_GetProvider
    2014-05-29 16:54:00, Info                  DISM   DISM Provider Store: PID=4640 Connecting to the provider located at C:\Windows\System32\Dism\CompatProvider.dll.
    - CDISMProviderStore::Internal_LoadProvider
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Got the collection of providers. Now enumerating them to build the command table.
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: WimManager
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Getting the help information collection for the provider: WimManager.
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Registering information from the help collection from provider: WimManager.
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(wimcommands) and category(localtoplevelhelp) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(cleanup-wim) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(remount-wim) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(mount-wim) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(unmount-wim) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(commit-wim) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(get-wiminfo) and category(wimcommands) for the provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Succesfully registered the Help Item with topic(get-mountedwiminfo) and category(wimcommands) for the
    provider(WimManager).
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: FolderManager
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: DISM Log Provider
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Attempting to add the commands from provider: Compatibility Manager
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Getting the help information collection for the provider: Compatibility Manager.
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: Image session has been closed. Reboot required=no.
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE:
    2014-05-29 16:54:00, Info                  DISM   DISM.EXE: <----- Ending Dism.exe session ----->
    Taweesak Archawamaitreekool

  • IE 10 and 11 error install failure ERROR: "Neutral package installation failed"

    This is a 2008 R2 physical server with all available patches installed and SFC recently run.
    00:00.000: ====================================================================
    00:00.000: Started: 2014/01/16 (Y/M/D) 11:52:19.750 (local)
    00:00.000: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
    00:00.016: Command line: "C:\Users\{user}\Desktop\IE11-Windows6.1-x64-en-us.exe"
    00:00.016: INFO:    Setup installer for Internet Explorer: 11.0.9600.16428
    00:00.016: INFO:    Previous version of Internet Explorer: 9.0.8112.16526
    00:00.016: INFO:    Checking if iexplore.exe's current version is between 11.0.9600.0...
    00:00.016: INFO:    ...and 11.1.0.0...
    00:00.016: INFO:    Maximum version on which to run IEAK branding is: 11.1.0.0...
    00:00.016: INFO:    iexplore.exe version check success. Install can proceed.
    00:00.016: INFO:    Operating System: Windows Server: 6.1.7601 (Service Pack 1)
    00:00.016: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
    00:00.016: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
    00:00.016: INFO:    Trying to extract ID: 7006 (0) as "IE11-neutral.Extracted.cab"
    00:00.219: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
    00:00.546: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE182A.tmp\Spelling_en.msu.
    00:00.546: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
    00:00.562: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE182A.tmp\Hyphenation_en.msu.
    00:00.562: INFO:    Trying to extract ID: 7128 (1033) as "IE11-support.cab"
    00:01.467: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
    00:01.810: INFO:    Updated Download list, Hardware Blocking list, and no reboot policy files successfully downloaded and extracted for use.
    00:01.826: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE182A.tmp\IE11-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE182A.tmp\IE11-support\HardwareBlockingList.xml"
    00:01.919: INFO:    Hardware support check succeeded. Installation will continue.
    00:01.919: INFO:    Windows 7 operating system detected.
    00:01.919: INFO:    Service pack major: 1
    00:01.919: INFO:    Service pack minor: 0
    00:01.919: INFO:    Service pack name:  Service Pack 1
    00:01.935: INFO:    Version Check for (KB2834140) of C:\Windows\System32\d3d11.dll: 6.2.9200.16570 >= 6.2.9200.16570 (True)
    00:01.935: 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:01.935: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18247 >= 6.1.7601.17727 (True)
    00:01.966: 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:01.966: INFO:    Version Check for (KB2731771) of C:\Windows\System32\conhost.exe: 6.1.7601.18229 >= 6.1.7601.17888 (True)
    00:01.966: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
    00:01.966: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
    00:01.982: INFO:    Version Check for (KB2888049) of C:\Windows\System32\drivers\tcpip.sys: 6.1.7601.18254 >= 6.1.7601.18254 (True)
    00:02.013: INFO:    Version Check for (KB2882822) of C:\Windows\System32\tdh.dll: 6.1.7601.18247 >= 6.1.7601.18247 (True)
    00:54.258: INFO:    Waiting for 0 prerequisite downloads.
    00:54.258: INFO:    The neutral pack was not successfully downloaded from the internet. Installation will continue using the extracted package.
    00:54.258: INFO:    Waiting for 0 language pack downloads.
    00:54.258: INFO:    Language pack downloads completed. (exit code = 0xffffffff (4294967295)).
    00:54.273: INFO:    No reboot logic message NrApiStart(0), lParam=0x002a2778 returned 0x00000000.
    00:54.492: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
    00:54.492: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
    00:54.492: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE182A.tmp\IE11-neutral.Extracted.cab
    00:54.492: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE182A.tmp\IE11-neutral.Extracted.cab /quiet /norestart
    01:21.792: INFO:    Process exit code 0x00000002 (2) [The system cannot find the file specified. ]
    01:21.792: ERROR:   Neutral package installation failed (exit code = 0x00000002 (2)).
    01:21.792: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
    01:21.792: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
    01:21.807: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
    01:21.807: INFO:    Waiting for Active Setup to complete.
    01:21.807: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:26.815: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:31.823: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:37.298: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:42.306: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
    01:47.314: INFO:    Waiting for Active Setup to complete. ({A509B1A7-37EF-4b3f-8CFC-4F3A74704073})

    PS C:\Windows> DIR -FILTER vbscript.DLL -RECURSE -NAME | get-item | select -expandproperty VersionInfo | sort-object FileVersion, FileName | ft File
    Version, FileName -Autosize
    FileVersion FileName
    5.8.7601.16978 C:\Windows\System32\vbscript.dll
    5.8.7601.16978 C:\Windows\SysWOW64\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.16385_none_a44ef4f6479809f0\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7601.17514_none_a68008be44868d8a\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16450_none_bcd6d18300a40070\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16455_none_bcdbd2f5009f7f23\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16476_none_bcc7336700aed05c\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16526_none_bcfd44e9008641ce\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20562_none_bd579ef619c7eed9\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20586_none_bd46004619d48c17\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20637_none_bd7d121219ab16e0\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.16385_none_aea39f487bf8cbeb\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7601.17514_none_b0d4b31078e74f85\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16450_none_c72b7bd53504c26b\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16455_none_c7307d473500411e\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16476_none_c71bddb9350f9257\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.16526_none_c751ef3b34e703c9\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20562_none_c7ac49484e28b0d4\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20586_none_c79aaa984e354e12\vbscript.dll
    5.8.7601.16978 C:\Windows\winsxs\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_9.4.8112.20637_none_c7d1bc644e0bd8db\vbscript.dll
    PS C:\Windows> get-item -path ".\SysWOW64\vbscript.dll" | fl *
    PSPath : Microsoft.PowerShell.Core\FileSystem::C:\Windows\SysWOW64\vbscript.dll
    PSParentPath : Microsoft.PowerShell.Core\FileSystem::C:\Windows\SysWOW64
    PSChildName : vbscript.dll
    PSDrive : C
    PSProvider : Microsoft.PowerShell.Core\FileSystem
    PSIsContainer : False
    VersionInfo : File: C:\Windows\SysWOW64\vbscript.dll
    InternalName: vbscript.dll
    OriginalFilename: vbscript.dll.mui
    FileVersion: 5.8.7601.16978
    FileDescription: Microsoft r VBScript
    Product: Microsoft r VBScript
    ProductVersion: 5.8.7601.16978
    Debug: False
    Patched: False
    PreRelease: False
    PrivateBuild: False
    SpecialBuild: False
    Language: English (United States)
    BaseName : vbscript
    Mode : -a---
    Name : vbscript.dll
    Length : 420864
    DirectoryName : C:\Windows\SysWOW64
    Directory : C:\Windows\SysWOW64
    IsReadOnly : False
    Exists : True
    FullName : C:\Windows\SysWOW64\vbscript.dll
    Extension : .dll
    CreationTime : 1/15/2014 2:37:08 PM
    CreationTimeUtc : 1/15/2014 7:37:08 PM
    LastAccessTime : 1/15/2014 2:37:08 PM
    LastAccessTimeUtc : 1/15/2014 7:37:08 PM
    LastWriteTime : 11/14/2013 5:38:16 PM
    LastWriteTimeUtc : 11/14/2013 10:38:16 PM
    Attributes : Archive

Maybe you are looking for