Error in package integrity.

I am trying to install pidgin, skype transmissions, exaile, mplayer, vlc, mplayer, openoffice and I get an error when it wants to check for conflictions.
There error is as follows:
resolving dependencies...
warning: provider package was selected (gstreamer0.10-base-plugins provides gstreamer0.10-gnomevfs)
warning: provider package was selected (gstreamer0.10-good-plugins provides gstreamer0.10-gconf)
looking for inter-conflicts...
Targets (71): gtkspell-2.0.13-1 scrnsaverproto-1.1.0-2 libxss-1.1.3-1
gstreamer0.10-0.10.20-1 pidgin-2.4.3-2 libgl-7.0.3-2
glproto-1.4.9-1 mesa-7.0.3-3 libmng-1.0.10-1 qt-4.4.1-2
skype-2.0.0.72-2 libnotify-0.4.4-2 hicolor-icon-theme-0.10-1
transmission-gtk-1.32-1 python-pysqlite-2.4.1-1
liboil-0.3.14-1 gstreamer0.10-base-0.10.20-1
gstreamer0.10-good-0.10.8-1 gstreamer0.10-python-0.10.12-1
cdparanoia-10.1-1 libogg-1.1.3-1 libtheora-1.0beta1-1
libvorbis-1.2.0-1 libvisual-0.4.0-1
gstreamer0.10-base-plugins-0.10.20-1 gpm-1.20.5-1
aalib-1.4rc5-5 libcddb-1.3.0-3 libcdio-0.80-2
libraw1394-1.3.0-1 libavc1394-0.5.3-1 libiec61883-1.1.0-1
speex-1.2rc1-1 libshout-2.2.2-2 libdv-1.0.0-1 flac-1.2.1-1
wavpack-4.50.0-1 taglib-1.5-1 libsoup-2.4.1-2
gstreamer0.10-good-plugins-0.10.8-3 dbus-python-0.82.4-1
mutagen-1.14-1 exaile-0.2.13-1 libmad-0.15.1b-2 sdl-1.2.13-1
lame-3.98-1 xvidcore-1.1.3-1 libsndfile-1.0.17-2
jack-audio-connection-kit-0.109.2-1 x264-20080625-1
libmp4v2-1.6-1 faac-1.26-1 lirc-utils-0.8.3-1
ttf-dejavu-2.26-1 mplayer-1.0rc2-5 libmpeg2-0.4.1-1
wxgtk-2.8.8-1 libdvbpsi4-0.1.5-1 fribidi-0.10.9-1
libdvdnav-0.1.10-3 libdvdread-0.9.7-1 libebml-0.7.8-1
libmatroska-0.8.1-1 a52dec-0.7.4-4 faad2-2.6.1-1
libdca-0.0.5-1 vlc-0.8.6i-3 libgsf-1.14.8-1 libwpd-0.8.14-1
neon-0.28.2-2 openoffice-base-2.4.1-2
Total Download Size: 0.00 MB
Total Installed Size: 494.84 MB
checking package integrity...
checking for file conflicts...
error: could not prepare transaction
libgl: /usr/lib/libGL.so exists in filesystem
libgl: /usr/lib/libGL.so.1 exists in filesystem
libgl: /usr/lib/xorg/modules/extensions/libglx.so exists in filesystem
mesa: /usr/include/GL/gl.h exists in filesystem
mesa: /usr/include/GL/glext.h exists in filesystem
mesa: /usr/include/GL/glx.h exists in filesystem
mesa: /usr/include/GL/glxext.h exists in filesystem
Errors occurred, no packages were upgraded.
Last edited by haxit (2008-08-14 20:08:52)

The first one should be owned by mesa, however the one on your system was probably installed by the nvidia installer (can't say for sure, I've always used the arch nvidia package).  It should be safe to force the upgrade of mesa (pacman -Sf mesa) and the carry on installing what you wanted.

