AS3 in Flex - ERROR 1037 Packages cannot be nested

Hi.
I am having some difficulty getting this simple bit of code
working in Flex. It works perfectly in Flash. However in Flex i get
an error 1037, Packages cannot be nested. Can anyone let me know
where im going wrong / how to fix this problem. Thanks. Code
attached.
Barry.

This thread should be in the AIR forum. The couple
suggestions Andrei1 is making are correct, but it isn't the reason
why you're getting that error.
When you want to use a class within the declarative
environment of Flex/AIR, you should use a namespace for that class
and instantiate it via MXML or instantiate it within the Script
block via ActionScript. Make sure that the files are in the same
folder and then see if the following works for you.
TS

Similar Messages

  • Error -- 1037: Packages cannot be nested.

    Hi There,
    I am using Flash CS3 and ActionScript3.0 for development. I
    am trying to run some sample codes from Adobe site [and also from
    Flash Help, copied directly] but on compiling it throws "1037:
    Packages cannot be nested.". I m totally clueless... my only
    assumption is... this might be a Flash/Environment setting issue.
    Even if it is an Env issue... how to resolve it? Any help!!
    Thanks in Advance,
    Siraj Khan
    [email protected]
    // Code Attached

    The example code in the online help is horribly inconsistent.
    The example that you site is meant to be pasted into an .as
    external file. If you want to use this code in an actionscript
    frame space then you'll have to de-package the code. Look at my
    example. You have to remove the package wrapper and the sprite
    extension wrapper. Then remove the "Public" and "private" prefixes
    from the functions. Finally you have to call the first
    function.

  • 1037: Package Cannot Be Nested

    Hi --
    I ran in to the "1037: Package Cannot Be Nested" error when
    using the sample
    code in Flash help and found the "How to Use the Examples"
    portion of the
    Adobe Flash help files to finally get my answer. It appears
    to be an issue
    many others have come across so I thought I would explain in
    more detail how
    to solve this problem.
    What you need to do is save the ActionScript file as the name
    of the class,
    for example "MyClass." Then you set the Flash movie "Document
    Class"
    (FILE-->PUBLISH SETTINGS-->FLASH-->SETTINGS) to
    "MyClass." You do not need
    to call/refer to/load the ActionScript file in the Flash
    movie -- it will do
    it automatically for you! Just make sure the FLA and the AS
    file are both in
    the same directory.
    Rich

    Richard,
    > I ran in to the "1037: Package Cannot Be Nested" error
    when
    > using the sample code in Flash help
    Ah, good one! Yes, thanks for bringing this up. A number of
    the
    current 3rd party ActionScript books -- and, as you pointed
    out, most of the
    sample code in the docs -- is written in the form of class
    files. I've
    heard from a number of people who have tried to copy/paste
    such code into
    keyframes, then see the 1037 compiler error.
    In ActionScript 3.0, all SWFs have a Document class one way
    or the
    other. If you don't assign one yourself, such as the
    MyClass.as you
    mentioned, the SWF will receive a default Document class by
    the name of
    MainTimeline. Which means the SWF's code is already declared
    inside a
    package (automatically). The introduction of a second
    (seemingly original)
    package declaration in timeline code cause those two packages
    to be nested,
    which is not allowed.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • 1037: Packages cannot be nested.

    Hi
    I want to create a package but it is popping me captioned error. I am clueless what is happening.
    any help is highly appriciated.
    <code>
    package scripts.customScripts{
        class test{
    </code>
    thanks in advance.
    Varun

    Provide code snippets where you are declaring packages and
    classes.
    However as a wild guess you have the package statement on the
    timeline of a Flash movie.

  • "Packages cannot be nested" error in Flex

    I want to use SoundFacade class from Adobe. (Here, from github). I simple created an "ActionScript File" and paste all the code. But when I want to compile my app I got following error:
    1037: Packages cannot be nested.
    The only reason I can guess is that the package must somehow put into the project or something.
    Even when I just put a simple empty package I got the error:
    package {  }
    Any idea what is this error about?

    Found the solution in the forum: http://forums.adobe.com/message/4299377

  • Packages cannot be nested : 1037 Error!!

    Hi There,
    I have this problem with CS3, and I dont know if there are
    any settings and stuff. When I do something like the code attached
    I get "1037: packages cannot be nested". If I remove the package
    and the braces, i get "classes cannot be nested", but sometimes the
    Adobe Flash Class help Examples work. When I create a class and
    package, this problem occurs. its quite wierd. And Im not a CS3
    Enthusiast yet, so please forgive me if its some silly mistake
    somewhere.

    This belongs in an external .as file, not anywhere on the
    timeline.

  • Error: Packages cannot be nested

    i have the following AS class file:
    package  {
              public class DropImage {
                        public function DropImage() {
                                   package{
    import flash.display.MovieClip;
    import flash.events.Event;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import com.greensock.TweenNano;
    import com.greensock.easing.*;
    public class DropImage extends MovieClip {
      private var containerArray:Array = new Array  ;
      private var totalImgs:int = -1;
      private var counter:uint = 0;
      private var imageLength:uint;
      public function DropImage() {
       //Loads the xml
       var xmlLoader:URLLoader = new URLLoader  ;
       xmlLoader.load(new URLRequest("DropImages.xml"));
       xmlLoader.addEventListener(Event.COMPLETE,xmlLoaded);
      //Creates new instances of the ImageContainer class with the y position
      //initally set off the stage and the rotation at -90. The -90 rotation
      //gives the dropping effect as the object gets tweened downwards.
      private function xmlLoaded(e:Event):void {
       var xml:XML = new XML(e.target.data);
       imageLength = xml.image.length();
       for (var i:int = 0; i < xml.image.length(); i++) {
        var imgc:ImageContainer = new ImageContainer(xml.image[i].attribute("src"));
        imgc.x = 100;
        imgc.y = -133;
        imgc.rotation = -90;
        imgc.alpha = 0;
        imgc.addEventListener("imageloaded",showImage);
        addChild(imgc);
        containerArray.push(imgc);
      //waits for all images before tweening
      private function showImage(e:Event):void {
       totalImgs++;
       if (totalImgs == imageLength - 1) {
        tweenBox();
      //tweens the images downwards to a randoms rotation between -11 and 11
      //and replays the tween after two seconds.
       private function tweenBox():void {
        TweenNano.to(containerArray[counter],1, {y:192.45,
             rotation:Math.floor(Math.random() * 11) - 11,
             alpha:1,
             ease:Sine.easeOut,
             onComplete:function(){
            if(counter != containerArray.length - 1){
             counter++;  
             TweenNano.delayedCall(2, tweenBox);
    It sais '1037: Packages cannot be nested' and if i click the error it goes to line 7 of the scrip..help please? 3

    as3 Class files all follow the same general format listed below.
    package designation
    import statements
    the class declaration
    class-scoped (ie, not local to a function) variable declarations
    the class constructor
    other class functions
    p.s.  that's as3, not as1,as2.
    p.p.s.  format your code so it's legible.

  • Packages cannot be nested

    I'm a newbie and have started a simple tabbed mobile project.
    I keep getting "packages cannot be nested".
    my main mxml file:
    <?xml version="1.0" encoding="utf-8"?>
    <s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                                                                      xmlns:s="library://ns.adobe.com/flex/spark">
              <fx:Script source="cBut/cFields.as">
              </fx:Script>
              <s:ViewNavigator label="Results" width="100%" height="100%" firstView="views.ResultsView"/>
              <s:ViewNavigator label="Setup" width="100%" height="100%" firstView="views.SetupView"/>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
    </s:TabbedViewNavigatorApplication>
    my .as file:
    package
              public class cFields
                             public function cFields()
    what am I doing wrong?
    thanks

    The <fx:Script source="cBut/cFields.as"> tag will insert your cFields.as file into the MXML file (similar to an include in C/C++). That will cause an invalid syntax, as you've noticed.
    Give your package a name (in this case it should be called cBut because that is the name of the folder it is in) then use the import statement inside your script tag. Make sure you adhere to the recommended file, namespace, package and class naming structure. That's usually a reverse-DNS style: com.adobe.utils.bla.bla.bla.
    If you package name is blank and the source is in the default folder, you don't need to import it.
    Look up the package keyword in the help.

  • Package Cannot Be Nested 1037 & Syntax Error 1084

    Trying to learn how to crerate a Box2D game in WIndows 8 Flash Pro CC.   Opened new document in ActionScript 3.0 Class or ".as" as a Flash Pro application.  Very very new to all developer languages and processes.  Please help.
    package {
        import flash.display.Sprite
        import Box2D.Dynamics.*;
        import Box2D.Collision.*;
        import Box2D.Collision.Shapes.*;
        import Box2D.Common.Math.*;
        public class Main extends Sprite{
            public function Main(){
                trace(*my awsome game starts here *);

    the default directory is usually in the same directory where the main fla is saved but that can be changed in advanced actionscript settings panel (file>publish settings>actionscript settings - wrench icon).
    p.s. you should copy and paste your actualy code.  if that is your actual code, that trace is incorrect and should contain a string.  ie, change the asterisks to quotes.

  • Error 1037

    Hi all,
    I am trying to include a .as file in my flex project.
    I get the error 1037: Packages cannot be nested.
    Any help would be great.
    Regards,
    Pooja

    Remove "package { }" stuff from included .as file

  • ReferenceError: Error #1037: Cannot assign to a method every on Array.

    This code causes a runtime Error#1037 when publishing in AS3, but not in AS2.
    var myArray:Array=[];
    myArray["every"]=[];
    I'm guessing that is because every is an already defined method in the Array class.
    Should I be using the dictionary class instead? Any good tips on that? Anything I should really know?

    i'm not sure what you're trying to do but the Array class is used for ordered lists.  You should NOT be using a string for a key.
    if you want to create an unordered list = hash=map in flash (and use strings for keys), use an object:
    var obj:Object={}
    obj["every"]=[];  // if you want the value to be an array or
    obj["ever"]={};  // if you want the value to be another object/has/map
    use a dictionary if you want to use objects for keys.

  • Error: "The search cannot be executed because the table has pending changes that would be lost."

    Hello,
    I'm working a developing an OA page that will displays the contents of an Oracle table and allows the user to update records in a table as needed.
    When I hit submit button to save the changes in the update page, the control goes back to main page (where all the table records are displayed). It displays the updated record with the new information.However when I hit "Go" button on the mainPG, I get the error "The search cannot be executed because the table has pending changes that would be lost. and the changes are not committed.
    ANy suggestions on where I should look will be greatly appreciated.
    Posting code for my controller
    =======================
              if ( pageContext.getParameter("saveRate") != null )
              personam.invokeMethod("saveRateToDatabase");
    Code from my AM
    =============
        public void saveRateToDatabase()
          getOADBTransaction().commit();
          System.out.println("40--After commit has been executed");
    Code from my VORowImpl
    ===================
    package cggv.oracle.apps.gl.server;
    import oracle.apps.fnd.framework.server.OAViewRowImpl;
    import oracle.jbo.domain.Date;
    import oracle.jbo.domain.Number;
    import oracle.jbo.server.AttributeDefImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class xxCggGlRatesVORowImpl extends OAViewRowImpl {
        public static final int RATEID = 0;
        public static final int FROMCURRENCY = 1;
        public static final int TOCURRENCY = 2;
        public static final int FROMCONVERSIONDATE = 3;
        public static final int TOCONVERSIONDATE = 4;
        public static final int USERCONVERSIONTYPE = 5;
        public static final int CONVERSIONRATE = 6;
        public static final int MODEFLAG = 7;
        /**This is the default constructor (do not remove)
        public xxCggGlRatesVORowImpl() {
        /**Gets the attribute value for the calculated attribute RateId
        public Number getRateId() {
            return (Number) getAttributeInternal(RATEID);
        /**Sets <code>value</code> as the attribute value for the calculated attribute RateId
        public void setRateId(Number value) {
            setAttributeInternal(RATEID, value);
            //populateAttribute(RATEID, value);
        /**Gets the attribute value for the calculated attribute FromCurrency
        public String getFromCurrency() {
            return (String) getAttributeInternal(FROMCURRENCY);
        /**Sets <code>value</code> as the attribute value for the calculated attribute FromCurrency
        public void setFromCurrency(String value) {
            setAttributeInternal(FROMCURRENCY, value);      
        /**Gets the attribute value for the calculated attribute ToCurrency
        public String getToCurrency() {
            return (String) getAttributeInternal(TOCURRENCY);
        /**Sets <code>value</code> as the attribute value for the calculated attribute ToCurrency
        public void setToCurrency(String value) {
            setAttributeInternal(TOCURRENCY, value);
        /**Gets the attribute value for the calculated attribute FromConversionDate
        public Date getFromConversionDate() {
            return (Date) getAttributeInternal(FROMCONVERSIONDATE);
        /**Sets <code>value</code> as the attribute value for the calculated attribute FromConversionDate
        public void setFromConversionDate(Date value) {
            setAttributeInternal(FROMCONVERSIONDATE, value);      
        /**Gets the attribute value for the calculated attribute ToConversionDate
        public Date getToConversionDate() {
            return (Date) getAttributeInternal(TOCONVERSIONDATE);
        /**Sets <code>value</code> as the attribute value for the calculated attribute ToConversionDate
        public void setToConversionDate(Date value) {
            setAttributeInternal(TOCONVERSIONDATE, value);       
        /**Gets the attribute value for the calculated attribute UserConversionType
        public String getUserConversionType() {
            return (String) getAttributeInternal(USERCONVERSIONTYPE);
        /**Sets <code>value</code> as the attribute value for the calculated attribute UserConversionType
        public void setUserConversionType(String value) {
            setAttributeInternal(USERCONVERSIONTYPE, value);
        /**Gets the attribute value for the calculated attribute ConversionRate
        public Number getConversionRate() {
            return (Number) getAttributeInternal(CONVERSIONRATE);
        /**Sets <code>value</code> as the attribute value for the calculated attribute ConversionRate
        public void setConversionRate(Number value) {
            setAttributeInternal(CONVERSIONRATE, value);
        /**Gets the attribute value for the calculated attribute ModeFlag
        public String getModeFlag() {
            return (String) getAttributeInternal(MODEFLAG);
        /**Sets <code>value</code> as the attribute value for the calculated attribute ModeFlag
        public void setModeFlag(String value) {
            setAttributeInternal(MODEFLAG, value);      
        /**getAttrInvokeAccessor: generated method. Do not modify.
        protected Object getAttrInvokeAccessor(int index,
                                               AttributeDefImpl attrDef) throws Exception {
            switch (index) {
            case RATEID:
                return getRateId();
            case FROMCURRENCY:
                return getFromCurrency();
            case TOCURRENCY:
                return getToCurrency();
            case FROMCONVERSIONDATE:
                return getFromConversionDate();
            case TOCONVERSIONDATE:
                return getToConversionDate();
            case USERCONVERSIONTYPE:
                return getUserConversionType();
            case CONVERSIONRATE:
                return getConversionRate();
            case MODEFLAG:
                return getModeFlag();
            default:
                return super.getAttrInvokeAccessor(index, attrDef);
        /**setAttrInvokeAccessor: generated method. Do not modify.
        protected void setAttrInvokeAccessor(int index, Object value,
                                             AttributeDefImpl attrDef) throws Exception {
            switch (index) {
            case RATEID:
                setRateId((Number)value);
                return;
            case FROMCURRENCY:
                setFromCurrency((String)value);
                return;
            case TOCURRENCY:
                setToCurrency((String)value);
                return;
            case FROMCONVERSIONDATE:
                setFromConversionDate((Date)value);
                return;
            case TOCONVERSIONDATE:
                setToConversionDate((Date)value);
                return;
            case USERCONVERSIONTYPE:
                setUserConversionType((String)value);
                return;
            case CONVERSIONRATE:
                setConversionRate((Number)value);
                return;
            case MODEFLAG:
                setModeFlag((String)value);
                return;
            default:
                super.setAttrInvokeAccessor(index, value, attrDef);
                return;
        /**Gets xxCggGlRatesEO entity object.
        public xxCggGlRatesEOImpl getxxCggGlRatesEO() {
            return (xxCggGlRatesEOImpl)getEntity(0);

    Hi,
    Check these links:
    Oracle Apps: Search cannot be executed because the table has pending changes that would be lost
    Re: Getting error in search page search cannot be executed
    http://jneelmani.blogspot.in/2009/11/oaf-search-cannot-be-executed-because.html
    --Sushant

  • 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

  • Launch Error - This file cannot be launched

    Hi all,
    I renamed a class file in a flash build and now every time I try to debug my project (cmd+F11) I get an error window saying Launch Error - This file cannot be launched.
    I have tried wiping the project and moving the files in to a new one and also restarting FB4 but with no luck. I have also tried setting up a brand new blank project and this will not launch either.
    The problem seems to only be with Flash projects as a new Flex project runs ok.
    I am running Flash Builder 4 , Flash CS5 on a Mac 10.6.4 and debugging in Google Chrome 7.0.517.41
    Any suggestions?
    Cheers

    There is no adl listed in my list of active processes in Activity Monitor. I have tried rebooting my machine, restarting all my software and projects and cleaning my projects. No luck yet.
    If I just switch to flash and run the fla directly it works fine so it must be Flex specific.
    Cheers for the suggestionsso far . Keep em coming if you have them

Maybe you are looking for

  • How can you determine which pages are using a specific symbol?

    I want to find all the pages that are using a specific symbol, but I don't know how.  I can't simply switch symbols because some have specific text & want to switch them with more generic smart buttons.  I'll have to find every instance to update the

  • Mapping a Delay plug-in?

    Hi guys, I am trying to assign a button in mainstage to turn my delay plug-in on and off. But i can't get it to do that. I can get it to bypass the delay, but i want it to start off and then when i hit the button, turn on. This is probably the stupid

  • How to add totals for each page in main window

    hi   i have problem in scripts   how to add total in first page ending and carry it to second page , at the end of second page again adding total and so on until last page. very urgent regards ratna

  • HT4528 flickering issues

    i am having flickering issues with my screen lately and i adjusted the brightness and have done many resets and i cant get it to stop.  there is also blurring of lines from white lettering to dark screen. does anyone know a fix for this issue? thanx

  • Classes and Methods question

    Hi I have a class called Users that i would like to use .... well to store users in the db, i would like to be able to call form the servlet: users.addUser(user); or users.deleteUser etc ... My question is: Do i need a new class eg. addUser that impl