Similar Messages

  • Checking package integrity... corrupted [ SOLVED ]

    I got this error,
    checking package integrity...
    error: archive flac-1.1.4-1.pkg.tar.gz is corrupted
    archive flac-1.1.4-1.pkg.tar.gz is corrupted
    prompt#
    What can I do ?
    I got this while running pacman -Syu  Can I do pacman -Syu  "minus flac" ?
    Last edited by go4it (2007-03-28 20:09:00)

    lucke wrote:rm /var/cache/pacman/pkg/flac-1.1.4-1.pkg.tar.gz and run pacman again.
    Good to remember should I have this problem again
    Many thanks !

  • Error with package retrievals

    These error messages showed when I am intalling new softwares/upgrading today.
    :: Retrieving packages from current...
    Control socket read failed: Success
    error: anonymous login failed
    Control socket read failed: Illegal seek
    imlib-1.9.15-1           [################] 100%     535K    69.4K/s  00:00:07
    :: Retrieving packages from extra...
    Control socket read failed: Success
    error: anonymous login failed
    Control socket read failed: Success
    qiv-2.0-1                [################] 100%      26K    24.1K/s  00:00:01
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts... done.
    installing imlib... done.
    installing qiv... done.
    I think the installation is complete but I just wonder what do those messages mean.[/b]

    braincenter wrote:
    I downloaded and installed the netselect program and ran the sortmirrors script. Now I am getting the following message:
    pacman -Syu
    config: line 5: syntax error
    :: Synchronizing package databases...
    failed to synchronize current
    failed to synchronize extra
    Any ideas how to fix?
    The sortmirrors script has been broken for some time. Just reinstall pacman and move the .pacnew files in place under /etc/pacman.d/* or just fix the error on line 5. I made a python script for this a while back which creates a *.sorted file which you can specify to use in pacman.conf so you don't have to worry about it messing up any configs.
    #!/usr/bin/python
    import os, sys, re
    def main():
    if os.getuid() != 0:
    print >>sys.stderr, 'You must be root user to run this program.'
    sys.exit(1)
    old_mirror = '/etc/pacman.d/extra'
    if not os.path.isfile(old_mirror):
    print >>sys.stderr, 'Old mirror ' + old_mirror + ' does not exist.'
    sys.exit(1)
    f = open(old_mirror, 'r')
    old_lines = f.readlines()
    f.close()
    i=0
    old_urls = []
    old_valids = []
    while i<len(old_lines):
    if re.search('//', old_lines[i]):
    old_urls.append(old_lines[i])
    prefix = old_lines[i].split('//')
    suffix = prefix[1].split('/')
    old_valids.append(suffix[0])
    i=i+1
    #print('Testing ' + test_speed)
    i=0
    nums = []
    for url in old_valids:
    num_dots = 60 - int(len(url))
    mirror_name = url + '.'*num_dots
    sys.stdout.write(mirror_name),
    sys.stdout.flush()
    stdin, stdout, stderr = os.popen3('ping -c6 ' + url)
    output = stdout.read()
    error = stderr.read()
    stdin.close()
    stdout.close()
    stderr.close()
    if error != '':
    print(error)
    del(old_urls[i])
    else:
    sep = output.split('n')
    last_line = sep[len(sep)-2]
    ms = last_line.split('/')
    if len(ms) < 5:
    print 'unable to obtain speeds, back connection.'
    i=i+1
    continue
    else:
    print(ms[4] + 'ms')
    nums.append(ms[4])
    i=i+1
    #print('Testing ' + test_speed)
    del(old_valids)
    sorted_mirrors = []
    f_nums = []
    for n in nums:
    f_nums.append(float(n))
    i=0
    while i<len(f_nums):
    mini=min(f_nums)
    idx_num = f_nums.index(mini)
    sorted_mirrors.append(old_urls[idx_num])
    del(f_nums[idx_num])
    del(old_urls[idx_num])
    i=i+1
    del(nums)
    extra = '/etc/pacman.d/extra.sorted'
    current = '/etc/pacman.d/current.sorted'
    testing = '/etc/pacman.d/testing.sorted'
    release = '/etc/pacman.d/release.sorted'
    community = '/etc/pacman.d/community.sorted'
    unstable = '/etc/pacman.d/unstable.sorted'
    mirrors = [ extra, current, testing, release, community, unstable ]
    mirrors_name = [ 'extra', 'current', 'testing', 'release', 'community', 'unstable' ]
    i=0
    while i<len(mirrors):
    if os.path.isfile(mirrors[i]):
    os.remove(mirrors[i])
    f = open(mirrors[i], 'w')
    f.write('#n[' + mirrors_name[i] + ']n#n')
    for line in sorted_mirrors:
    new_urls = line.replace('extra', mirrors_name[i])
    f.write(new_urls)
    f.close()
    i=i+1
    print('==> Append ".sorted" to each of your Include = lines in /etc/pacman.conf.')
    if __name__ == '__main__':
    try:
    main()
    except KeyboardInterrupt:
    sys.exit(0)

  • "E_PACK_ERROR: illegal filename for a PUT" Error in Packaging a PDF file

    Hi Jim,
    As per ContentServer_Technical_Reference.pdf (page no 9) I passed <filename>, <location> and <src> parameter in our packaging request xml. File is packaging successfully and service is also placing the encrypted file to new location listed in <location> but following error is comming:
    <error xmlns="http://ns.adobe.com/adept"
    data="E_PACK_ERROR http://myserverurl/packaging/Package illegal%20filename%20for%20a%20PUT"/>
    My Packaging XML:
    <package xmlns="http://ns.adobe.com/adept" action="add">
    <fileName>9781591439745.pdf</fileName>
    <location>ftp://username:password@myserverurl/www/folder/9781591439745.pdf</location>
    <src>http://myserverurl/folder/9781591439745.pdf</src>
    <metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
    <dc:title>9781591439745</dc:title>
    <dc:creator>Nicolya Christi</dc:creator>
    <dc:format>application/pdf</dc:format>
    <dc:publisher>Work Disribution System</dc:publisher>
    <dc:language>en</dc:language></metadata>
    <permissions><display/><excerpt/></permissions>
    <dataPath>C:/folder/9781591439745.pdf</dataPath>
    <expiration>2011-03-02T15:18:02+05:30</expiration>
    <nonce>LTIyNzc1Mjk4</nonce>
    </package>
    Please suggest me why the "E_PACK_ERROR http://myserverurl/packaging/Package illegal%20filename%20for%20a%20PUT" error is comming.
    I am waiting your reply...
    With regards,
    Mangal Varshney

    Hello Jim,
    I tried as you suggest not to use all three, filename, location and src. I removed the <filename> parameter from packaging xml and then try to package the same error are comming again. Jim this same code was working earlier, we are using same on our production sever till now but suddenly it stop working.
    "E_PACK_ERROR: illegal filename for a PUT"
    I checked the packaging.log file, the log message are:
    02 Mar 2011 05:41:56,673 TRACE AdeptServlet: request POST http://myserverurl/packaging/Package
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: Open jdbc:mysql://127.0.0.1:3306/adept with user=dmr_mysql_dba
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: SELECT distid, name, description, disturl, notifyurl, publickey, sharedsecret, maxloancount, linkexpiration FROM distributor WHERE distid = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: rollback
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: SELECT distid, nonce, expiration FROM distusednonce WHERE distid = ? AND nonce = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@6c2a78
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: INSERT INTO distusednonce(distid, nonce, expiration) VALUES(?, ?, ?)
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@6c2a78
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 3 = Wed Mar 02 06:41:56 CST 2011
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: DELETE FROM distusednonce WHERE expiration < ? AND distid = ? AND nonce = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = Wed Mar 02 05:41:56 CST 2011
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 3 = [B@6c2a78
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection: SELECT resourceid, item, description, title, publisher, creator, language, identifier, thumbnailurl, format, src, downloadtype FROM resourceitem WHERE src = ? AND downloadtype = ?
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection:   obj 1 = http://myserver2url/folder/9781591439745.pdf
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection:   obj 2 = simple
    02 Mar 2011 05:41:56,876 ERROR Package: Error in packaging
    java.io.IOException: illegal filename for a PUT
        at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(Unknown Source)
        at com.adobe.adept.packaging.servlet.Package.aquireLocationStream(Package.java:359)
        at com.adobe.adept.packaging.servlet.Package.doPost(Package.java:535)
        at com.adobe.adept.packaging.servlet.Package.doPost(Package.java:43)
        at com.adobe.adept.servlet.AdeptServlet.doPost(AdeptServlet.java:184)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProto col.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Unknown Source)
    02 Mar 2011 05:41:56,876 TRACE DefaultSQLDatabaseConnection: rollback
    02 Mar 2011 05:41:56,907 ERROR AdeptServlet: request error [myip]: E_PACK_ERROR http://myserverurl/packaging/Package illegal+filename+for+a+PUT
    02 Mar 2011 05:41:56,907 TRACE AdeptServlet: request end http://myserverurl/packaging/Package
    Please debug the above message and suggest me what i will do to rectify this issue.
    With Ragards,
    Mangal Kumar

  • "E_ADEPT_REQUEST_REPLAY" Error in Packaging a PDF file

    Hi Jim,
    As per ContentServer_Technical_Reference.pdf (page no 9) I passed <filename>, <location> and <src> parameter in our packaging request xml. File is packaging successfully and service is also placing the encrypted file to new location listed in <location> but following error is comming:
    <error xmlns="http://ns.adobe.com/adept" data="E_ADEPT_REQUEST_REPLAY http://myserverurl:8080/packaging/Package"/>
    My Packaging XML:
    $request ='<package xmlns="http://ns.adobe.com/adept" action="add">';
    $request .='<fileName>ISBN.pdf</fileName>';
    $request .='<location>ftp://username:[email protected]/www/pdf/[email protected]/www/pdf/ISBN.pdf</location>';
    $request .='<src>http://example.com/pdf/ISBN.pdf</src>';
    $request .='<metadata xmlns:dc="http://purl.org/dc/elements/1.1/">';
    $request .='<dc:title>BISAC SUBJECT HEADINGS</dc:title>';
    $request .='<dc:creator>Book Industry Study Group, Inc.</dc:creator>';
    $request .='<dc:format>';
    $request .='application/pdf';
    $request .='</dc:format>';
    $request .='<dc:publisher>Book Industry Study Group, Inc.</dc:publisher>';
    $request .='<dc:language>en</dc:language>';
    $request .='</metadata>';
    $request .='<permissions>';
    $request .='<display>';
    $request .='<device/>';
    $request .='</display>';
    $request .='</permissions>';
    $request .='<dataPath>C:\books\ISBN.pdf</dataPath>';
    $request .='<expiration>'. $expiration .'</expiration>';
    $request .="<nonce>" . $nonce . "</nonce>";
    $request .='</package>';
    Please suggest me why the "E_ADEPT_REQUEST_REPLAY" error is comming.
    I am waiting your reply...
    With regards,
    Mangal Varshney

    Hi Jim,
    I am generating nonce randomly:
    $expiration = date("c", mktime() + 3600); // Create expiration   
    $nonce = base64_encode(mt_rand(limt1,lim2)); // Create a nonce
    PACKAGING REQUEST
    <?xml version="1.0"?>
    <package xmlns="http://ns.adobe.com/adept" action="add">
      <fileName>ISBN.pdf</fileName>
      <location>ftp://username:[email protected]/www/encrypt_pdf/[email protected]/www/encrypt_pdf/ISBN.pdf</location>
      <src>http://myserver.com/encrypt_pdf/ISBN.pdf</src>
      <metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
        <dc:title>BISAC SUBJECT HEADINGS</dc:title>
        <dc:creator>Book Industry Study Group, Inc.</dc:creator>
        <dc:format>application/pdf</dc:format>
        <dc:publisher>Book Industry Study Group, Inc.</dc:publisher>
        <dc:language>en</dc:language>
      </metadata>
      <permissions>
        <display>
          <device/>
        </display>
      </permissions>
      <dataPath>c:/books/ISBN.pdf</dataPath>
      <expiration>2010-11-01T20:00:23+05:30</expiration>
      <nonce>--------------</nonce>
      <hmac>--------------</hmac>
    </package>
    We are getting "E_ADEPT_REQUEST_REPLAY" error on packaging although the file is displaying in admin console and we are able to download the file also:
    I am attaching packaging log message, as it shows that resource details has saved into the database;
    Packaging log Message:
    01 Nov 2010 08:47:31,412 TRACE AdeptServlet: request POST http://myserver.com:88/packaging/Package
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection: Open jdbc:mysql://mysqlserver.com:88/adept with user=dmr_mysql_dba
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection: SELECT distid, name, description, disturl, notifyurl, publickey, sharedsecret, maxloancount, linkexpiration FROM distributor WHERE distid = ?
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection: rollback
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection: SELECT distid, nonce, expiration FROM distusednonce WHERE distid = ? AND nonce = ?
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:31,412 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@e1b3b3
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection: INSERT INTO distusednonce(distid, nonce, expiration) VALUES(?, ?, ?)
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@e1b3b3
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 3 = Mon Nov 01 09:47:31 CDT 2010
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection: DELETE FROM distusednonce WHERE expiration < ? AND distid = ? AND nonce = ?
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 1 = Mon Nov 01 08:47:31 CDT 2010
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 2 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 3 = [B@e1b3b3
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection: SELECT resourceid, item, description, title, publisher, creator, language, identifier, thumbnailurl, format, src, downloadtype FROM resourceitem WHERE src = ? AND downloadtype = ?
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 1 = http://myserver.com/encrypt_pdf/ISBN.pdf
    01 Nov 2010 08:47:31,428 TRACE DefaultSQLDatabaseConnection:   obj 2 = simple
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection: INSERT INTO resourcekey(resourceid, voucherid, encryptionkey, permissions, defaultitem) VALUES(?, ?, ?, ?, ?)
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 1 = 4c14fb01-426e-4b4e-b71a-37b56d92e8b9
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 2 = 4c14fb01-426e-4b4e-b71a-37b56d92e8b9
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 3 = [B@a42c89
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 4 = [B@67e92a
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 5 = 1
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection: INSERT INTO resourceitem(resourceid, item, description, title, publisher, creator, language, identifier, thumbnailurl, format, src, downloadtype) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 1 = 4c14fb01-426e-4b4e-b71a-37b56d92e8b9
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 2 = 1
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 3 = null
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 4 = BISAC SUBJECT HEADINGS
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 5 = Book Industry Study Group, Inc.
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 6 = Book Industry Study Group, Inc.
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 7 = en
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 8 = null
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 9 = null
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 10 = application/pdf
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 11 = http://myserver.com/encrypt_pdf/ISBN.pdf
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 12 = simple
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection: INSERT INTO distributionrights(distid, resourceid, disttype, permissions, returnable, available) VALUES(?, ?, ?, ?, ?, ?)
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 2 = 4c14fb01-426e-4b4e-b71a-37b56d92e8b9
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 3 = buy
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 4 = null
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 5 = false
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 6 = 0
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection: INSERT INTO distributionrights(distid, resourceid, disttype, permissions, returnable, available) VALUES(?, ?, ?, ?, ?, ?)
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 2 = 4c14fb01-426e-4b4e-b71a-37b56d92e8b9
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 3 = loan
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 4 = null
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 5 = true
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection:   obj 6 = 0
    01 Nov 2010 08:47:33,818 TRACE DefaultSQLDatabaseConnection: commit
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection: rollback
    01 Nov 2010 08:47:33,850 TRACE AdeptServlet: request success [myip]
    01 Nov 2010 08:47:33,850 TRACE AdeptServlet: request end http://myserver.com:88/packaging/Package
    01 Nov 2010 08:47:33,850 TRACE AdeptServlet: request POST http://myserver.com:88/packaging/Package
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection: SELECT distid, name, description, disturl, notifyurl, publickey, sharedsecret, maxloancount, linkexpiration FROM distributor WHERE distid = ?
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection: rollback
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection: SELECT distid, nonce, expiration FROM distusednonce WHERE distid = ? AND nonce = ?
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@571cc4
    01 Nov 2010 08:47:33,850 TRACE DefaultSQLDatabaseConnection: rollback
    01 Nov 2010 08:47:33,850 ERROR AdeptServlet: request error [myip]: E_ADEPT_REQUEST_REPLAY http://myserver.com:88/packaging/Package
    01 Nov 2010 08:47:33,850 TRACE AdeptServlet: request end http://myserver.com:88/packaging/Package
    Please help me to resolve this
    Regards,
    Mangal Kumar

  • Error while starting Integrated Weblogic Server - Jdeveloper 11.1.1.4

    I installed Jdevloper 11.1.1.4, and getting the below error while starting Integrated Weblogic Server:
    [Waiting for the domain to finish building...]
    [05:13:34 PM] Creating Integrated Weblogic domain...
    The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully.
    [05:14:53 PM] Error processing Integrated Weblogic domain:
    I've checked for log files under my "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23" directory but no error/exception is traced.
    Then I tried the below:
    Run from command line:
    F:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py"
    " from DOS prompt I got "Error: ADRS_DOMAIN_PASSWORD environment variable not set."
    After I set ADRS_DOMAIN_PASSWORD environment variable (value is weblogic1) the command line is throwing:
    C:\Documents and Settings\pramod.gujjeti>F:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\sy
    stem11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py"
    CLASSPATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\sys_manifest_classpath\weblogic_patch.jar;F:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifes
    t_classpath\weblogic_patch.jar;F:\Oracle\Middleware\jdk160_21\lib\tools.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;F:\Oracle\Middleware\wlserver_
    10.3\server\lib\weblogic.jar;F:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.4.0.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;F:
    \Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;F:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;F:\Oracle\Middleware\o
    racle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;F:\Oracle\Middleware\oracle_common\c
    ommon\wlst\lib\adfscripting.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;F:
    \Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;F:\Oracle\Middleware\oracle
    _common\common\wlst\resources\jrf-wlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resour
    ces\oamAuthnProvider.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;
    F:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;F:\Oracle\Middleware
    \oracle_common\common\wlst\resources\wsm-wlst.jar
    PATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\native;F:\Oracle\Middleware\patch_jdev1111\profiles\default\native;F:\Oracle\Middleware\wlserver_10.3\server\na
    tive\win\32;F:\Oracle\Middleware\wlserver_10.3\server\bin;F:\Oracle\Middleware\modules\org.apache.ant_1.7.1\bin;F:\Oracle\Middleware\jdk160_21\jre\bin;F:\Oracle\Middlew
    are\jdk160_21\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;F:\Oracle\Middleware\wlserver_10.3\server\native\win\32\oci920_8
    Your environment has been set.
    CLASSPATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\sys_manifest_classpath\weblogic_patch.jar;F:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifes
    t_classpath\weblogic_patch.jar;F:\Oracle\Middleware\jdk160_21\lib\tools.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;F:\Oracle\Middleware\wlserver_
    10.3\server\lib\weblogic.jar;F:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.4.0.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;F:
    \Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;F:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;F:\Oracle\Middleware\o
    racle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;F:\Oracle\Middleware\oracle_common\c
    ommon\wlst\lib\adfscripting.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;F:
    \Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;F:\Oracle\Middleware\oracle
    _common\common\wlst\resources\jrf-wlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resour
    ces\oamAuthnProvider.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;
    F:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;F:\Oracle\Middleware
    \oracle_common\common\wlst\resources\wsm-wlst.jar;F:\Oracle\Middleware\utils\config\10.3\config-launch.jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbynet.
    jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbytools.jar;;
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Creating Default Domain
    Reading template: /F:/Oracle/Middleware/wlserver_10.3/common/templates/domains/wls.jar
    Setting Name to 'DefaultServer'
    Setting ListenAddress to ''
    Setting ListenPort to 7101
    Setting domain administrator to 'weblogic'
    Setting domain password.
    Writing domain: /C:/Documents and Settings/pramod.gujjeti/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/
    Closing template.
    Reading domain: /C:/Documents and Settings/pramod.gujjeti/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/
    Adding domain extension template: /F:/Oracle/Middleware/jdeveloper/common/templates/jdeveloper/adrs_template.jar
    Adding domain extension template: /F:/Oracle/Middleware/jdeveloper/common/templates/domains/jsf_template_1.2.9.0.jar
    Adding domain extension template: /F:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar
    Error: addTemplate() failed. Do dumpStack() to see details.
    Problem invoking WLST - Traceback (innermost last):
    File "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py", line 100, in ?
    File "C:\Documents and Settings\pramod.gujjeti\Local Settings\Temp\WLSTOfflineIni5328235009276840957.py", line 89, in addTemplate
    at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1538)
    at com.oracle.cie.domain.script.jython.WLScriptContext.addTemplate(WLScriptContext.java:420)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: com.oracle.cie.domai
    n.ConfigGroupsException: Multiple definitions of server-group JRF-ADMIN-SVR are not allowed
    C:\Documents and Settings\pramod.gujjeti>
    Appreciate your help in advance!
    Thanks,
    Pramod Gujjeti

    I could see no helpful resolution of the issue in the mentioned thread. Please let me know if I'm missing anything!

  • 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

  • Uploading AIR for IOS thru Application Loader I get the following error - The package does not contain an Info.plist.

    I'm publishing an .fla in AIR for IOS.
    I'm in CC 2014 so first I need to know which AIR should I publish in?
    newest is AIR 14.0.0.178 for IOS
    IOS deployment type is App Store
    publishes with no error.
    I see the following files included .swf and app.xml
    I convert the .ipa to a zip file
    Upload that thru the Application Loader I get the following error
    The package does not contain an Info.plist.
    Where is the infoplist for this and do I convert the .ipa and the info to a zip file?
    I converted the .ipa to a .zip and the intoplist file is NOT THERE  how do I generate this?
    Any help here?

    Ok this is becoming very very frustrating as I have been at this for hours now. So the only way to explain this is to write what I did step by step as I have to be doing something wrong, just to recap:
    I was publishing from Flash CC 2014 using AIR 14.0 and getting Digital Certificate is not valid message.
    Was instructed to download new AIR 17 , I did this installed into Flash and used to publish.
    I used my previous p12, app ID and distribution certificates all generated properly.
    The file worked ONCE but I got an app ID error ( I understood I used the wrong app ID)
    I changed it to the right app ID and the very next time and after 10 attempts I got the same error  Digital Certificate is not valid
    SO I then downloaded AIR 16.0
    RE DID ALL MY CERTIFICATES AND P12'S
    went to publish and I STILL GET THE SAME MESSAGE   Digital Certificate is not valid

  • Error in BW integration in Portal

    Hi  Portal Guru
    Here I am getting error in BW Integration for Bex Web Application Designer. Portal Communication error. pls tell me the solution for this.
    helpful answer rewarded with Max Points.
    Regards
    sumit

    Hi Sumit
    Have you check the system connection test.Please check the system properties properly ,Prerequisite and let me know where you stuck,go through this link for for help
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/connectivity&
    Thanks
    Regards
    Santosh
    Reward if helpful !!!

  • Error logging for Integrated Planning

    Can I turn on error logging for Integrated Planning.  Users get errors and forget to screenshot it to me, so I have no way of finding out what their error was unless I get them to duplicate it.  It would be nice to look up a log of errors by user.  Do they have something like that in Integrated Planning?
    Thanks!

    Hi Dustin,
    Few comments :
    1. UPDATE TASK means that a new background task is create and the function is performed asyncronisly ,with that the user will not wait for the update of the DB to finish ,you can read in SAP help about CALL FUNCTION IN UPDATE
    2. Be aware that the table that you create will be extremely large in no time ,you will have to delete data on a regular basis
    3. The same concept of the thread can be applied to function module 'RRMS_MESSAGE_HANDLING' this function module is responsible of messaging in BEX 'some times IP related messages are invoked from it.
    Regards,
    Eitan.

  • Internal error: Link from Integration Process

    Hello,
    i´ve got a big problem with a process in PI 7.1
    When I try to save my process I get this Error Message:
    Internal error: Link from Integration Process IP_ASSET_EXCHANGE | http://hiddennamespace.com to object type "ifmextmes" with role "d77b01873ae811de8f28000c294f2f80" is not permitted
    For my Abstract interfaces I use External Definitions.
    Does anyone has a tip?
    Thnx,
    Rgds,
    Steffen

    Hi!
    I have same problem.
    Have you decided this issue?
    Thnx,
    Serg

  • How to catch the error occurred in Integration Process, and then save it?

    1. how to catch the error occurred in Integration Process, and then save the detailed error message to the file?
    2. there are fault message type for inbound message interface, how to use the fault message type in IR?
    Thanks,
    Michael
    Message was edited by: Spring Tang
    inital
    Message was edited by: Spring Tang
    detailed message output
    Message was edited by: Spring Tang
    fault message type

    Hi Spring,
    If u give an exception step along with your Transformation Step, whenever some error occurs in your message mapping, this exception block wil be triggered.
    You can configure your exception block to do all exception processing that you want. This exception handling is like any other java Exceptio n Handler. You can do anything that you want in your exception handler block on the basis of your requirements.
    <i>If an exception is triggered at runtime, the system first searches for the relevant exception handler in surrounding blocks. If it does not find the correct exception handler, it continues the search in the next block in the block hierarchy.
    When the system finds the correct system handler, it stops all active steps in the block in which the exception handler is defined and then continues processing in the exception handler branch. Once the exception handler has finished processing, the process is continued after the block.
    If the system fails to find an exception handler, it terminates the integration process with an error.</i>
    Regards,
    Bhavesh

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

  • Active failed.  Communication error when performing integrations.

    I actived an activity but the request failed. In the request log,the last rows indicated the reason,but I can't understand and don't know how to solve it. Below show the last rows of the log:
    Change request state from SUCCEEDED to FAILED
        Error! The following problem(s) occurred  during request processing:
        Error! Communication error when performing integrations. HTTP protocol error [reason: Parsing of the response body failed [reason: Comment must start with "<!--".]]. Request FAILED.
    REQUEST PROCESSING finished at 2010-09-05 03:00:16.468 GMT and took 2 m 36 s 172 ms

    I copied SCs' info from http://host:port/sap/monitoring/ComponentInfo below:
    Software Components 
    Vendor  Name  Version  Location  Applied 
    sap.com  WD-APPS  7.11 SP3 (1000.7.11.3.0.20090708034600)  SAP AG  20100227111730 
    sap.com  WD-FLEX  7.11 SP3 (1000.7.11.3.0.20090708034600)  SAP AG  20100227114200 
    sap.com  ENGINEAPI  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227104639 
    sap.com  LM-MODEL-CE  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227110643 
    sap.com  LM-SLD  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227111825 
    sap.com  WD-RUNTIME  7.11 SP3 (1000.7.11.3.0.20090714195600)  SAP AG  20100227112212 
    sap.com  WD-ADOBE  7.11 SP3 (1000.7.11.3.0.20090708034600)  SAP AG  20100227110000 
    sap.com  EP-MODELING  7.11 SP3 (1000.7.11.3.0.20090708052800)  SAP AG  20100227113917 
    sap.com  J2EE-FRMW  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227110242 
    sap.com  ENGFACADE  7.11 SP3 (1000.7.11.3.0.20090707223600)  SAP AG  20100227111458 
    sap.com  ESREG-BASIC  7.11 SP3 (1000.7.11.3.1.20090819222300)  SAP AG  20100227110634 
    sap.com  CAF  7.11 SP3 (1000.7.11.3.0.20090708030100)  SAP AG  20100227114351 
    sap.com  ESF  7.11 SP3 (1000.7.11.3.0.20090716184100)  SAP AG  20100227111734 
    sap.com  CORE-TOOLS  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227112432 
    sap.com  EP_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227112608 
    sap.com  APP-LIB  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227105136 
    sap.com  MOIN_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227105811 
    sap.com  LMNWABASICMBEAN  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227112135 
    sap.com  ESCONF_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227110749 
    sap.com  VCFRAMEWORK  7.11 SP3 (1000.7.11.3.0.20090708050100)  SAP AG  20100227111401 
    sap.com  LMINTERNALAGENT  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227110251 
    sap.com  APP-LIB-BASIC  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227104638 
    sap.com  ESI-UI  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227112458 
    sap.com  WDEXTENSIONS  7.11 SP3 (1000.7.11.3.0.20090708083400)  SAP AG  20100227114257 
    sap.com  LMNWACDP  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227112218 
    sap.com  EP-CONNECTIVITY  7.11 SP3 (1000.7.11.3.0.20090708052800)  SAP AG  20100227112502 
    sap.com  LMNWAUIFRMRK  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227114149 
    sap.com  SERVERCORE  7.11 SP3 (1000.7.11.3.0.20090721210400)  SAP AG  20100227110257 
    sap.com  CE-RA-EDM  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227110932 
    sap.com  EP-BASIS-API  7.11 SP3 (1000.7.11.3.0.20090708052800)  SAP AG  20100227112504 
    sap.com  ESMP_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227110214 
    sap.com  ESREG-SERVICES  7.11 SP3 (1000.7.11.3.2.20091001033900)  SAP AG  20100227112210 
    sap.com  ESP_FRAMEWORK  7.11 SP3 (1000.7.11.3.2.20090914172400)  SAP AG  20100227112151 
    sap.com  VCKITBI  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227113947 
    sap.com  BI_UDI  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227114349 
    sap.com  VCFREESTYLEKIT  7.11 SP3 (1000.7.11.3.0.20090708050100)  SAP AG  20100227114146 
    sap.com  EP-RUNTIME  7.11 SP3 (1000.7.11.3.0.20090715192600)  SAP AG  20100227114235 
    sap.com  BI-BASE-S  7.11 SP3 (1000.7.11.3.0.20090708074100)  SAP AG  20100227114355 
    sap.com  JSPM  7.11 SP3 (1000.7.11.3.0.20090721210400)  SAP AG  20100227110220 
    sap.com  UDDI  7.11 SP3 (1000.7.11.3.1.20090928214200)  SAP AG  20100227110233 
    sap.com  WSRM  7.11 SP3 (1000.7.11.3.0.20090708051400)  SAP AG  20100227110903 
    sap.com  UMEADMIN  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227112447 
    sap.com  SAP_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227112125 
    sap.com  VTP_BUILDT  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227104841 
    sap.com  J2EE-APPS  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227112629 
    sap.com  MESSAGING  7.11 SP3 (1000.7.11.3.3.20090909003900)  SAP AG  20100227114300 
    sap.com  FRAMEWORK  7.11 SP3 (1000.7.11.3.0.20090721210500)  SAP AG  20100227114152 
    sap.com  LMNWATOOLS  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227114149 
    sap.com  CAF-MF  7.11 SP3 (1000.7.11.3.0.20090708030100)  SAP AG  20100227111731 
    sap.com  CAF-UI  7.11 SP3 (1000.7.11.3.0.20090708093200)  SAP AG  20100227112401 
    sap.com  SAPNWDEMO  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227104638 
    sap.com  MMR_SERVER  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227114353 
    sap.com  DI_CLIENTS  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227112503 
    sap.com  UWLJWF  7.11 SP3 (1000.7.11.3.0.20090708074100)  SAP AG  20100227113931 
    sap.com  VCBASE  7.11 SP3 (1000.7.11.3.0.20090708050100)  SAP AG  20100227112627 
    sap.com  BI-WDALV  7.11 SP3 (1000.7.11.3.0.20090715032600)  SAP AG  20100227111328 
    sap.com  BI-WDEXT  7.11 SP3 (1000.7.11.3.0.20090708083300)  SAP AG  20100227114258 
    sap.com  SOAMONBASIC  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227112447 
    sap.com  EP-ADMIN  7.11 SP3 (1000.7.11.3.0.20090726162100)  SAP AG  20100227114239 
    sap.com  EP-BASIS  7.11 SP3 (1000.7.11.3.0.20090708052800)  SAP AG  20100227112829 
    sap.com  LMNWABASICAPPS  7.11 SP3 (1000.7.11.3.0.20090727232800)  SAP AG  20100227114323 
    sap.com  LMNWABASICCOMP  7.11 SP3 (1000.7.11.3.0.20090726191000)  SAP AG  20100227112449 
    sap.com  LMCFG  7.11 SP3 (1000.7.11.3.0.20090726191000)  SAP AG  20100227112609 
    sap.com  LMCTC  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227114321 
    sap.com  NWTEC  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227112331 
    sap.com  SR-UI  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227112359 
    sap.com  BASETABLES  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227112423 
    sap.com  CFG_ZA_CE  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227105952 
    sap.com  LM-CORE  7.11 SP3 (1000.7.11.3.0.20090707235900)  SAP AG  20100227111845 
    sap.com  DI_CBS  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227111119 
    sap.com  BRMS-BUILDT  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227104935 
    sap.com  XI_CNT_SAP_BASIS  7.11 SP1 (1000.7.11.1.0.20081108235600)  SAP AG  20100226194653 
    sap.com  BRMS-FACADE  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227105857 
    sap.com  BPEM-CONTENT  7.11 SP3 (1000.7.11.3.0.20090708082900)  SAP AG  20100227111116 
    sap.com  ADSSAP  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227104529 
    sap.com  BPEM-PP  7.11 SP3 (1000.7.11.3.0.20090708082900)  SAP AG  20100227110939 
    sap.com  BPEM-HIM  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227110948 
    sap.com  DI_DTR  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227110723 
    sap.com  BPEM-CORE  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227112433 
    sap.com  BPEM-FACADE  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227111735 
    sap.com  SAP_XIGUI  7.11 SP3 (1000.7.11.3.2.20090819222300)  SAP AG  20100227111517 
    sap.com  SAP_XIESR  7.11 SP3 (1000.7.11.3.3.20091001183900)  SAP AG  20100227111819 
    sap.com  SERVICE-COMP  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227112210 
    sap.com  BPEM-WDUI  7.11 SP3 (1000.7.11.3.0.20090708082900)  SAP AG  20100227112404 
    sap.com  GP-VC  7.11 SP3 (1000.7.11.3.0.20090708091600)  SAP AG  20100227112422 
    sap.com  GP-PP  7.11 SP3 (1000.7.11.3.0.20090708091600)  SAP AG  20100227113936 
    sap.com  GP-CORE  7.11 SP3 (1000.7.11.3.0.20090708091600)  SAP AG  20100227112606 
    sap.com  DI_CMS  7.11 SP3 (1000.7.11.3.0.20090708100200)  SAP AG  20100227114059 
    sap.com  BPEM-MON  7.11 SP3 (1000.7.11.3.0.20090708082900)  SAP AG  20100227112502 
    sap.com  VOICERT  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227111455 
    sap.com  BRMS-CORE  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227114147 
    sap.com  IDEUPDSITECE  7.11 SP3 (1000.7.11.3.0.20090708112000)  SAP AG  20100227104951 
    sap.com  BPEM-FLEXUI  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227104710 
    sap.com  BPEM-BUILDT  7.11 SP3 (1000.7.11.3.0.20090708055000)  SAP AG  20100227104645 
    sap.com  VOICEVC  7.11 SP3 (1000.7.11.3.0.20090708094400)  SAP AG  20100227104733 
    sap.com  IDEUPDSITETOOLS  7.11 SP3 (1000.7.11.3.0.20090708053700)  SAP AG  20100227112428 
    test.sap.com  HM-WDUIDMKTSCNR  7.11 SP0 (1000.7.11.0.0.1268322642085)  Local Workplace  20100324083612 
    test.sap.com  HM-WDUIDMKTCNT  7.11 SP0 (1000.7.11.0.0.1268322933427)  Local Workplace  20100324083656 
    test.sap.com  HM-WDUIDMKTCORE  7.11 SP0 (1000.7.11.0.0.1268322880287)  Local Workplace  20100324083659

Maybe you are looking for

  • [CS5.5/6] - XML / Data Merge questions & Best practice.

    Fellow Countrymen (and women), I work as a graphic designer for a large outlet chain retailer which is constantly growing our base of centers.  This growth has brought a workload that used to be manageable with but two people to a never ending sprint

  • Wireless logitech keyboard - unable to set keyboard map in X.

    Hi, i have a wireless usb keyboard - logitech k360. When I restart X i always have to manually set keyboard layout using "setxkbmap pl" which is little annoying. My laptop keyboard has polish layout set correctly. I tried to modify /etc/X11/xorg.conf

  • Verizon Wifi

    This may have been answered somewhere on here and if so please direct me there. Verizon tech support has been less than useless. I  the initial person knew nothing and then put on hold and finally hung when no one answered. I am trying to download so

  • Adobe Acrobat/Reader error

    In trying to print a PDF file I get the error message: "There is a problem with Adove Acrobat/Reader.  Please exit Adobe Acrobat/Reader and try again."  When I do, the same thing happens. Last week I was notified by my computer that there was an upda

  • Can CS4 coexist with older CS2?

    It's a long story, but to make it very short, I wanted to install CS2 back on my computer because (right, wrong, or just misinformed) CS4 using multicam editing has issues. (I posted a thread about this a few days ago....which my last reply would ind