Process Validations phase?

Hello world

It is said that in this phase the local values of the components are validated by treating all of the validators on the component.

What validators will deal with this phase. Please give a few examples.

Processes validations: the local values of the components are converted from the input type for the underlying data type. If the converter fails, this phase continues until the end (all the other converters, validators, and required controls are run), but in the end, breaks the phase lifecycle Render Response.

If there is no failure, the http://www.blogger.com/blogger.g?blogID=294172151396534006required attribute on the element is checked. If the value is true and the associated field contains a value, then the associated validators are run. If the value is true and there is no value in field, this phase ends (all remaining validators are run), but the life cycle passes Render Response phase. If the value is false , the phase is completed, except if no value is entered, which case no validation is performed. For more information on the conversion and validation

see this article

http://dstas.blogspot.de/2011/12/validator-or-valuechangelistener-ADF.html

Tags: Java

Similar Questions

  • How can I display the level of process to Phase in a grid or a data form?

    We use quotes by steps. I see that change the display on a grid options indicates the current level of process for the processing unit defined by the POV. But how can break down us by phase?

    Try what is suggested in the 243 Page of the User Guide:
    You can display several phases of submission, discovers the State of level of review and measurements of process in several phases in the control process.
    If you select view a single time period, you can select one or several phases of submission to include in the columns. For each column, you can display one or more of the following options: calculation of the status of newspapers, review, Pass/Fail and Validation level. If selected, review level, pass/fail and Validation are included for each phase. As State of calculation and reviews apply to the entire unit, they are shown that only once regardless of the number of phases are selected. If you select all the notice period, you can select the information status calculation or review level for columns. If you select the information at the level of the exam, you must select a submission phase
    for display. When you select all periods, or trees for display, filter option is not available.
    Here are the options:
    ! http://0ue0ag.Blu.livefilestore.com/y1pceBZ2nCvU8wYKj38bzK_O3B8eXo5XwfxwTkVeMdPu1fi6lHT_DcYrxlptGHYDm6N4lA0H2YMnWx4qtcOe4ttmM-em-fheg5P/phase%20Submission.jpg!
    And the result:

    ! http://0ue0ag.Blu.livefilestore.com/y1pWfMkCFrViEuCRyAHWCphl7y0gZBAK3UY1f2ECi1kme3_xP2FQjyG5f4TC7QHwoHPxBSb0GTKpyU6TXMSp9P5wR5LbJeYl5eu/phase%20Submission2.jpg!

  • JSF keeps displaying the old values after the failure of the Validation Phase

    Hi all
    I would like to ask for help to understand a given behavior that JSF indicates that the Phase of Validation fails.
    I use:

    -Tomcat 7.0.2
    -JSF 1.2_12
    -RichFaces 3.3.3

    Description of the problem.
    I wrote a form with input fields 4: an inputText and selectOneMenu 3. There the inputText while the selectOneMenus require no validation.
    Attached to the first selectOneMenu (line 32) is an a4j tag: support, so that, whenever the change event is triggered, the list of items of the second
    and the third (line 44 and 58) selectOneMenu are filled correctly (note that the agent of the inputText is ignored with the ajaxSingle attribute).
    In particular, after the loading of two lists of items, the actionListener requires the value of the second and the third selectOneMenu null.
    This mechanism seems to work fine until I submit the entire form without completing the text entry: as expected, JSF validation fails but if I change the value of
    the first selectOneMenu again (causing a new submission), page guard showing the specified values before JSF validation failed for the second and third
    selectOneMenu (note that the actionListener is still called and the values of the second and the third selectOneMenu are always forced to null).

    Since I'm on a simple PhaseListener, I noticed the following: before JSF validation fails, whenever I change the value of the first selectOneMenu, life JSF
    cycle always calls the get method for the second and the third selectOneMenu during the Render response Phase. In this way, JSF is able to 'see' that
    These values have been set to null in the appeal Phase.
    After the validation failure, JSF stop to call these getters when I change the value of the first selectOneMenu.

    I hope that my explanation was clear enough, thank you very much for your help.

    Kind regards
    Nico

    Web page
    <?xml version='1.0' encoding='UTF-8' ?> 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
                          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich">
    
    <head>
      <title>Prove Rich</title>
    </head>
    
    <body>
    
      <h2>Prove Rich</h2>
      
      <f:view>
      
      <a4j:outputPanel ajaxRendered="true">
        <h:messages style="color:red" />
      </a4j:outputPanel>
      
      <h:form>
      
      <p>
         Input required: <h:inputText value="#{provaProbReplyBean.inputRequired}" required="true" />
      </p>
      
      <p>
           <h:outputText value="Scegli il canale:" />
           <h:selectOneMenu value="#{provaProbReplyBean.canale}">
         
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItem itemLabel="Profamily" itemValue="Profamily" />
            <f:selectItem itemLabel="Captive" itemValue="Captive" />
            
            <a4j:support event="onchange" action="#{provaProbReplyBean.caricaProcBanche}"
                                  ajaxSingle="true" reRender="procedure, banche" />
         </h:selectOneMenu>
      </p>
      
      <p>
           <h:outputText value="Scegli la procedura:" />
           <h:selectOneMenu id="procedure" value="#{provaProbReplyBean.procedura}">
         
            <f:selectItem itemLabel="--" itemValue="" />
         
            <f:selectItems value="#{provaProbReplyBean.procedureList}" />
            
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
            
         </h:selectOneMenu>
      </p>
      
      <p>
           <h:outputText value="Scegli la banca:" />
           <h:selectOneMenu id="banche" value="#{provaProbReplyBean.banca}">
         
            <f:selectItem itemLabel="--" itemValue="" />
         
            <f:selectItems value="#{provaProbReplyBean.bancheList}" />
            
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
            
         </h:selectOneMenu>
      </p>
      
      <p><h:commandButton value="Submit" /></p>
      
      </h:form>
      
      </f:view>
      
    </body>
    
    </html>
    Bean
    public class ProvaProbReply {
    
         private String inputRequired;
    
         private String canale;
         private String procedura;
         private String banca;
         
         private Map<String, List<SelectItem>> canaliProc = new HashMap<String, List<SelectItem>>();
         private Map<String, List<SelectItem>> canaliBanche = new HashMap<String, List<SelectItem>>();
         
         private List<SelectItem> procedureList = new ArrayList<SelectItem>();
         private List<SelectItem> bancheList = new ArrayList<SelectItem>();
         
         public ProvaProbReply() {
         
              List<SelectItem> l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Cessione del quinto"));
              l.add(new SelectItem("Credito al consumo"));
              l.add(new SelectItem("Mutui"));
         
              canaliProc.put("Profamily", l);
              
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Credito al consumo"));
              
              canaliProc.put("Captive", l);
              
              l = new ArrayList<SelectItem>();
              
              canaliBanche.put("Profamily", l);
              
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("BDL"));
              l.add(new SelectItem("BM"));
              l.add(new SelectItem("BPM"));
              l.add(new SelectItem("CRA"));
              
              canaliBanche.put("Captive", l);
         }
         
         public String getInputRequired() {
         
              return inputRequired;
         }
         
         public void setInputRequired(String ir) {
         
              inputRequired = ir;
         }
         
         public String getCanale() {
         
              return canale;
         }
         
         public void setCanale(String c) {
         
              canale = c;
         }
         
         public String getProcedura() {
         
              System.out.println("\ngetProcedura called\n");
              return procedura;
         }
         
         public void setProcedura(String p) {
         
              procedura = p;
         }
         
         public String getBanca() {
         
              System.out.println("\ngetBanca called\n");
              return banca;
         }
         
         public void setBanca(String b) {
         
              banca = b;
         }
         
         public List<SelectItem> getProcedureList() {
         
              return procedureList;
         }
         
         public List<SelectItem> getBancheList() {
         
              return bancheList;
         }
         
         public String caricaProcBanche() {
         
              System.out.println("\nListener called\n");
         
              procedureList.clear();
              bancheList.clear();
              
              if(canale != null && !canale.equals("")) {
              
                   procedureList.addAll(canaliProc.get(canale));
                   bancheList.addAll(canaliBanche.get(canale));
              }
         
              System.out.println("BEFORE setting:\n");
         
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
         
              procedura = null;
              banca = null;
         
              System.out.println("\n\n\nAFTER setting:\n");
         
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
         
              return "";
         }
    }
    Published by: 869000 on 14.05 giu-28-2011

    I think it has to do with the fact that the UIComponents use the localValue after the validation failure. This prevents values are overwritten when the re-rendering of the page, i.e. the entries keep the value defined by the user.

    The solution is to manipulate the components directly in the AJAX request, when the first drop down menu is changed. Use the binding attribute to place them in your beans and clear the value directly. In this way, that it won't matter that the expression is not evaluated.

  • How to create the custom using Javascripts in PLM for Agile process validator

    I have already created customized using ASP.Net validators. But now I need to create custom using Javascript validator.

    Please provide me the details

    1. how to create custom validator and where to create?

    2 provide me with code samples for custom validators javascripts

    Thank you

    Floquet

    I am currently using 6.1.1.5

  • Development and validation phase

    I have a folder that contains an element with the REQUIRED property to Yes. Whenever I go to the screen, the focus moves to that field, and it won't let me not leave until it is filled. OK so far.
    But, if I want, I could press a button "exit" to exit the form, and in this case, the validation is unnecessary, because all data will be eliminated. But I can not disable the validation, so the only way is to put a value in the field (a space or other) and THEN exit the screen.
    Another question which is pressing the button when the focus returns on the ground, the button disappears.

    My questions are:

    -can I push a button and exit the form without the validation step out?
    -There's a way that the button remains visible, after an attempt to focus fail him?


    The button code is:
    "WHEN BUTTON PRESSED" THEN
    EXIT_FORM (NO_VALIDATE, NO_COMMIT);


    Thanks for any help

    Set the property of the mouse button, go to 'no '.

  • Managed bean validator

    I have several date fields. MinValue, but for example, let's say that I have only two. Each date. MinValue has a validator method in a managed bean. I have to each date. MinValue to a required attribute bound to the variable iterator. I have both date. MinValue to entry, click on a submit button, validation is called on the first date. MinValue. This validator I need the value of the second date. MinValue. The problem is that the value is zero. I think it is normal because the value has not been validated or submitted.

    I want to mention that there are no EO, VO in my case.

    This is the code I use to get the date value. MinValue.

    ValToDate = (Date) ADFUtils.getBoundAttributeValue ("validTo1");

    And the validator

    {public Sub validateDateRightTo (facesContext, UIComponent uIComponent, FacesContext, object)}

    If (object == null) {}

    return;

    }

    Day rightToDate = object (date);

    If (rightToDate! = null) {}

    {for (line: {getSelectedRows())}

    ValToDate = (Date) ADFUtils.getBoundAttributeValue ("validTo1");

    checkDate (rightFromDate, valToDate);


    JDev 11.1.2.4

    Hello

    Looks like you are trying to get the value of the attribute binding inside validator but when the validator is called model would not be updated (phase updatemodel comes after the process validation phase) as a result, you don't see the value inside the validator.

    Instead, bind your component of effective date to a variable of bean with getters and setters (using the binding property) and inside the validator call GetValue on this variable (which is nothing more than an instance of inputText).

    Sample:

    / * Inside bean *.

    private RichInputDate to date;

    Getters and setters for this day

    Validator Inside

    ValToDate date = (Date) toDate.getValue ();

    Jean Lou

  • Transaction validation error in Stored Proc call - prev solns does not

    Hi all

    Our process calls a DB adapter to retrieve the answer from the table to our application via a call to stored procedure, but in the face of the slot issue. Its a synchronous process. The stored procedure is present inside the package and call the stored procedure using this Package.

    What we did is created a DB of type XA data source and tried to call the stored Proc but it appeared a problem "ORA-24777: the use of the non-migratable unauthorized link database ' and therefore, according to this thread DB links in stored proc call into the adapter DB 11 G SOA , we have changed the type of non - XA data source.

    While we do this, we could see that stored procedure is called and the answer is not in the payload to answer within the track of the flow. But the instance is get failed and the error is "error committing transaction:; nested exception is: javax.transaction.xa.XAException: JDBC driver does not support the XA, so may not be a participant in the validation in two phases. To force this participation, set the attribute GlobalTransactionsProtocol (recommended) LoggingLastResource or EmulateTwoPhaseCommit for the Data Source. »

    We have tried properties to support overall transaction as imitate a validation phase, two phase commit and logging last resource but error remains the same.

    Database from where we get the answer is a version of "Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production". The link of database error is due even if we connect to the Oracle database?

    Please could you tell me solutions for this problem.

    Thanks in advance.

    You use a Non - XA because it means (among others) that the issue of validation can be handle by the DB as well.
    The property to imitate two Phase imitating the transaction XA in this way, it allows you to manage a transaction local db.
    You can stay with XA connection, but then you have to use 'pragma AUTONOMOUS_TRANSACTION' in your procedure.

    Enter the following link to find the explanation on your questions:
    http://docs.Oracle.com/CD/E15523_01/integration.1111/e10231/adptr_db.htm#BGBIHCIJ

    Arik

  • Validation on the column to sum as a column <>100%

    Dear friends

    I have created table to use in query

    Select

    "ROWID",.

    "REQUEST_ID",.

    "CALL_FROM_DATE,"

    "CALL_TO_DATE,"

    "TOTEL_CALL,"

    "FILTER_PER,"

    "USER_CNT_SAMPEL_PER,"

    'NET_SAMPEL_COLLECT '.

    from 'EBA_SB_EXT_SURV_REQ_CR_02' where REQUEST_ID =: P325_REQUEST_ID

    I must apply the validation on USER_CNT_SAMPEL_PER column, I need if the sum of USER_CNT_SAMPEL_PER is not equal to 100, it must be the msg of error display "percentage of the sample of the user should be 100%.

    I used the Expression PLSQL

    SUM(:USER_CNT_SAMPEL_PER) = 100

    and the msg of error SUM OF USER_CNT_SAMPEL_PER NOT EQUAL to 100.

    But it does not work.

    How can I do this

    Thank you

    create before the process validation and Informatics

    declare

    l_tot number: = 0;

    Start

    because me in 1.apex_application.g_f05.count

    loop

    l_tot: = l_tot + nvl (to_number (apex_application.g_f05 (i)), 0);

    end loop;

    : P324_CNT: = l_tot;

    end;

    and create process\

    324_cnt = 100

    sum of the user sample shoulde be 100.

  • Is not a valid virtual machine configuration file :(

    2014 01-06 T 19: 19:56.256Z | VMX | I120: Log for VMware Workstation pid = 8888 version 10.0.0 = Build = build-1295980 option = output

    2014 01-06 T 19: 19:56.256Z | VMX | I120: The process is 64-bit.

    2014 01-06 T 19: 19:56.256Z | VMX | I120: Host = encoding windows-1252 = windows-1252 codepage

    2014 01-06 T 19: 19:56.256Z | VMX | I120: Host is Windows 7 Enterprise 64-bit Service Pack 1 (Build 7601)

    2014 01-06 T 19: 19:56.211Z | VMX | I120: VTHREAD initialize main thread id 0 "vmx" host 9140

    2014 01-06 T 19: 19:56.214Z | VMX | I120: REGIONAL windows-1252-> user NULL = 809 system settings = 809

    2014 01-06 T 19: 19:56.214Z | VMX | I120: Msg_SetLocaleEx: HostLocale = windows-1252 UserLocale = NULL

    2014 01-06 T 19: 19:56.220Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.220Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.223Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.223Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.223Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.223Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.224Z | VMX | I120: Msg_Reset:

    2014 01-06 T 19: 19:56.224Z | VMX | I120: [msg.dictionary.load.openFailed] cannot open the file 'C:\Users\Anubis\AppData\Roaming\VMware\config.ini': the system cannot find the specified file.

    2014 01-06 T 19: 19:56.224Z | VMX | I120: ----------------------------------------

    2014 01-06 T 19: 19:56.224Z | VMX | I120: ConfigDB: cannot load C:\Users\Anubis\AppData\Roaming\VMware\config.ini

    2014 01-06 T 19: 19:56.225Z | VMX | I120: OBJLIB-LIB: Objlib initialized.

    2014 01-06 T 19: 19:56.226Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.226Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.226Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.227Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.227Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.227Z | VMX | I120: FILE: FileCreateDirectoryRetry: not reproducible error (workstation C:\ProgramData\VMware\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.227Z | VMX | I120: Msg_Reset:

    2014 01-06 T 19: 19:56.227Z | VMX | I120: [msg.dictionary.load.openFailed] cannot open the file 'C:\Users\Anubis\AppData\Roaming\VMware\config.ini': the system cannot find the specified file.

    2014 01-06 T 19: 19:56.227Z | VMX | I120: ----------------------------------------

    2014 01-06 T 19: 19:56.227Z | VMX | I120: Optional preferences PREFS not found in C:\Users\Anubis\AppData\Roaming\VMware\config.ini file. Using the default values.

    2014 01-06 T 19: 19:56.228Z | VMX | I120: FILE: FileLockDynaLink: other process validation tools are: available

    2014 01-06 T 19: 19:56.253Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.253Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.253Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.253Z | VMX | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:56.256Z | VMX | I120: Hostname = unknown

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = fe80::95a:6 has 88: 8ae4:4f1b % 11

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = fe80::20b6:a173:c848:5 b 85% 16

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = fe80::ec57:68ce:ecaa:fc40% 25

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = fe80::a0fb:bd4e:fee0:6cad % 26

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 2002:2ef6:3 d 99: 2ef6:3 d 99

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 46.246.61.153

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 192.168.0.3

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 192.168.56.1

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 192.168.47.1

    2014 01-06 T 19: 19:56.261Z | VMX | I120: IP = 192.168.17.1

    2014 01-06 T 19: 19:56.261Z | VMX | I120: HOSTINFO 46709256584 @ 3215390Hz-> 0 Hz 1000000000

    2014 01-06 T 19: 19:56.261Z | VMX | I120: HOSTINFO ((x * 2608892855) > > 23) + 14526777954621

    2014 01-06 T 19: 19:56.281Z | VMX | I120: System uptime 14526576964 us

    2014 01-06 T 19: 19:56.281Z | VMX | I120: command line: "C:\Program Files (x 86) \VMware\VMware" "-s" 'vmx.stdio.keep = TRUE' "-#" "product = 1; name = VMware Workstation; version = 10.0.0. BuildNumber = 1295980; licensename = VMware Workstation; licenseversion = 10.0; ""-@ ""pipe=\\.\pipe\vmx37eb5fa079a1477e;" "Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmx"

    2014 01-06 T 19: 19:56.281Z | VMX | I120: Msg_SetLocaleEx: HostLocale = windows-1252 UserLocale = NULL

    2014 01-06 T 19: 19:56.328Z | VMX | I120: Connection "ui" in the pipe "\\.\pipe\vmx37eb5fa079a1477e' user '(null) '.

    2014 01-06 T 19: 19:56.328Z | VMX | I120: VMXVmdb: local connection timeout: 60000 ms.

    2014 01-06 T 19: 19:56.387Z | VMX | I120: VmdbAddConnection: cnxPath = / db/connection / #1 /, cnxIx = 1

    2014 01-06 T 19: 19:56.388Z | VMX | I120: Vix: [9140 mainDispatch.c:475]: VMAutomation: initialize VMAutomation.

    2014 01-06 T 19: 19:56.389Z | VMX | I120: Vix: [9140 mainDispatch.c:772]: VMAutomationOpenListenerSocket() to listen

    2014 01-06 T 19: 19:56.401Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 0, newAppState = 1870, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.401Z | VMX | I120: Past vmx/execState/val of poweredOff

    2014 01-06 T 19: 19:56.402Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 1, newAppState = 1873, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.402Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 2, newAppState = 1877, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.402Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 3, newAppState = 1881, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.407Z | VMX | I120: HD: version of the host is 6.1.7601

    2014 01-06 T 19: 19:56.407Z | VMX | I120: HD: addr fffff80003582540

    2014 01-06 T 19: 19:56.407Z | VMX | I120: HD: fffff80003645c00, 0

    2014 01-06 T 19: 19:56.408Z | VMX | I120: Limit locked delta-2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Locked limit delta 2633 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Limit locked delta-2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Locked limit delta 2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Limit locked delta-2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Locked limit delta 2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Limit locked delta-2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Locked limit delta 2560 pages

    2014 01-06 T 19: 19:56.409Z | VMX | I120: Limit locked delta-2560 pages

    2014 01-06 T 19: 19:56.410Z | VMX | I120: Locked limit delta 2560 pages

    2014 01-06 T 19: 19:56.410Z | VMX | I120: VerificationOfHostParameters status 0

    2014 01-06 T 19: 19:56.412Z | VMX | I120: FeatureCompat: masks VCA:

    2014 01-06 T 19: 19:56.425Z | VMX | I120: Common: mask 0 = 0xffffffffffffffff

    2014 01-06 T 19: 19:56.425Z | VMX | I120: Common: mask 1 = 0xffffffffffffffff

    2014 01-06 T 19: 19:56.425Z | VMX | I120: Common: mask 2 = 0xffffffffffffffff

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID vendor: GenuineIntel

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID family: 0 x 6 model: 0x2a stepping: 0 x 7

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID code name: Sandy Bridge

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID name: Intel (r) Core i5 - 2500 K CPU @ 3.30 GHz

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 00000000, 0 level: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000001, 0: 0x000206a7 0 x 00100800 0x1f9ae3bf 0xbfebfbff

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 00000002, 0 level: 0x76035a01 0x00f0b0ff 0 x 00000000 0x00ca0000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000004, 0: 0x0000003f 0x01c0003f 0x1c004121 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000004, 1: 0x0000003f 0x01c0003f 0x1c004122 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000004, 2: 0x1c004143 0x01c0003f 0x000001ff 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000004, 3: 0x1c03c163 0x02c0003f 0x00001fff 0 x 00000006

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000004, 4: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000005, 0: 0 x 00000040 00000040 0 x 0 x 00000003 0 x 00001120

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 00000006, 0 level: 0 x 00000077 0x00000002 0 x 00000009 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 00000007, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 00000008, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000, 0: 0 x 07300803 0x00000000 0x00000000 0 x 00000603

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000b, 0 level: 0x00000001 0x00000001 0x00000100 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000b, 2: 0 x 00000000 0x00000000 0x00000002 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level c 0000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 0: 0 x 00000007 0 x 00000340 x 0 00000340 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 1 0000000d level: 0x00000001 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 2: 0x00000100 0 x 00000240 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d 3: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 4: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 5 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 6: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 7 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 8: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 9: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, e: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, f.: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 10: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 11: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 12: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 13: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 14: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 15: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 16: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 17: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 18: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 19: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 1a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 1B: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 1: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000 d, 1 d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 1st level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 1f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 20: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 21: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 22: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 23: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 24: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 25: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 26: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 27: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 28: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 29: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 2 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level 0000000d, 2 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 2 c level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 2d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, 2nd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 2f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 30: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 31: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 32: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 33: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 34: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 35: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID level d 0000000, 36: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 37: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.425Z | VMX | I120: hostCPUID 0000000d, level 38: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 0000000d, 39: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 0000000d, 3 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 0000000d, 3 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID 0000000d, 3 c of level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID 0000000d, 3d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: 0000000d hostCPUID, level 3: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level d 0000000, 3f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000000, 0: 0 x 80000008 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000001, 0: 0x00000000 0x00000000 0x00000001 0 x 28100800

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000002, 0: 0 x 20202020 0 x 49202020 0x6c65746e 0 x 20295228

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000003, 0: 0x65726f43 0x294d5428 0x2d356920 0 x 30303532

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000004, 0: 0x5043204b 0 x 20402055 0x30332e33 0x007a4847

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000006, 0: 0x00000000 0x00000000 0 x 01006040 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: hostCPUID level 80000008, 0: 0 x 00003024 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID of hostCPUID differences.

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [1] 00000001, 0: 0x000206a7 0 x 02100800 0x1f9ae3bf 0xbfebfbff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [1] 0000000b, 0: 0x00000001 0x00000001 0x00000100 0x00000002

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [1] 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0x00000002

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [1] 0000000b, 2: 0 x 00000000 0x00000000 0x00000002 0x00000002

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [2] 00000001, 0: 0x000206a7 0 x 04100800 0x1f9ae3bf 0xbfebfbff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [2] 0000000b, 0: 0x00000001 0x00000001 0x00000100 0 x 00000004

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [2] 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0 x 00000004

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [2] 0000000b, 2: 0 x 00000000 0x00000000 0x00000002 0 x 00000004

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [3] 00000001, 0: 0x000206a7 0 x 06100800 0x1f9ae3bf 0xbfebfbff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [3] 0000000b, 0: 0x00000001 0x00000001 0x00000100 0 x 00000006

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [3] 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0 x 00000006

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID level [3] 0000000b, 2: 0 x 00000000 0x00000000 0x00000002 0 x 00000006

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPUID Maximum physical address Bits supported on all processors: 36

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x3a = 0x5

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 480 = 0xda040000000010

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 481 = 0x7f00000016

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 482 = 0xfff9fffe0401e172

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 483 = 0x7fffff00036dff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 484 = 0xffff000011ff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 485 = 0x100401e5

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 486 x 0 = 0 x 80000021

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 487 = 0xffffffff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 488 = 0x2000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 489 = 0x627ff

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48a = 0x2a

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48b = 0xff00000000

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48c = 0xf0106114141

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48d = 0x7f00000016

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48e = 0xfff9fffe04006172

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0x48f = 0x7fffff00036dfb

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 490 = 0xffff000011fb

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0 x 491 = 0

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0xc0010114 = 0

    2014 01-06 T 19: 19:56.426Z | VMX | I120: Common: MSR 0xce = 0 x 70012100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPU [0]: MSR 0XCE = 0 X 100070012100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPU [1]: MSR 0XCE = 0 X 100070012100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPU [2]: MSR 0XCE = 0 X 100070012100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: CPU [3]: MSR 0XCE = 0 X 100070012100

    2014 01-06 T 19: 19:56.426Z | VMX | I120: VMMon_GetkHzEstimate: calculated 3292559 kHz

    2014 01-06 T 19: 19:56.426Z | VMX | I120: HOSTINFO: host supports the constant rate of TSC.

    2014 01-06 T 19: 19:56.426Z | VMX | I120: TSC kHz estimates: Memoirs of vmmon 3292559, 0, osReported 3701000. With the help of 3701000 kHz.

    2014 01-06 T 19: 19:56.426Z | VMX | I120: TSC of measured first delta 227

    2014 01-06 T 19: 19:56.426Z | VMX | I120: TSC 218 min Delta

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: RefClockToPTSC 0 3215390 Hz-> 0 to 3701000000 Hz

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: RefClockToPTSC ((x * 2413878114) > > 21) +-53764215493985

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: tscOffset-47830821676705

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: using TSC

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: material TSCs are synchronized.

    2014 01-06 T 19: 19:56.426Z | VMX | I120: PTSC: PTSC current = 147894

    2014 01-06 T 19: 19:56.427Z | VMX | I120: VMIOP: Init began

    2014 01-06 T 19: 19:56.433Z | VMX | I120: MACWireless: "emulated" registered wireless module

    2014 01-06 T 19: 19:56.467Z | VMX | I120: ConfigCheck: no rules file found. Controls are disabled.

    2014 01-06 T 19: 19:56.467Z | VMX | I120: change directory to Z:\Virtual XP Professional\ Machines\VMware\Windows.

    2014 01-06 T 19: 19:56.467Z | VMX | I120: Config file: Machines\VMware\Windows XP Professional\Windows XP Professional.vmx Z:\Virtual

    2014 01-06 T 19: 19:56.468Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 1, newAppState = 1875, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.468Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 2, newAppState = 1878, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.715Z | VMX | I120: VMXVmdbCbVmVmxExecState: change of State Exec asked State receiver without reset, hard, softOptionTimeout: 0.

    2014 01-06 T 19: 19:56.715Z | VMX | W110: PowerOn

    2014 01-06 T 19: 19:56.715Z | VMX | I120: VMX_PowerOn: VMX build 1295980, UI build 1295980

    2014 01-06 T 19: 19:56.715Z | VMX | I120: HostWin32: WIN32 NUMA node 0, CPU 0x000000000000000f mask

    2014 01-06 T 19: 19:56.723Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 0, newAppState = 1871, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.724Z | VMX | I120: HOST Windows version 6.1, build 7601, platform 2, "Service Pack 1", SMP

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT---C:\Users\Anubis\AppData\Roaming\VMware\preferences.ini USER PREFERENCES

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.eula.0.appName = "VMware Workstation"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.eula.0.buildNumber = "1035888".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.trayicon.enabled = 'true '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.usbDev.maxDevs = '0 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.keyboardAndMouse.maxProfiles = '0 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.license.maxNum = '1 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.license0.version = "8.0 +.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.hostMRU.count = '1 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.hostMRU0.name = "localhost".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window.count = '1 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab.count = '2 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab0.dest = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab0.file = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab0.type = 'Home'

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab0.focused = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.sidebar = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.sidebar.width = "252".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.statusBar = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tabs = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.thumbnailBar = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.thumbnailBar.size = "100".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.thumbnailBar.view = 'open-vms.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.placement.left = "33".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.placement.top = "32".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.placement.right = "1973."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.placement.bottom = '1269 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.maximized = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab1.dest = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab1.file = "Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmx"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab1.type = "vm".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.ws.session.window0.tab1.focused = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.isoLocationMRU.count = '3 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.isoLocationMRU0.location = "Y:\Operating Systems\Linux\kali-linux-1.0.5-amd64.iso"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.guestKey = "debian7-64.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.installMediaType = more 'late '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT hint.vmui.showAllUSBDevs = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT hints.hideAll = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.isoLocationMRU1.location = "Y:\Operating Systems\Linux\linuxmint-15-cinnamon-dvd-64bit-rc.iso"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pref.fullscreen.autohide = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmWizard.isoLocationMRU2.location = "F:\Operating Systems\Linux\linuxmint-15-cinnamon-dvd-64bit.iso"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - default USER IS C:\Users\Anubis\AppData\Roaming\VMware\config.ini

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - HOST by default IS C:\ProgramData\VMware\VMware Workstation\config.ini

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT authd.client.port = '902 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: = DICT authd.proxy.nfc "vmware - pass: ha - nfc".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled = 'no '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.componentDownloadEnabled = 'yes '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled = 'no '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - SITE by default IS C:\ProgramData\VMware\VMware Workstation\config.ini

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT authd.client.port = '902 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: = DICT authd.proxy.nfc "vmware - pass: ha - nfc".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled = 'no '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.componentDownloadEnabled = 'yes '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled = 'no '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - NON PERSISTENT

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmx.stdio.keep = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT gui.available = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - COMMAND LINE

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmx.stdio.keep = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT gui.available = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - REGISTRATION

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmx.stdio.keep = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT gui.available = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT - Machines\VMware\Windows XP Professional\Windows XP Professional.vmx Z:\Virtual CONFIGURATION

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT config.version = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT virtualHW.version = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT scsi0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT memsize = "2048".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT scsi0:0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT scsi0:0.fileName = "Windows XP Professional.vmdk"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ide1:0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ide1:0.fileName = "automatic detection".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ide1:0.deviceType = "cdrom-raw"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT floppy0.fileType = "peripheral".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT floppy0.fileName = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT floppy0.clientDevice = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.connectionType = "nat".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.wakeOnPcktRcv = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.addressType = "generated".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ehci.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT sound.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT sound.fileName = "-1".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT sound.autodetect = "TRUE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT mks.enable3d = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT serial0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT serial0.fileType = "thinprint".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge4.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge4.virtualDev = "pcieRootPort"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge4.functions = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge5.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge5.virtualDev = "pcieRootPort"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge5.functions = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge6.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge6.virtualDev = "pcieRootPort"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge6.functions = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge7.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge7.virtualDev = "pcieRootPort"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge7.functions = '8 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmci0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT hpet0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb.vbluetooth.startConnected = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT buslogic.noDriver = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT displayName = "Windows XP Professional"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT guestOS = "winxppro.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT nvram = "Windows XP Professional.nvram"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT virtualHW.productCompatibility = "hosted".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT powerType.powerOff = "hard."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT powerType.powerOn = "hard."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT powerType.suspend = "hard."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT powerType.reset = "hard."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT extendedConfigFile = "Windows XP Professional.vmxf"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT checkpoint.vmState = "Windows XP Professional - 979000f6.vmss.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.generatedAddress = "00: 0C: 29:07:ae:46.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmci0.id = "1928207944".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT tools.syncTime = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT uuid.location = "56 4 d eb 0 b 67 d0 6 b 19 - c7 76 cb 7A fe 07 ae 46"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT uuid.bios = "56 4 d eb 0 b 67 d0 6 b 19 - c7 76 cb 7A fe 07 ae 46"

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT cleanShutdown = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT replay.supported = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT unity.wasCapable = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT replay.filename = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT scsi0:0.redo = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb.autoConnect.device0 = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb.autoConnect.device1 = «»

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge0.pciSlotNumber = "17".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge4.pciSlotNumber = "21".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge5.pciSlotNumber = "22".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge6.pciSlotNumber = "23".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT pciBridge7.pciSlotNumber = "24".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT scsi0.pciSlotNumber = "16".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb.pciSlotNumber = "32".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.pciSlotNumber = "33".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT sound.pciSlotNumber = "34".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ehci.pciSlotNumber = "35".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmci0.pciSlotNumber = '36 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb:1.present = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ethernet0.generatedAddressOffset = '0 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT tools.remindInstall = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT vmotion.checkpointFBSize "134217728 =."

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb:1.speed = '2 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb:1.deviceType = "hub".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb:1.port = "1".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT usb:1.parent = "-1".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT floppy0.autodetect = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ide1:0.autodetect = 'TRUE '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT floppy0.startConnected = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT ide1:0.startConnected = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT softPowerOff = "FALSE".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT toolsInstallManager.updateCounter = '2 '.

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT gui.lastPoweredViewMode = "full screen".

    2014 01-06 T 19: 19:56.724Z | VMX | I120: DICT numvcpus = '2 '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT usb:0.present = 'TRUE '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT usb:0.deviceType = 'hidden '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT usb:0.port = '0 '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT usb:0.parent = "-1".

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT - default USER IS C:\Users\Anubis\AppData\Roaming\VMware\config.ini

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT - HOST by default IS C:\ProgramData\VMware\VMware Workstation\config.ini

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT authd.client.port = '902 '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: = DICT authd.proxy.nfc "vmware - pass: ha - nfc".

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled = 'no '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.componentDownloadEnabled = 'yes '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled = 'no '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT - SITE by default IS C:\ProgramData\VMware\VMware Workstation\config.ini

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT authd.client.port = '902 '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: = DICT authd.proxy.nfc "vmware - pass: ha - nfc".

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled = 'no '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.autoSoftwareUpdateEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.componentDownloadEnabled = 'yes '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled = 'no '.

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT installerDefaults.dataCollectionEnabled.epoch "32397 =."

    2014 01-06 T 19: 19:56.725Z | VMX | I120: DICT - Workstation\settings.ini C:\ProgramData\VMware\VMware GLOBAL SETTINGS

    2014 01-06 T 19: 19:56.729Z | VMX | I120: DUMPER: Restore checkpoint 8.

    2014 01-06 T 19: 19:56.730Z | VMX | I120: Controlled in VMware Workstation, build-1295980 10.0.0,, Windows host

    2014 01-06 T 19: 19:56.730Z | VMX | I120: VM Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional recovery - 979000f6.vmss with 2048 MB of memory.

    2014 01-06 T 19: 19:56.730Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 1, newAppState = 1873, success = 1 additionalError = 0

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VMX (0x00da040000000010) basic information

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Revision of VMCS ID 16

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Length of region VMCS 1024

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Width of physical-address natural VMX

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes MMS dual-monitor mode

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Advanced input/OUTPUT info Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Real VMX MSRs Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Memory Type VMCS WB

    2014 01-06 T 19: 19:56.738Z | VMX | I120: True pin VM - execution of controls (0x0000007f00000016)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: External-break out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: NMI out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: MNI virtual {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Activate timer VMX-preemption {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Process posted interruptions {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: True primary based on CPU VM-tests (0xfff9fffe04006172)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Interrupt-window output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Use TSC compensating {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: HLT out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: INVLPG output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: MWAIT out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: RDPMC output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: RDTSC output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CR3-load output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CR3-store outgoing {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CR8-load output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CR8-store outgoing {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Use TPR shadow {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: NMI-window output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: MOV - DR out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Unconditional I/O output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Use bitmaps I/O {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Flag of trap monitor {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Use MSR bitmaps {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: MONITOR output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: BREAK out {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Activate the secondary controls {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Secondary based on the VM - execution of controls (0x000000ff00000000) processor

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Virtualize APIC access to {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Enable EPT {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Descriptor-table output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Enable RDTSCP {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Virtualize x2APIC mode {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Activate VPID {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: WBINVD output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Unrestricted comments {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Virtualization of registry-APIC {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Delivery of Virtual-interruption {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: BREAK-loop exit {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: RDRAND out of {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Enable INVPCID {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Activation of the functions of the machine virtual {0}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: True VM-output controls (0x007fffff00036dfb)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Save debug control {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Size of the host {0,1} address space

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_PERF_GLOBAL_CTRL {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Acknowledge interruption on output {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Save IA32_PAT {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_PAT {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Save IA32_EFER {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_EFER {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Save timer VMX-preemption {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: True VM-entry controls (0x0000ffff000011fb)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Debug load control {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: IA - 32 comments mode {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Entry to SMM {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Disable mode double screen {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_PERF_GLOBAL_CTRL {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_PAT {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Load IA32_EFER {0,1}

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VPID and capabilities of EFA (0x00000f0106114141)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: R = 0 / 0 = W/X = 1 Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes length 3 Page-market

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes type WB EFA memory

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes Super-page 2MB

    2014 01-06 T 19: 19:56.738Z | VMX | I120: INVEPT support Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Access & Dirty bit no

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type 1 INVEPT Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type INVEPT 2 Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: INVVPID support Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type INVVPID 0 Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type 1 INVVPID Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type INVVPID 2 Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Type 3 INVVPID Yes

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VMX various data (0x00000000100401e5)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: TSC preemption timer 5 report

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VM-exit records EFER. Yes LMA

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes activity state HLT

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes to shutdown activity state

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Yes waiting-for-SIPI activity state

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CR3 target supported 4

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Maximum size of list MSR 512

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Enable all VMWRITEs not

    2014 01-06 T 19: 19:56.738Z | VMX | I120: MSEC revision ID 0

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VMX-correction bit in CR0 (0 x 0000000080000021/0x00000000ffffffff)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Fixed at 0 0xffffffff00000000

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Fixed at 1 0 x 0000000080000021

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Variable 0x000000007fffffde

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VMX-correction of the Bits in CR4 (0 x 0000000000002000/0x00000000000627ff)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Fixed at 0 0xfffffffffff9d800

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Fixed at 1 0 x 0000000000002000

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Variable 0x00000000000607ff

    2014 01-06 T 19: 19:56.738Z | VMX | I120: VMCS enumeration (0x000000000000002a)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Above index 0 x 15

    2014 01-06 T 19: 19:56.738Z | VMX | I120: Functions VM (0 x 0000000000000000)

    2014 01-06 T 19: 19:56.738Z | VMX | I120: hostCpuFeatures = 0xc6002fd

    2014 01-06 T 19: 19:56.738Z | VMX | I120: hostNumGenPerfCounters = 8

    2014 01-06 T 19: 19:56.738Z | VMX | I120: hostNumFixedPerfCounters = 3

    2014 01-06 T 19: 19:56.738Z | VMX | I120: hostPerfCtrArch = 3

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CPU0: PMC: IA32, Nehalem-C or later PMC: Patch 0 level x 28, smmFrz (hw): (1).

    2014 01-06 T 19: 19:56.738Z | VMX | I120: [c: 0 f: 1 e:0]

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CPU1: PMC: IA32, Nehalem-C or later PMC: Patch 0 level x 28, smmFrz (hw): (1).

    2014 01-06 T 19: 19:56.738Z | VMX | I120: [c: 0 f: 1 e:0]

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CPU2: PMC: IA32, Nehalem-C or later PMC: Patch 0 level x 28, smmFrz (hw): (1).

    2014 01-06 T 19: 19:56.738Z | VMX | I120: [c: 0 f: 1 e:0]

    2014 01-06 T 19: 19:56.738Z | VMX | I120: CPU3: PMC: IA32, Nehalem-C or later PMC: Patch 0 level x 28, smmFrz (hw): (1).

    2014 01-06 T 19: 19:56.738Z | VMX | I120: [c: 0 f: 1 e:0]

    2014 01-06 T 19: 19:56.739Z | VMX | I120: MONITOR MODE: license modes: BT32 HV HWMMU

    2014 01-06 T 19: 19:56.739Z | VMX | I120: MONITOR MODE: user requested modes: BT32 HV HWMMU

    2014 01-06 T 19: 19:56.739Z | VMX | I120: MONITOR MODE: favorite guestOS of modes: HWMMU HV BT32

    2014 01-06 T 19: 19:56.739Z | VMX | I120: MONITOR MODE: filtered list: BT32 HV HWMMU

    2014 01-06 T 19: 19:56.739Z | VMX | I120: HV settings: virtual exec = "hardware"; MMU virtual = "hardware".

    2014 01-06 T 19: 19:56.756Z | VMX | I120: OvhdMem_PowerOn: lib/overheadmem: paged 626512 non paged 37541 anonymous 21541

    2014 01-06 T 19: 19:56.756Z | VMX | I120: OvhdMem_PowerOn: first admission: paged 590517 non paged 36706 anonymous 6677

    2014 01-06 T 19: 19:56.756Z | VMX | I120: VMMEM: initial booking: 428 MB (MainMem = 2048MB)

    2014 01-06 T 19: 19:56.756Z | VMX | I120: MemSched_PowerOn: minGuestSize ball 26214 (80% size required min 32768)

    2014 01-06 T 19: 19:56.757Z | VMX | I120: MemSched: mem reserved (in MB) min max recommended 128 7650 7650

    2014 01-06 T 19: 19:56.757Z | VMX | I120: PShare: activated 1 1 Adaptive scanRate [16, 400]

    2014 01-06 T 19: 19:56.757Z | VMX | I120: MemSched: mem 6677 524288 np 36706 pg 590517 anon

    2014 01-06 T 19: 19:56.815Z | VMX | I120: MemSched: numvm 1 locked pages: num 0 max 1950208

    2014 01-06 T 19: 19:56.815Z | VMX | I120: MemSched: locked Page limit: host 2408669 config 1958400 dynam 2114674

    2014 01-06 T 19: 19:56.815Z | VMX | I120: MemSched: minmempct 50 minalloc 0 admitted 1

    2014 01-06 T 19: 19:56.815Z | VMX | W110: NUMA: application of automatic dimensioning VM ignored

    2014 01-06 T 19: 19:56.816Z | WinNotifyThread | I120: VTHREAD start thread id 5 'WinNotifyThread' host 6764

    2014 01-06 T 19: 19:56.816Z | WinNotifyThread | I120: WinNotify thread is alive

    2014 01-06 T 19: 19:56.817Z | VMX | I120: LICENSE using: "\VMware Workstation\Dormant\License.ws.10.0.e2.201303 HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.."

    2014 01-06 T 19: 19:56.817Z | vthread-6 | I120: VTHREAD start thread id 'vthread-6' 6, host 4044

    2014 01-06 T 19: 19:56.818Z | VMX | I120: PolicyVMXFindPolicyKey: policy file does not exist.

    2014 01-06 T 19: 19:56.819Z | VMX | I120: PolicyVMXFindPolicyKey: policy file does not exist.

    2014 01-06 T 19: 19:56.827Z | VMX | I120: IPI vectors host: 0x2f 0.  Vector monitor IPI: 0

    2014 01-06 T 19: 19:56.827Z | VMX | I120: Monitor_PowerOn: hostedVSMPMaxSkew is 1500 US (5551500 cycles)

    2014 01-06 T 19: 19:56.827Z | VMX | I120: Monitor64_PowerOn()

    2014 01-06 T 19: 19:56.829Z | VMX | I120: Worldswitch support: .wsBody64.  Size = 480.

    2014 01-06 T 19: 19:56.829Z | VMX | I120: Worldswitch support: .wsBody64.  Size = 480.

    2014 01-06 T 19: 19:56.829Z | VMX | I120: Load correctly .switchNMI worldswitch error handlers.  Size = 240.

    2014 01-06 T 19: 19:56.829Z | VMX | I120: Load correctly .switchNMI worldswitch error handlers.  Size = 240.

    2014 01-06 T 19: 19:56.829Z | VMX | I120: vmm64-modules: [vmm.vmm64, mmu - hwmmu.vmm64, vprobe - none.vmm64, hv - vt.vmm64, gphys - ept.vmm64, none.vmm64-vmsafe, callstack - vmce, none.vmm64 - none.vmm64, vvtd - none.vmm64, buslogic - buslogic.vmm64 {SharedAreaReservations} .shared_per_vm_vmx:0 x 40, {SharedInterVcpuVmxSection}, {SharedInterVcpuSection}, < MonSrcFile >, hvLoadedAsAddr = 0 x 1, useNPTAsAddr = 0 x 1, vcpusetFullAsAddr = 0 3 x, numVCPUsAsAddr = 0 x 2, busmemFrameMPNOffsetAsAddr = 0xc, busmemFramesPerPgDivSh2AsAddr = 0 x 8, busmemFramesPerPgDivSh1AsAddr = 0 x 1, busmemFramesPerPgDivMulAsAddr = 0 x 100000000, busmemFramesPerPageAsAddr = 0 x 200, busmemFrameSizeAsAddr = 0 x 8]

    2014 01-06 T 19: 19:56.829Z | VMX | I120: vmm64-vcpus: 2

    2014 01-06 T 19: 19:56.847Z | VMX | I120: KHZEstimate 3701000

    2014 01-06 T 19: 19:56.847Z | VMX | I120: MHZEstimate 3701

    2014 01-06 T 19: 19:56.847Z | VMX | I120: NumVCPUs 2

    2014 01-06 T 19: 19:56.847Z | VMX | I120: guest operating system (20488) not supported for replay debugging.

    2014 01-06 T 19: 19:56.847Z | VMX | I120: BusMemServices: checkRate page 16

    2014 01-06 T 19: 19:56.847Z | VMX | I120: UUID: UUID location is 56 4 d 66 49 57 f6 c6 6 a - 3B 57 17 f2 1st fa bf eb

    2014 01-06 T 19: 19:56.847Z | VMX | I120: UUID: UUID location is 56 4 d eb 0 b 67 d0 6 b 19 - c7 76 cb 7A fe 07 ae 46

    2014 01-06 T 19: 19:56.848Z | VMX | I120: UUID: UUID location is 56 4 d eb 0 b 67 d0 6 b 19 - c7 76 cb 7A fe 07 ae 46

    2014 01-06 T 19: 19:56.848Z | VMX | I120: AIOGNRC: numThreads = 18 = 0 ide, scsi = 1, passthru = 1

    2014 01-06 T 19: 19:56.848Z | VMX | I120: WORKER: create the new group with numThreads = 18 (18)

    2014 01-06 T 19: 19:56.849Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:56.888Z | VMX | I120: StateLogger::Replay State = 0

    2014 01-06 T 19: 19:56.888Z | VMX | I120: StateLogger::minDEThreshold: 115

    2014 01-06 T 19: 19:56.889Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:56.944Z | VMX | I120: WORKER: create the new group with numThreads = 1 (19)

    2014 01-06 T 19: 19:56.944Z | VMX | I120: MainMem: CPT host WZ = 0 SLEEP = 1 PF = 2048 D = 0

    2014 01-06 T 19: 19:56.944Z | VMX | I120: MainMem: CPT PLS = 1 PLR = 1 BS = 1 BufM = 0 Hamza_slm = 32 Mult = 4 W = 50

    2014 01-06 T 19: 19:56.944Z | VMX | I120: MStat: creation vm.uptime Stat

    2014 01-06 T 19: 19:56.944Z | VMX | I120: MStat: creation vm.suspendTime Stat

    2014 01-06 T 19: 19:56.944Z | VMX | I120: MStat: creation vm.powerOnTimeStamp Stat

    2014 01-06 T 19: 19:56.944Z | aioCompletion | I120: VTHREAD start thread id 7 "aioCompletion" host 7908

    2014 01-06 T 19: 19:56.944Z | VMX | I120: VMXAIOMGR: using the: simple = unbuf generic = Compl

    2014 01-06 T 19: 19:56.948Z | VMX | I120: WORKER: create the new group with numThreads = 1 (20)

    2014 01-06 T 19: 19:56.961Z | VMX | I120: WORKER: create the new group with numThreads = 16 (36)

    2014 01-06 T 19: 19:56.961Z | vthread-8 | I120: VTHREAD start thread id 'vthread-8' 8, host 5788

    2014 01-06 T 19: 19:56.961Z | Worker #1 | I120: DRIVE: OPEN scsi0:0 ["Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmdk" R persistent]

    2014 01-06 T 19: 19:56.966Z | Worker #1 | I120: DISKLIB-DSCPTR: open [0]: 'Windows XP Professional - flat hard' 0 (0xa)

    2014 01-06 T 19: 19:56.966Z | Worker #1 | I120: DISKLIB-LINK: opened "XP in Machines\VMware\Windows Z:\Virtual Professional\Windows Professional.vmdk XP" (0xa): monolithicFlat, 41943040 sectors / 20 GB.

    2014 01-06 T 19: 19:56.967Z | Worker #1 | I120: DISKLIB-LIB: open 'Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmdk"(flags 0xa, monolithicFlat type).

    2014 01-06 T 19: 19:56.967Z | Worker #1 | I120: DiskGetGeometry: reading the disk partition table

    2014 01-06 T 19: 19:56.973Z | Worker #1 | I120: DISK: disk "Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmdk" has 60 00 97 71 74 a8 c6 c2 UUID ff-65 f9 cb f2 ad 57 86'

    2014 01-06 T 19: 19:56.974Z | Worker #1 | I120: DRIVE: OPEN "Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmdk" Geo BIOS (2937/255/56) Geo (2937/255/56)

    2014 01-06 T 19: 19:56.976Z | Worker #1 | I120: DISKUTILWIN32: DiskUtilW32IsATASSDDevice: reported = 7200 RPM

    2014 01-06 T 19: 19:56.976Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:57.009Z | VMX | I120: DISC: discs of openness has had 48 ms.

    2014 01-06 T 19: 19:57.009Z | VMX | I120: TimeTracker host at the conversion rate of comments 1919566253 to 3701000000Hz--> 0 to 3701000000 Hz

    2014 01-06 T 19: 19:57.009Z | VMX | I120: TimeTracker host to comments ((x * 2147483648) frequency conversion > > 31) +-1919566253

    2014 01-06 T 19: 19:57.009Z | VMX | I120: timeTracker.globalProgressMaxAllowanceMS: 2000

    2014 01-06 T 19: 19:57.009Z | VMX | I120: timeTracker.globalProgressToAllowanceNS: 1000

    2014 01-06 T 19: 19:57.010Z | VMX | I120: USB: initializing 'Virtual Hub' backend

    2014 01-06 T 19: 19:57.010Z | VMX | I120: USB: initialization backend 'generic '.

    2014 01-06 T 19: 19:57.011Z | VMX | I120: USBGW: writing arbitrator op: 15 len:4

    2014 01-06 T 19: 19:57.011Z | VMX | I120: USBGW: writing arbitrator op: 0 len:4

    2014 01-06 T 19: 19:57.012Z | VMX | I120: USBGW: writing arbitrator op: 27 len:114

    2014 01-06 T 19: 19:57.012Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 19:57.012Z | VMX | I120: USB: initialization backend "Virtual HID."

    2014 01-06 T 19: 19:57.013Z | sensorThread | I120: VTHREAD start thread id 9 'sensorThread' host 7232

    2014 01-06 T 19: 19:57.013Z | VMX | I120: USB: 'Remote control' backend initialization

    2014 01-06 T 19: 19:57.013Z | VMX | I120: RemoteUSBVMX: retrieved hostId [90 02 2 b 03 34 04 da 06 53 07 00 08 00 09 05 - b8]

    2014 01-06 T 19: 19:57.013Z | VMX | I120: RemoteUSBVMX: min:15 current version: 16 of the Protocol

    2014 01-06 T 19: 19:57.013Z | VMX | I120: RemoteUSBVMX: no delay parameter is set to TRUE.

    2014 01-06 T 19: 19:57.013Z | VMX | I120: USB: 'Virtual Mass Storage' backend initialization

    2014 01-06 T 19: 19:57.013Z | VMX | I120: USB: "Virtual CCID" backend initialization

    2014 01-06 T 19: 19:57.016Z | VMX | I120: USB CCID: could not establish context: SCARD_E_NO_SERVICE (0x8010001d).

    2014 01-06 T 19: 19:57.017Z | VMX | I120: USB CCID: could not establish context: SCARD_E_NO_SERVICE (0x8010001d).

    2014 01-06 T 19: 19:57.020Z | usbCCIDEnumCards | I120: Host Id 10 "usbCCIDEnumCards" start thread 9192 VTHREAD

    2014 01-06 T 19: 19:57.020Z | usbCCIDEnumCards | I120: USB CCID: map enum thread is created.

    2014 01-06 T 19: 19:57.020Z | VMX | I120: USB: initialization backend "virtual Bluetooth."

    2014 01-06 T 19: 19:57.020Z | VMX | I120: USB: "Virtual Audio" backend initialization

    2014 01-06 T 19: 19:57.042Z | VMX | I120: USBGW: skip the drive for the file (Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmx) carrier.

    2014 01-06 T 19: 19:57.043Z | VMX | I120: USBGW: skip the drive for the file (Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmdk) carrier.

    2014 01-06 T 19: 19:57.043Z | VMX | I120: USBGW: skip the drive for the file (Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmsd) carrier.

    2014 01-06 T 19: 19:57.044Z | VMX | I120: USBGW: skip the drive for the file (Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.nvram) carrier.

    2014 01-06 T 19: 19:57.044Z | usbCCIDEnumCards | I120: USB CCID: could not establish context: SCARD_E_NO_SERVICE (0x8010001d).

    2014 01-06 T 19: 19:57.045Z | VMX | I120: MKS PowerOn

    2014 01-06 T 19: 19:57.045Z | MKS | I120: VTHREAD start thread id 1 "mks" host 7996

    2014 01-06 T 19: 19:57.045Z | MKS | I120: Thread MKS is alive

    2014 01-06 T 19: 19:57.048Z | mksInput | I120: VTHREAD start host to the 'mksInput' 11 5944 thread ID.

    2014 01-06 T 19: 19:57.048Z | the mouse | I120: VTHREAD start host to the 'mouse' 12 wire 5804 ID.

    2014 01-06 T 19: 19:57.048Z | kBh. I120: VTHREAD start host to the 'kbh' 13 8844 thread ID.

    2014 01-06 T 19: 19:57.049Z | MKS | I120: VMIOP: could not load the plugin-C:\Program Files (x 86) \VMware\VMware Workstation\vmioPlugins\svga3d.dll (the specified module could not be found).

    2014 01-06 T 19: 19:57.050Z | MKS | I120: MKSWin32: registration of window (0 x 10898) upper level to receive a notification of change of session.

    2014 01-06 T 19: 19:57.093Z | MKS | I120: D3D-Backend: started successfully by renderMux for screen composition.

    2014 01-06 T 19: 19:57.093Z | MKS | I120: MKS-RenderMux: RenderOps collection caps...

    2014 01-06 T 19: 19:57.116Z | MKS | I120: D3D-Backend: order by renderMux for screen composition.

    2014 01-06 T 19: 19:57.117Z | MKS | I120: KHBKL: impossible to analyze KeyString to: "

    2014 01-06 T 19: 19:57.117Z | MKS | I120: MKS-RemoteMgr: default display name: Windows XP Professional

    2014 01-06 T 19: 19:57.117Z | MKS | I120: MKS-RemoteMgr: Configuration of VNC to the virtual machine configuration file loading

    2014 01-06 T 19: 19:57.117Z | MKS | I120: FILE: FileCreateDirectoryRetry: no reproducible error (C:\ProgramData\VMware): cannot create a file when that file exists already (183)

    2014 01-06 T 19: 19:57.119Z | VMX | I120: VLANCE: send the cluster threshold is 80, size = 2 recalcInterval 2 ticks

    2014 01-06 T 19: 19:57.119Z | VMX | I120: VMXNET: send the cluster threshold is 80, size = 2 recalcInterval 2 ticks, dontClusterSize is 128

    2014 01-06 T 19: 19:57.120Z | VMX | I120: NetPkt: checksum cycles/kB: asm1 C = 26 = 271 asm2 = 287

    2014 01-06 T 19: 19:57.120Z | VMX | I120: NetPkt: copy and cycles/kB summing up: C = 342 asm1 = 271 asm2 = 302

    2014 01-06 T 19: 19:57.121Z | VMX | I120: Chipset version: 0 x 13

    2014 01-06 T 19: 19:57.128Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:57.176Z | VMX | I120: SCSI DEVICE (ide1:0): calculates the value of ide1:0.useBounceBuffers: default

    2014 01-06 T 19: 19:57.176Z | VMX | I120: DISKUTIL: ide1:0: capacity = 0

    2014 01-06 T 19: 19:57.176Z | VMX | I120: DISKUTIL: ide1:0: geometry = 0/0/0

    2014 01-06 T 19: 19:57.176Z | VMX | I120: SCSI0: ORDER tags will be converted into orders not SIGNPOSTED.

    2014 01-06 T 19: 19:57.176Z | VMX | I120: SCSI DEVICE (scsi0:0): calculates the value of scsi0:0.useBounceBuffers: default

    2014 01-06 T 19: 19:57.176Z | VMX | I120: DISKUTIL: scsi0:0: capacity = 41943040

    2014 01-06 T 19: 19:57.176Z | VMX | I120: DISKUTIL: scsi0:0: geometry = 2937/255/56

    2014 01-06 T 19: 19:57.177Z | VMX | I120: SVGA: features of the device 0x00ffc3e2

    2014 01-06 T 19: 19:57.177Z | VMX | I120: SVGA: number of poster 2

    2014 01-06 T 19: 19:57.177Z | VMX | I120: SVGA: topology display Maximum 4480 x 1920.

    2014 01-06 T 19: 19:57.177Z | VMX | I120: SVGA: capacity FIFO 0x0000077f

    2014 01-06 T 19: 19:57.178Z | VMX | I120: MKS3dCaps: host, at power on

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [0]: 0x00000001 (3D)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: Cap [1]: 0x0000000a (MAX_LIGHTS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [2]: 0x00000008 (MAX_TEXTURES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: Cap [3]: 0 x 00000006 (MAX_CLIP_PLANES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [4]: 0 x 00000007 (VERTEX_SHADER_VERSION)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [5]: 0x00000001 (VERTEX_SHADER)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: Cape [6]: 0x0000000d (FRAGMENT_SHADER_VERSION)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cover [7]: 0x00000001 (FRAGMENT_SHADER)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [8]: 0 x 00000004 (MAX_RENDER_TARGETS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [9]: 0x00000001 (S23E8_TEXTURES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: Cap [10]: 0x00000001 (S10E5_TEXTURES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [11]: 0 x 00000004 (MAX_FIXED_VERTEXBLEND)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [12]: 0x00000001 (D16_BUFFER_FORMAT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [13]: 0x00000001 (D24S8_BUFFER_FORMAT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: nerve [14]: 0x00000001 (D24X8_BUFFER_FORMAT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [15]: 0x00000001 (QUERY_TYPES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [16]: 0x00000001 (TEXTURE_GRADIENT_SAMPLING)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [17]: 256.000000 (MAX_POINT_SIZE)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [18]: 0 x 00000014 (MAX_SHADER_TEXTURES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [19]: 0 x 00004000 (MAX_TEXTURE_WIDTH)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [20]: 0 x 00004000 (MAX_TEXTURE_HEIGHT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [21]: 0 x 00004000 (MAX_VOLUME_EXTENT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [22]: 0 x 00002000 (MAX_TEXTURE_REPEAT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [23]: 0 x 00002000 (MAX_TEXTURE_ASPECT_RATIO)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [24]: 0x00000010 (MAX_TEXTURE_ANISOTROPY)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [25]: 0 x 00555555 (MAX_PRIMITIVE_COUNT)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [26]: 0x00ffffff (MAX_VERTEX_INDEX)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [27]: 0xffffffff (MAX_VERTEX_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [28]: 0xffffffff (MAX_FRAGMENT_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [29]: 0x00000020 (MAX_VERTEX_SHADER_TEMPS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [30]: 0x00000020 (MAX_FRAGMENT_SHADER_TEMPS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [31]: 0x03ffffff (TEXTURE_OPS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [32]: 0x0098ec1f (SURFACEFMT_X8R8G8B8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [33]: 0x0098e11f (SURFACEFMT_A8R8G8B8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [34]: 0x0088601f (SURFACEFMT_A2R10G10B10)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [35]: 0x0088601f (SURFACEFMT_X1R5G5B5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [36]: 0x0088611f (SURFACEFMT_A1R5G5B5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [37]: 0x0080611f (SURFACEFMT_A4R4G4B4)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [38]: 0x00886c1f (SURFACEFMT_R5G6B5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [39]: 0x0080600f (SURFACEFMT_LUMINANCE16)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [40]: 0 x 00804007 (SURFACEFMT_LUMINANCE8_ALPHA8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [41]: 0 x 00804007 (SURFACEFMT_ALPHA8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [42]: 0x0080600f (SURFACEFMT_LUMINANCE8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [43]: 0x000000c1 (SURFACEFMT_Z_D16)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [44]: 0x000000c1 (SURFACEFMT_Z_D24S8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [45]: 0x000000c1 (SURFACEFMT_Z_D24X8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [46]: 0x0080c005 (SURFACEFMT_DXT1)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [47]: 0x0080c005 (SURFACEFMT_DXT2)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [48]: 0x0080c005 (SURFACEFMT_DXT3)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [49]: 0x0080c005 (SURFACEFMT_DXT4)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [50]: 0x0080c005 (SURFACEFMT_DXT5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [51]: 0 x 00810007 (SURFACEFMT_BUMPX8L8V8U8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [52]: 0 x 00810007 (SURFACEFMT_A2W10V10U10)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [53]: 0 x 00810007 (SURFACEFMT_BUMPU8V8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [54]: 0x0081400f (SURFACEFMT_Q8W8V8U8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [55]: 0 x 01240000 (SURFACEFMT_CxV8U8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [56]: 0x0080601f (SURFACEFMT_R_S10E5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [57]: 0x0080601f (SURFACEFMT_R_S23E8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [58]: 0x0080601f (SURFACEFMT_RG_S10E5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [59]: 0x0080601f (SURFACEFMT_RG_S23E8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [60]: 0x0080601f (SURFACEFMT_ARGB_S10E5)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [61]: 0x0080601f (SURFACEFMT_ARGB_S23E8)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [62]: 0x00000000 (MISSING62)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [63]: 0 x 00000004 (MAX_VERTEX_SHADER_TEXTURES)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [64]: 0 x 00000004 (MAX_SIMULTANEOUS_RENDER_TARGETS)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [65]: 0 x 00810007 (SURFACEFMT_V16U16)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [66]: 0x0080601f (SURFACEFMT_G16R16)

    2014 01-06 T 19: 19:57.178Z | VMX | I120: cap [67]: 0x0080601f (SURFACEFMT_A16B16G16R16)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [68]: 0 x 01246000 (SURFACEFMT_UYVY)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [69]: 0 x 01246000 (SURFACEFMT_YUY2)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [70]: 0 x 00000003 (MULTISAMPLE_NONMASKABLESAMPLES)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [71]: 0x0000008b (MULTISAMPLE_MASKABLESAMPLES)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [72]: 0x00000001 (ALPHATOCOVERAGE)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [73]: 0x00000000 (UPSAMPLING)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [74]: 0x00000001 (AUTOGENMIPMAPS)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [75]: 0 x 01246000 (SURFACEFMT_NV12)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [76]: 0 x 01246000 (SURFACEFMT_AYUV)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [77]: 0x00000100 (MAX_CONTEXT_IDS)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [78]: 0 x 00008000 (MAX_SURFACE_IDS)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [79]: 0x000000c1 (SURFACEFMT_Z_DF16)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [80]: 0x000000c1 (SURFACEFMT_Z_DF24)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [81]: 0x000000c1 (SURFACEFMT_Z_D24S8_INT)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [82]: 0 x 00800007 (SURFACEFMT_BC4_UNORM)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [83]: 0 x 00800007 (SURFACEFMT_BC5_UNORM)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [84]: 0x00000000 (VGPU10)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [85]: 0x00000000 (VIDEO_DECODE)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [86]: 0x00000000 (VIDEO_PROCESS)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [87]: 0x00000000 (LINE_AA)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [88]: 0x00000000 (LINE_STIPPLE)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [89]: 0.000000 (MAX_LINE_WIDTH)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [90]: 0.000000 (MAX_AA_LINE_WIDTH)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [91]: 0 x 01246000 (SURFACEFMT_YV12)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [92]: 0x00000000 (LOGICOPS)

    2014 01-06 T 19: 19:57.179Z | VMX | I120: cap [93]: 0x00000000 (SCREENTARGETS)

    2014 01-06 T 19: 19:57.179Z | SVGA | I120: VTHREAD start host to the "svga" 14 9128 thread ID.

    2014 01-06 T 19: 19:57.179Z | VMX | I120: USB: initialization of the host controller "UHCI".

    2014 01-06 T 19: 19:57.179Z | SVGA | I120: SVGA thread is alive

    2014 01-06 T 19: 19:57.180Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:57.227Z | VMX | I120: Ethernet0 MAC address: 00: 0C: 29:07:ae:46

    2014 01-06 T 19: 19:57.228Z | VMX | I120: USB: initialization of the host controller "EHCI".

    2014 01-06 T 19: 19:57.228Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 19:57.275Z | VMX | I120: WORKER: create the new group with numThreads = 1 (37)

    2014 01-06 T 19: 19:57.275Z | VMX | I120: DISKUTIL: scsi0:0: max toolsVersion = 9408

    2014 01-06 T 19: 19:57.276Z | VMX | I120: Adjustment TOOLS from legacy to '9408', clear status tools version is 9

    2014 01-06 T 19: 19:57.276Z | VMX | I120: INSTALLATION of TOOLS initialization state idling at power on.

    2014 01-06 T 19: 19:57.277Z | Worker #0 | I120: GetHostManifests: extraction of the manifest file.

    2014 01-06 T 19: 19:57.278Z | Worker #0 | I120: GetHostManifests: fact extraction of the manifest file.

    2014 01-06 T 19: 19:57.279Z | Worker #0 | I120: ToolsVersionGetStatus:

    2014 01-06 T 19: 19:57.279Z | Worker #0 | I120: ToolsVersionGetStatusWorkerThread: status tools 3 from the environment

    2014 01-06 T 19: 19:57.280Z | Worker #0 | I120: GetHostManifests: extraction of the manifest file.

    2014 01-06 T 19: 19:57.281Z | Worker #0 | I120: GetHostManifests: fact extraction of the manifest file.

    2014 01-06 T 19: 19:57.281Z | Worker #0 | I120: ToolsVersionGetStatus:

    2014 01-06 T 19: 19:57.282Z | Worker #0 | I120: ToolsVersionGetStatusWorkerThread: status tools 3 from the environment

    2014 01-06 T 19: 19:57.292Z | VMX | I120: FeatureCompat: masks VM:

    2014 01-06 T 19: 19:57.292Z | VMX | I120: MonPmc: ctrBase 0x4c1 selBase 0 x 186/1 MMS PGC drain 1/1 1 1 0 RAS

    2014 01-06 T 19: 19:57.292Z | VMX | I120 + MonPmc: gen counters num: width of writing 8 48 48 width

    2014 01-06 T 19: 19:57.292Z | VMX | I120 + MonPmc: Difficulty counters num: 3 width 48

    2014 01-06 T 19: 19:57.292Z | VMX | I120 + MonPmc: counters not available: 0

    2014 01-06 T 19: 19:57.292Z | VMX | I120: CPT: Restore checkpoint Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional - 979000f6.vmss

    2014 01-06 T 19: 19:57.293Z | VMX | I120: DUMPER: Restore checkpoint 8.

    2014 01-06 T 19: 19:57.331Z | VMX | I120: DUMPER: point 'csRights' [0, -1] not found.

    2014 01-06 T 19: 19:57.332Z | VMX | I120: DUMPER: element not found "guestCpuidFaulting" [0, -1].

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: name of the vendor: GenuineIntel

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: family: 0 x 6 model: 0x2a stepping: 0 x 7

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: code name: Sandy Bridge

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: name: Intel (r) Core i5 - 2500 K CPU @ 3.30 GHz

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000000, 0 level: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 00000001, 0: 0x000206a7 0 x 00010800 0 x 96982203 0x0fabfbff

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 00000002, 0: 0x76035a01 0x00f0b0ff 0 x 00000000 0x00ca0000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000003, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000004, 0 level: 0 x 00000121 0x01c0003f 0x0000003f 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000004, 1: 0 x 00000122 0x01c0003f 0x0000003f level 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000004, niv.2: 0 x 00000143 0x01c0003f 0x000001ff 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000004, 3: 0 x 00000163 0x02c0003f 0x00001fff level 0 x 00000006

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000004, 4: 0 x 00000000 level 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 00000006, 0: 0 x 00000077 0x00000002 0 x 00000009 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 00000007, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 00000008: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000 a level, 0: 0 x 07300801 0x0000007f 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000b, 0 level: 0x00000000 0x00000001 0x00000100 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 1: 0 x 00000000 0000000b 0x00000001 0 x 00000201 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000b, level 2: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level c 0000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 0: 0 x 00000007 0 x 00000340 x 0 00000340 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 1 level: 0x00000001 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 2: 0x00000100 0 x 00000240 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d level, 3: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 4: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 5: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 6: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 7 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 8: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 9: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0000000d, d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0000000d, e: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 10: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 11: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 12: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 13: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 14: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 15 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 16: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 17: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 18: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 19: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0000000d, 1a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 1 b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 1: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 1 d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000 d, 1st level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 1f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 20: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 21: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 22: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 23: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 24: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 25: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 26: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 27: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 28: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 29: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0000000d, 2 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 2 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 2 c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 2d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000 d, 2nd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 2f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 30: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 31: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 32: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 33: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 34: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 35: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 36: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 37: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 38: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, level 39: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 3 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 3 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 3 c of level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000d, 3d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 0000000 d, 3rd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level d 0000000, 3f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000000, 0: 0 x 40000010 0x61774d56 0x4d566572 0 x 65726177

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000001, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000002, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000004, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 40000006: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000008, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 4000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 4000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 4000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 4000000d level, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 4000000e level, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 4000000f, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 40000010, 0: 0 x 00387908 0x000101d0 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 80000000: 0 x 80000008 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: 80000001, 0 level: 0x00000000 0x00000000 0x00000001 0 x 28100800

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 80000002, 0: 0 x 20202020 0 x 49202020 0x6c65746e 0 x 20295228

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 80000003, 0: 0x65726f43 0x294d5428 0x2d356920 0 x 30303532

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 80000004, 0: 0x5043204b 0 x 20402055 0x30332e33 0x007a4847

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 80000005: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 80000006: 0x00000000 0x00000000 0 x 01006040 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 80000007: 0x00000000 0x00000000 0x00000000 0x00000100

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 80000008, 0: 0 x 00003028 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: cptCPUID: level 0, 80000009: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: guestCpuFeatures = 0x2002fd

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: name of the vendor: GenuineIntel

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: family: 0 x 6 model: 0x2a stepping: 0 x 7

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: code name: Sandy Bridge

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: name: Intel (r) Core i5 - 2500 K CPU @ 3.30 GHz

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000000, 0 level: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: level 00000001, 0: 0x000206a7 0 x 00100800 0x9f9ae3bf 0xbfebfbff

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: level 00000002, 0: 0x76035a01 0x00f0b0ff 0 x 00000000 0x00ca0000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000003, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000004, 0 level: 0x0000003f 0x01c0003f 0x1c004121 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000004, 1 level: 0x0000003f 0x01c0003f 0x1c004122 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000004, niv.2: 0x1c004143 0x01c0003f 0x000001ff 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000004, 3 level: 0x1c03c163 0x02c0003f 0x00001fff 0 x 00000006

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000004, 4: 0 x 00000000 level 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000005, 0 level: 0 x 00000040 00000040 0 x 0 x 00000003 0 x 00001120

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: level 00000006, 0: 0 x 00000077 0x00000002 0 x 00000009 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: 00000007, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.332Z | VMX | I120: srcCPUID: level 0, 00000008: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000 a level, 0: 0 x 07300803 0x00000000 0x00000000 0 x 00000603

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000b, 0 level: 0x00000001 0x00000001 0x00000100 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000b, level 2: 0x00000000 0x00000000 0x00000002 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level c 0000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 0: 0 x 00000007 0 x 00000340 x 0 00000340 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 1 level: 0x00000001 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 2: 0x00000100 0 x 00000240 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d level, 3: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 4: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 5: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 6: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 7 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 8: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 9: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0000000d, d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0000000d, e: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 10: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 11: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 12: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 13: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 14: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 15 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 16: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 17: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 18: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 19: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0000000d, 1a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 1 b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 1: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 1 d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000 d, 1st level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 1f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 20: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 21: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 22: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 23: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 24: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 25: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 26: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 27: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 28: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 29: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0000000d, 2 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 2 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 2 c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 2d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000 d, 2nd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 2f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 30: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 31: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 32: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 33: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 34: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 35: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 36: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 37: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 38: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, level 39: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 3 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 3 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 3 c of level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000d, 3d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 0000000 d, 3rd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level d 0000000, 3f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0, 80000000: 0 x 80000008 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: 80000001, 0 level: 0x00000000 0x00000000 0x00000001 0 x 28100800

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 80000002, 0: 0 x 20202020 0 x 49202020 0x6c65746e 0 x 20295228

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 80000003, 0: 0x65726f43 0x294d5428 0x2d356920 0 x 30303532

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 80000004, 0: 0x5043204b 0 x 20402055 0x30332e33 0x007a4847

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0, 80000005: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0, 80000006: 0x00000000 0x00000000 0 x 01006040 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 0, 80000007: 0x00000000 0x00000000 0x00000000 0x00000100

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 80000008, 0: 0 x 00003024 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: srcCPUID: level 8000000a, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: name of the vendor: GenuineIntel

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: family: 0 x 6 model: 0x2a stepping: 0 x 7

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: code name: Sandy Bridge

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: name: Intel (r) Core i5 - 2500 K CPU @ 3.30 GHz

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: 00000000, 0 level: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: level 00000001, 0: 0x000206a7 0 x 00100800 0x9fbae3bf 0xbfebfbff

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: level 00000002, 0: 0x76035a01 0x00f0b0ff 0 x 00000000 0x00ca0000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: 00000003, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: 00000004, 0 level: 0x0000003f 0x01c0003f 0x1c004121 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: 00000004, 1 level: 0x0000003f 0x01c0003f 0x1c004122 0x00000000

    2014 01-06 T 19: 19:57.333Z | VMX | I120: dstCPUID: 00000004, niv.2: 0x1c004143 0x01c0003f 0x000001ff 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 00000004, 3 level: 0x1c03c163 0x02c0003f 0x00001fff 0 x 00000006

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 00000004, 4: 0 x 00000000 level 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 00000005, 0 level: 0 x 00000040 00000040 0 x 0 x 00000003 0 x 00001120

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 00000006, 0: 0 x 00000077 0x00000002 0 x 00000009 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 00000007, 0 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0, 00000008: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000 a level, 0: 0 x 07300803 0x00000000 0x00000000 0 x 00000603

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000b, 0 level: 0x00000001 0x00000001 0x00000100 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0000000b, 1: 0 x 00000004 0 x 00000004 0 x 00000201 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000b, level 2: 0x00000000 0x00000000 0x00000002 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level c 0000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 0: 0 x 00000007 0 x 00000340 x 0 00000340 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 1 level: 0x00000001 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 2: 0x00000100 0 x 00000240 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d level, 3: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 4: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 5: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 6: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 7 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 8: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 9: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0000000d, d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0000000d, e: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 10: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 11: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 12: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 13: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 14: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 15 level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 16: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 17: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 18: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 19: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0000000d, 1a: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 1 b: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 1: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 1 d: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000 d, 1st level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 1f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 20: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 21: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 22: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 23: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 24: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 25: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 26: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 27: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 28: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 29: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0000000d, 2 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 2 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 2 c: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 2d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000 d, 2nd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 2f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 30: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 31: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 32: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 33: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 34: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 35: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 36: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 37: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 38: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, level 39: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 3 a: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 3 b: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 3 c of level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000d, 3d level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 0000000 d, 3rd level: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level d 0000000, 3f: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0, 80000000: 0 x 80000008 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: 80000001, 0 level: 0x00000000 0x00000000 0x00000001 0 x 28100800

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 80000002, 0: 0 x 20202020 0 x 49202020 0x6c65746e 0 x 20295228

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 80000003, 0: 0x65726f43 0x294d5428 0x2d356920 0 x 30303532

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 80000004, 0: 0x5043204b 0 x 20402055 0x30332e33 0x007a4847

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0, 80000005: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0, 80000006: 0x00000000 0x00000000 0 x 01006040 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 0, 80000007: 0x00000000 0x00000000 0x00000000 0x00000100

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 80000008, 0: 0 x 00003024 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: dstCPUID: level 8000000a, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: 00000000, 0 level: 0 x 00000000 0xffffffff, 0xffffffff, 0xffffffff

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: level 00000001, 0: 0xfff0cf00 0 x 00000000 0x76d91223 0x0fbffdff

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: 00000007, 0 level: 0xffffffff, 0xffffffff, 0xffffffff 0xffffd046

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: level d 0000000, 0: 0 x 00000007 0 x 00000000 0xffffffff 0x20000000

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: 80000001, 0 level: 0x00000000 0 x 00000000 0xfe3509dc 0xdbfff5ff

    2014 01-06 T 19: 19:57.334Z | VMX | I120: cpt mask: 8000000a level, 0: 0x000000ff 0xffffffff 0 x 00000000 0x000000e9

    2014 01-06 T 19: 19:57.334Z | VMX | I120: evcMasksInCpt = 0

    2014 01-06 T 19: 19:57.334Z | VMX | I120: evcCompatibilityMode = 0

    2014 01-06 T 19: 19:57.334Z | VMX | I120: DUMPER: element not found "paraGuest" [0, -1].

    2014 01-06 T 19: 19:57.334Z | VMX | I120: DUMPER: element not found "paraGuest" [1, -1].

    2014 01-06 T 19: 19:57.334Z | VMX | I120: Progress - 1% (msg.checkpoint.restoreStatus)

    2014 01-06 T 19: 19:57.338Z | VMX | I120: restoration GuestVars

    2014 01-06 T 19: 19:57.343Z | VMX | I120: restoration BusMemSample

    2014 01-06 T 19: 19:57.343Z | VMX | I120: restoration UUIDVMX

    2014 01-06 T 19: 19:57.343Z | VMX | I120: restoration StateLogger

    2014 01-06 T 19: 19:57.343Z | VMX | I120: restore memory

    2014 01-06 T 19: 19:57.343Z | VMX | I120: DUMPER: block element 'MainMemNeedsZeroing' [-1, -1] not found.

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MainMem: paging file open, ' Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional - 979000f6.vmem'.

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: calling 0 numvm 1 locked pages: 1756 1950208 max num

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: locked Page limit: host 2408812 config 1958400 dynam 2114674

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: minmempct 50 timestamp 14527

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: 0 min VM 305015 max 567159 524288 paged shares not paged 6677 anonymous locked 36194 shared 1756 0 sharedUsr 13611 touchedPct 0 dirtiedPct 0 timestamp 14527 vmResponsive is 1 586421

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: locked for 1756 target ball 567159 0 0 0 swapped 0 0 0 allocd State 0 100 0 512

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: States: 0 0 1: 1: 2 0: 3 0

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: ball activated 1 maxSize guestType 0 0

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: COWStats [0]: hot Page: 0 13611 Z

    2014 01-06 T 19: 19:57.368Z | VMX | I120: MemSched: COWStats [0]: shared 13611 13611 breeze 0 0 inits 13611 pool overflow 0 0

    2014 01-06 T 19: 19:57.387Z | VMX | I120: Progress 0% (none)

    2014 01-06 T 19: 19:57.518Z | VMX | I120: Increase 1% (none)

    2014 01-06 T 19: 19:57.637Z | VMX | I120: Increased by 2% (none)

    2014 01-06 T 19: 19:57.763Z | VMX | I120: Progress of 3% (none)

    2014 01-06 T 19: 19:57.900Z | VMX | I120: Progress of 4% (none)

    2014 01-06 T 19: 19:58.022Z | VMX | I120: Progress of 5% (none)

    2014 01-06 T 19: 19:58.166Z | VMX | I120: Increase by 6% (none)

    2014 01-06 T 19: 19:58.298Z | VMX | I120: Increase of 7% (none)

    2014 01-06 T 19: 19:58.422Z | VMX | I120: Increase by 8% (none)

    2014 01-06 T 19: 19:58.576Z | VMX | I120: Increase by 9% (none)

    2014 01-06 T 19: 19:58.697Z | VMX | I120: Progress of 10% (no)

    2014 01-06 T 19: 19:58.818Z | VMX | I120: Increase by 11% (none)

    2014 01-06 T 19: 19:58.941Z | VMX | I120: Growth of 12% (none)

    2014 01-06 T 19: 19:59.083Z | VMX | I120: Increase by 13% (none)

    2014 01-06 T 19: 19:59.198Z | VMX | I120: Increase by 14% (none)

    2014 01-06 T 19: 19:59.313Z | VMX | I120: Progress 15% (none)

    2014 01-06 T 19: 19:59.424Z | VMX | I120: Increase of 16% (none)

    2014 01-06 T 19: 19:59.534Z | VMX | I120: Increase by 17% (none)

    2014 01-06 T 19: 19:59.645Z | VMX | I120: Increase by 18% (none)

    2014 01-06 T 19: 19:59.756Z | VMX | I120: Progress 19% (none)

    2014 01-06 T 19: 19:59.868Z | VMX | I120: Advance of 20% (none)

    2014 01-06 T 19: 19:59.992Z | VMX | I120: Increase by 21% (none)

    2014 01-06 T 19: 20:00.105Z | VMX | I120: Progress of 22% (none)

    2014 01-06 T 19: 20:00.217Z | VMX | I120: Increase of 23% (none)

    2014 01-06 T 19: 20:00.332Z | VMX | I120: Increase of 24% (none)

    2014 01-06 T 19: 20:00.487Z | VMX | I120: Increase of 25% (none)

    2014 01-06 T 19: 20:00.613Z | VMX | I120: Rise by 26% (none)

    2014 01-06 T 19: 20:00.722Z | VMX | I120: Rise by 27% (none)

    2014 01-06 T 19: 20:00.844Z | VMX | I120: Progress 28% (none)

    2014 01-06 T 19: 20:00.995Z | VMX | I120: Advance of 29% (none)

    2014 01-06 T 19: 20:01.113Z | VMX | I120: Increase 30% (none)

    2014 01-06 T 19: 20:01.232Z | VMX | I120: 31% growth (none)

    2014 01-06 T 19: 20:01.345Z | VMX | I120: Increase of 32% (none)

    2014 01-06 T 19: 20:01.467Z | VMX | I120: Progress of 33% (none)

    2014 01-06 T 19: 20:01.583Z | VMX | I120: Increase by 34% (none)

    2014 01-06 T 19: 20:01.708Z | VMX | I120: Increase of 35% (none)

    2014 01-06 T 19: 20:01.900Z | VMX | I120: Progress 36% (none)

    2014 01-06 T 19: 20:02.080Z | VMX | I120: Progress 37% (none)

    2014 01-06 T 19: 20:02.201Z | VMX | I120: Increase of 38% (none)

    2014 01-06 T 19: 20:02.323Z | VMX | I120: Increase by 39% (none)

    2014 01-06 T 19: 20:02.438Z | VMX | I120: Progress of 40% (none)

    2014 01-06 T 19: 20:02.559Z | VMX | I120: Increase of 41% (none)

    2014 01-06 T 19: 20:02.674Z | VMX | I120: Increase of 42% (none)

    2014 01-06 T 19: 20:02.805Z | VMX | I120: Increase of 43% (none)

    2014 01-06 T 19: 20:02.918Z | VMX | I120: Increase of 44% (none)

    2014 01-06 T 19: 20:03.028Z | VMX | I120: Rise by 45% (none)

    2014 01-06 T 19: 20:03.135Z | VMX | I120: Increase of 46% (none)

    2014 01-06 T 19: 20:03.246Z | VMX | I120: Increase of 47% (none)

    2014 01-06 T 19: 20:03.352Z | VMX | I120: Increase of 48% (none)

    2014 01-06 T 19: 20:03.449Z | VMX | I120: Increase of 49% (none)

    2014 01-06 T 19: 20:03.559Z | VMX | I120: Advance of 50% (none)

    2014 01-06 T 19: 20:03.662Z | VMX | I120: Increase of 51% (none)

    2014 01-06 T 19: 20:03.762Z | VMX | I120: Rise by 52% (none)

    2014 01-06 T 19: 20:03.865Z | VMX | I120: Progress of 53% (none)

    2014 01-06 T 19: 20:03.968Z | VMX | I120: Increase of 54% (none)

    2014 01-06 T 19: 20:04.072Z | VMX | I120: Progress 55% (none)

    2014 01-06 T 19: 20:04.173Z | VMX | I120: Increase of 56% (none)

    2014 01-06 T 19: 20:04.283Z | VMX | I120: Rise by 57% (none)

    2014 01-06 T 19: 20:04.388Z | VMX | I120: Progress of 58% (none)

    2014 01-06 T 19: 20:04.494Z | VMX | I120: Increase of 59% (none)

    2014 01-06 T 19: 20:04.615Z | VMX | I120: Advance of 60% (none)

    2014 01-06 T 19: 20:04.818Z | VMX | I120: Increase of 61% (none)

    2014 01-06 T 19: 20:04.941Z | VMX | I120: Increase of 62% (none)

    2014 01-06 T 19: 20:05.061Z | VMX | I120: Growth of 63% (none)

    2014 01-06 T 19: 20:05.182Z | VMX | I120: Increase of 64% (none)

    2014 01-06 T 19: 20:05.301Z | VMX | I120: Increase of 65% (no)

    2014 01-06 T 19: 20:05.416Z | VMX | I120: Progress 66% (none)

    2014 01-06 T 19: 20:05.531Z | VMX | I120: Increase of 67% (none)

    2014 01-06 T 19: 20:05.649Z | VMX | I120: Increase of 68% (none)

    2014 01-06 T 19: 20:05.762Z | VMX | I120: Increase of 69% (none)

    2014 01-06 T 19: 20:05.879Z | VMX | I120: Advance of 70% (none)

    2014 01-06 T 19: 20:06.004Z | VMX | I120: Increase of 71% (none)

    2014 01-06 T 19: 20:06.152Z | VMX | I120: Increase of 72% (none)

    2014 01-06 T 19: 20:06.263Z | VMX | I120: Increase of 73% (none)

    2014 01-06 T 19: 20:06.382Z | VMX | I120: Growth of 74% (none)

    2014 01-06 T 19: 20:06.507Z | VMX | I120: Progress of 75% (none)

    2014 01-06 T 19: 20:06.626Z | VMX | I120: Increase of 76% (none)

    2014 01-06 T 19: 20:06.748Z | VMX | I120: Growth of 77% (none)

    2014 01-06 T 19: 20:06.865Z | VMX | I120: Progression of 78% (none)

    2014 01-06 T 19: 20:06.982Z | VMX | I120: Increase of 79% (none)

    2014 01-06 T 19: 20:07.098Z | VMX | I120: Increase of 80% (none)

    2014 01-06 T 19: 20:07.216Z | VMX | I120: Increase of 81% (none)

    2014 01-06 T 19: 20:07.371Z | VMX | I120: Increase of 82% (none)

    2014 01-06 T 19: 20:07.532Z | VMX | I120: Growth of 83% (none)

    2014 01-06 T 19: 20:07.654Z | VMX | I120: Increase by 84% (none)

    2014 01-06 T 19: 20:07.765Z | VMX | I120: Increase of 85% (none)

    2014 01-06 T 19: 20:07.874Z | VMX | I120: Increase of 86% (none)

    2014 01-06 T 19: 20:07.985Z | VMX | I120: Increase of 87% (none)

    2014 01-06 T 19: 20:08.103Z | VMX | I120: Increase of 88% (none)

    2014 01-06 T 19: 20:08.222Z | VMX | I120: Progress 89% (none)

    2014 01-06 T 19: 20:08.334Z | VMX | I120: Increase of 90% (none)

    2014 01-06 T 19: 20:08.442Z | VMX | I120: Progress 91% (none)

    2014 01-06 T 19: 20:08.549Z | VMX | I120: Progress 92% (none)

    2014 01-06 T 19: 20:08.584Z | VMX | I120: MainMem: Prefetch 1655 MB of checkpoint (423808 hot, 110923 locked, lazy = 0).

    2014 01-06 T 19: 20:08.584Z | VMX | I120: restore MStats

    2014 01-06 T 19: 20:08.584Z | VMX | I120: Instant restore

    2014 01-06 T 19: 20:08.584Z | VMX | I120: photo restoration

    2014 01-06 T 19: 20:08.584Z | VMX | I120: restoration ide1:0

    2014 01-06 T 19: 20:08.584Z | VMX | I120: restoration scsi0:0

    2014 01-06 T 19: 20:08.584Z | VMX | I120: restoration of TimeTracker

    2014 01-06 T 19: 20:08.584Z | VMX | I120: TimeTracker host at the conversion rate of comments 1919566253 to 3701000000Hz - > 246549300943029 @ 3701000000 Hz

    2014 01-06 T 19: 20:08.584Z | VMX | I120: TimeTracker host to comments ((x * 2147483648) frequency conversion > > 31) + 246547381376776

    2014 01-06 T 19: 20:08.584Z | VMX | I120: timeTracker.globalProgressMaxAllowanceMS: 2000

    2014 01-06 T 19: 20:08.585Z | VMX | I120: timeTracker.globalProgressToAllowanceNS: 1000

    2014 01-06 T 19: 20:08.585Z | VMX | I120: restore Backdoor

    2014 01-06 T 19: 20:08.585Z | VMX | I120: restoration INC

    2014 01-06 T 19: 20:08.585Z | VMX | I120: restoration Cs440bx

    2014 01-06 T 19: 20:08.595Z | VMX | I120: DUMPER: element not found "gpe.status" (2, -1).

    2014 01-06 T 19: 20:08.595Z | VMX | I120: DUMPER: element not found "gpe.enable" (2, -1).

    2014 01-06 T 19: 20:08.596Z | VMX | I120: restoration ExtCfgDevice

    2014 01-06 T 19: 20:08.596Z | VMX | I120: Restore disk

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration AcpiNotify

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration vcpuHotPlug

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration devHP

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration ACPIWake

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration DevicesPowerOn

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration PCIBridge0

    2014 01-06 T 19: 20:08.623Z | VMX | I120: restoration PCIBridge4

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:1

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:2

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:3

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:4

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:5

    2014 01-06 T 19: 20:08.624Z | VMX | I120: restoration pciBridge4:6

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration pciBridge4:7

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration PCIBridge5

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration pciBridge5:1

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration pciBridge5:2

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration pciBridge5:3

    2014 01-06 T 19: 20:08.625Z | VMX | I120: restoration pciBridge5:4

    2014 01-06 T 19: 20:08.626Z | VMX | I120: restoration pciBridge5:5

    2014 01-06 T 19: 20:08.626Z | VMX | I120: restoration pciBridge5:6

    2014 01-06 T 19: 20:08.626Z | VMX | I120: restoration pciBridge5:7

    2014 01-06 T 19: 20:08.626Z | VMX | I120: restoration PCIBridge6

    2014 01-06 T 19: 20:08.626Z | VMX | I120: restoration pciBridge6:1

    2014 01-06 T 19: 20:08.627Z | VMX | I120: restoration pciBridge6:2

    2014 01-06 T 19: 20:08.627Z | VMX | I120: restoration pciBridge6:3

    2014 01-06 T 19: 20:08.627Z | VMX | I120: restoration pciBridge6:4

    2014 01-06 T 19: 20:08.627Z | VMX | I120: restoration pciBridge6:5

    2014 01-06 T 19: 20:08.627Z | VMX | I120: restoration pciBridge6:6

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration pciBridge6:7

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration PCIBridge7

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration pciBridge7:1

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration pciBridge7:2

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration pciBridge7:3

    2014 01-06 T 19: 20:08.628Z | VMX | I120: restoration pciBridge7:4

    2014 01-06 T 19: 20:08.629Z | VMX | I120: restoration pciBridge7:5

    2014 01-06 T 19: 20:08.629Z | VMX | I120: restoration pciBridge7:6

    2014 01-06 T 19: 20:08.629Z | VMX | I120: restoration pciBridge7:7

    2014 01-06 T 19: 20:08.629Z | VMX | I120: restoration of vacuum

    2014 01-06 T 19: 20:08.630Z | VMX | I120: DUMPER: block element [0, -1] ' monbuf' not found.

    2014 01-06 T 19: 20:08.630Z | VMX | I120: DUMPER: block element 'monbuf' [1, -1] not found.

    2014 01-06 T 19: 20:08.630Z | VMX | I120: restore SCSI0

    2014 01-06 T 19: 20:08.630Z | VMX | I120: restore VGA

    2014 01-06 T 19: 20:08.635Z | VMX | I120: restore SVGA

    2014 01-06 T 19: 20:08.640Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:08.670Z | VMX | I120: Phys SVGA sizes: 3840 x 1920 x 32 offset 0 fb 0 x 08000000

    2014 01-06 T 19: 20:08.670Z | VMX | I120: SVGA compatible geometry on restoration of control point

    2014 01-06 T 19: 20:08.670Z | VMX | I120: Old geometry SVGA 4480 x 1920, size max = 134217728

    2014 01-06 T 19: 20:08.670Z | VMX | I120: New geometry SVGA 3840 x 1920, size max = 134217728

    2014 01-06 T 19: 20:08.890Z | VMX | I120: Progress 93% (none)

    2014 01-06 T 19: 20:09.110Z | VMX | I120: Progression of 94% (none)

    2014 01-06 T 19: 20:09.380Z | VMX | I120: Progress 95% (none)

    2014 01-06 T 19: 20:09.577Z | VMX | I120: Progress 96% (none)

    2014 01-06 T 19: 20:09.800Z | VMX | I120: Progress 97% (none)

    2014 01-06 T 19: 20:10.039Z | VMX | I120: Progress 98% (none)

    2014 01-06 T 19: 20:10.079Z | VMX | I120: MKS3dCaps: comments, recorded at the checkpoint

    2014 01-06 T 19: 20:10.079Z | VMX | I120: cap [0]: 0x00000001 (3D)

    2014 01-06 T 19: 20:10.079Z | VMX | I120: Cap [1]: 0x0000000a (MAX_LIGHTS)

    2014 01-06 T 19: 20:10.079Z | VMX | I120: cap [2]: 0x00000008 (MAX_TEXTURES)

    2014 01-06 T 19: 20:10.079Z | VMX | I120: Cap [3]: 0 x 00000006 (MAX_CLIP_PLANES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [4]: 0 x 00000007 (VERTEX_SHADER_VERSION)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [5]: 0x00000001 (VERTEX_SHADER)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: Cape [6]: 0x0000000d (FRAGMENT_SHADER_VERSION)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cover [7]: 0x00000001 (FRAGMENT_SHADER)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [8]: 0 x 00000004 (MAX_RENDER_TARGETS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [9]: 0x00000001 (S23E8_TEXTURES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: Cap [10]: 0x00000001 (S10E5_TEXTURES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [11]: 0 x 00000004 (MAX_FIXED_VERTEXBLEND)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [12]: 0x00000001 (D16_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [13]: 0x00000001 (D24S8_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: nerve [14]: 0x00000001 (D24X8_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [15]: 0x00000001 (QUERY_TYPES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [16]: 0x00000001 (TEXTURE_GRADIENT_SAMPLING)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [17]: 256.000000 (MAX_POINT_SIZE)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [18]: 0 x 00000014 (MAX_SHADER_TEXTURES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [19]: 0 x 00004000 (MAX_TEXTURE_WIDTH)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [20]: 0 x 00004000 (MAX_TEXTURE_HEIGHT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [21]: 0 x 00004000 (MAX_VOLUME_EXTENT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [22]: 0 x 00002000 (MAX_TEXTURE_REPEAT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [23]: 0 x 00002000 (MAX_TEXTURE_ASPECT_RATIO)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [24]: 0x00000010 (MAX_TEXTURE_ANISOTROPY)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [25]: 0 x 00555555 (MAX_PRIMITIVE_COUNT)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [26]: 0x00ffffff (MAX_VERTEX_INDEX)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [27]: 0xffffffff (MAX_VERTEX_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [28]: 0xffffffff (MAX_FRAGMENT_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [29]: 0x00000020 (MAX_VERTEX_SHADER_TEMPS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [30]: 0x00000020 (MAX_FRAGMENT_SHADER_TEMPS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [31]: 0x03ffffff (TEXTURE_OPS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [32]: 0x0098ec1f (SURFACEFMT_X8R8G8B8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [33]: 0x0098e11f (SURFACEFMT_A8R8G8B8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [34]: 0x0088601f (SURFACEFMT_A2R10G10B10)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [35]: 0x0088601f (SURFACEFMT_X1R5G5B5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [36]: 0x0088611f (SURFACEFMT_A1R5G5B5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [37]: 0x0080611f (SURFACEFMT_A4R4G4B4)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [38]: 0x00886c1f (SURFACEFMT_R5G6B5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [39]: 0x0080600f (SURFACEFMT_LUMINANCE16)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [40]: 0 x 00804007 (SURFACEFMT_LUMINANCE8_ALPHA8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [41]: 0 x 00804007 (SURFACEFMT_ALPHA8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [42]: 0x0080600f (SURFACEFMT_LUMINANCE8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [43]: 0x000000c1 (SURFACEFMT_Z_D16)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [44]: 0x000000c1 (SURFACEFMT_Z_D24S8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [45]: 0x000000c1 (SURFACEFMT_Z_D24X8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [46]: 0x0080c005 (SURFACEFMT_DXT1)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [47]: 0x0080c005 (SURFACEFMT_DXT2)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [48]: 0x0080c005 (SURFACEFMT_DXT3)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [49]: 0x0080c005 (SURFACEFMT_DXT4)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [50]: 0x0080c005 (SURFACEFMT_DXT5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [51]: 0 x 00810007 (SURFACEFMT_BUMPX8L8V8U8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [52]: 0 x 00810007 (SURFACEFMT_A2W10V10U10)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [53]: 0 x 00810007 (SURFACEFMT_BUMPU8V8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [54]: 0x0081400f (SURFACEFMT_Q8W8V8U8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [55]: 0 x 01240000 (SURFACEFMT_CxV8U8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [56]: 0x0080601f (SURFACEFMT_R_S10E5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [57]: 0x0080601f (SURFACEFMT_R_S23E8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [58]: 0x0080601f (SURFACEFMT_RG_S10E5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [59]: 0x0080601f (SURFACEFMT_RG_S23E8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [60]: 0x0080601f (SURFACEFMT_ARGB_S10E5)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [61]: 0x0080601f (SURFACEFMT_ARGB_S23E8)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [62]: 0x00000000 (MISSING62)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [63]: 0 x 00000004 (MAX_VERTEX_SHADER_TEXTURES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [64]: 0 x 00000004 (MAX_SIMULTANEOUS_RENDER_TARGETS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [65]: 0 x 00810007 (SURFACEFMT_V16U16)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [66]: 0x0080601f (SURFACEFMT_G16R16)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [67]: 0x0080601f (SURFACEFMT_A16B16G16R16)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [68]: 0 x 01246000 (SURFACEFMT_UYVY)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [69]: 0 x 01246000 (SURFACEFMT_YUY2)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [70]: 0 x 00000003 (MULTISAMPLE_NONMASKABLESAMPLES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [71]: 0x0000008b (MULTISAMPLE_MASKABLESAMPLES)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [72]: 0x00000001 (ALPHATOCOVERAGE)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [73]: 0x00000000 (UPSAMPLING)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [74]: 0x00000001 (AUTOGENMIPMAPS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [75]: 0 x 01246000 (SURFACEFMT_NV12)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [76]: 0 x 01246000 (SURFACEFMT_AYUV)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [77]: 0x00000100 (MAX_CONTEXT_IDS)

    2014 01-06 T 19: 20:10.080Z | VMX | I120: cap [78]: 0 x 00008000 (MAX_SURFACE_IDS)

    2014 01-06 T 19: 20:10.117Z | VMX | I120: D3D-Backend: started successfully by renderMux for screen composition.

    2014 01-06 T 19: 20:10.126Z | VMX | I120: DUMPER: element not found "shaderProgId" [0, 0].

    2014 01-06 T 19: 20:10.237Z | VMX | I120: DUMPER: element not found "screens.arraySize" [-1, -1].

    2014 01-06 T 19: 20:10.238Z | VMX | I120: MKS3dCaps: guest, to the curriculum vitae

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [0]: 0x00000001 (3D)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: Cap [1]: 0x0000000a (MAX_LIGHTS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [2]: 0x00000008 (MAX_TEXTURES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: Cap [3]: 0 x 00000006 (MAX_CLIP_PLANES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [4]: 0 x 00000007 (VERTEX_SHADER_VERSION)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [5]: 0x00000001 (VERTEX_SHADER)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: Cape [6]: 0x0000000d (FRAGMENT_SHADER_VERSION)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cover [7]: 0x00000001 (FRAGMENT_SHADER)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [8]: 0 x 00000004 (MAX_RENDER_TARGETS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [9]: 0x00000001 (S23E8_TEXTURES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: Cap [10]: 0x00000001 (S10E5_TEXTURES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [11]: 0 x 00000004 (MAX_FIXED_VERTEXBLEND)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [12]: 0x00000001 (D16_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [13]: 0x00000001 (D24S8_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: nerve [14]: 0x00000001 (D24X8_BUFFER_FORMAT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [15]: 0x00000001 (QUERY_TYPES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [16]: 0x00000001 (TEXTURE_GRADIENT_SAMPLING)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [17]: 256.000000 (MAX_POINT_SIZE)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [18]: 0 x 00000014 (MAX_SHADER_TEXTURES)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [19]: 0 x 00004000 (MAX_TEXTURE_WIDTH)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [20]: 0 x 00004000 (MAX_TEXTURE_HEIGHT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [21]: 0 x 00004000 (MAX_VOLUME_EXTENT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [22]: 0 x 00002000 (MAX_TEXTURE_REPEAT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [23]: 0 x 00002000 (MAX_TEXTURE_ASPECT_RATIO)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [24]: 0x00000010 (MAX_TEXTURE_ANISOTROPY)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [25]: 0 x 00555555 (MAX_PRIMITIVE_COUNT)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [26]: 0x00ffffff (MAX_VERTEX_INDEX)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [27]: 0xffffffff (MAX_VERTEX_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [28]: 0xffffffff (MAX_FRAGMENT_SHADER_INSTRUCTIONS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [29]: 0x00000020 (MAX_VERTEX_SHADER_TEMPS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [30]: 0x00000020 (MAX_FRAGMENT_SHADER_TEMPS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [31]: 0x03ffffff (TEXTURE_OPS)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [32]: 0x0098ec1f (SURFACEFMT_X8R8G8B8)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [33]: 0x0098e11f (SURFACEFMT_A8R8G8B8)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [34]: 0x0088601f (SURFACEFMT_A2R10G10B10)

    2014 01-06 T 19: 20:10.238Z | VMX | I120: cap [35]: 0x0088601f (SURFACEFMT_X1R5G5B5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [36]: 0x0088611f (SURFACEFMT_A1R5G5B5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [37]: 0x0080611f (SURFACEFMT_A4R4G4B4)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [38]: 0x00886c1f (SURFACEFMT_R5G6B5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [39]: 0x0080600f (SURFACEFMT_LUMINANCE16)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [40]: 0 x 00804007 (SURFACEFMT_LUMINANCE8_ALPHA8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [41]: 0 x 00804007 (SURFACEFMT_ALPHA8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [42]: 0x0080600f (SURFACEFMT_LUMINANCE8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [43]: 0x000000c1 (SURFACEFMT_Z_D16)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [44]: 0x000000c1 (SURFACEFMT_Z_D24S8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [45]: 0x000000c1 (SURFACEFMT_Z_D24X8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [46]: 0x0080c005 (SURFACEFMT_DXT1)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [47]: 0x0080c005 (SURFACEFMT_DXT2)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [48]: 0x0080c005 (SURFACEFMT_DXT3)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [49]: 0x0080c005 (SURFACEFMT_DXT4)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [50]: 0x0080c005 (SURFACEFMT_DXT5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [51]: 0 x 00810007 (SURFACEFMT_BUMPX8L8V8U8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [52]: 0 x 00810007 (SURFACEFMT_A2W10V10U10)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [53]: 0 x 00810007 (SURFACEFMT_BUMPU8V8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [54]: 0x0081400f (SURFACEFMT_Q8W8V8U8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [55]: 0 x 01240000 (SURFACEFMT_CxV8U8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [56]: 0x0080601f (SURFACEFMT_R_S10E5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [57]: 0x0080601f (SURFACEFMT_R_S23E8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [58]: 0x0080601f (SURFACEFMT_RG_S10E5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [59]: 0x0080601f (SURFACEFMT_RG_S23E8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [60]: 0x0080601f (SURFACEFMT_ARGB_S10E5)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [61]: 0x0080601f (SURFACEFMT_ARGB_S23E8)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [62]: 0x00000000 (MISSING62)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [63]: 0 x 00000004 (MAX_VERTEX_SHADER_TEXTURES)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [64]: 0 x 00000004 (MAX_SIMULTANEOUS_RENDER_TARGETS)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [65]: 0 x 00810007 (SURFACEFMT_V16U16)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [66]: 0x0080601f (SURFACEFMT_G16R16)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [67]: 0x0080601f (SURFACEFMT_A16B16G16R16)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [68]: 0 x 01246000 (SURFACEFMT_UYVY)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [69]: 0 x 01246000 (SURFACEFMT_YUY2)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [70]: 0 x 00000003 (MULTISAMPLE_NONMASKABLESAMPLES)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [71]: 0x0000008b (MULTISAMPLE_MASKABLESAMPLES)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [72]: 0x00000001 (ALPHATOCOVERAGE)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [73]: 0x00000000 (UPSAMPLING)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [74]: 0x00000001 (AUTOGENMIPMAPS)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [75]: 0 x 01246000 (SURFACEFMT_NV12)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [76]: 0 x 01246000 (SURFACEFMT_AYUV)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [77]: 0x00000100 (MAX_CONTEXT_IDS)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: cap [78]: 0 x 00008000 (MAX_SURFACE_IDS)

    2014 01-06 T 19: 20:10.239Z | VMX | I120: restore usb

    2014 01-06 T 19: 20:10.239Z | VMX | I120: DUMPER: element not found "lastFrnumChangeTime" [-1, -1].

    2014 01-06 T 19: 20:10.239Z | VMX | I120: restoration usb:0

    2014 01-06 T 19: 20:10.239Z | VMX | I120: restoration usb:1

    2014 01-06 T 19: 20:10.239Z | VMX | I120: restore Ethernet0

    2014 01-06 T 19: 20:10.240Z | VMX | I120: restoring a sound

    2014 01-06 T 19: 20:10.241Z | VMX | I120: restoration hpet0

    2014 01-06 T 19: 20:10.241Z | VMX | I120: restoration ich7m.hpet

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restore ehci

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration vmci0

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration vmioplugin

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration OEMDevice

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration of decision-making

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration GuestMsg

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration GuestRpc

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restore Timer

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration of ACPI

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restore XPMode

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration of tools

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration of tools install

    2014 01-06 T 19: 20:10.242Z | VMX | I120: TOOLS INSTALLATION setting to 0 to restore mode.

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration GuestAppMonitor

    2014 01-06 T 19: 20:10.242Z | VMX | I120: DUMPER: asked 10 bytes, found 5 bytes.

    2014 01-06 T 19: 20:10.242Z | VMX | I120: DUMPER: asked 20 bytes, found 5 bytes.

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restore Hgfs

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration MKSVMX

    2014 01-06 T 19: 20:10.242Z | VMX | I120: restoration of DMA

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration BackdoorAPM

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore CMOS

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore FlashRam

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore A20

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration backdoorAbsMouse

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration of keyboard

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration of SIO

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore serial0

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore serial1

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restore Serial0

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration monitorLate

    2014 01-06 T 19: 20:10.243Z | VMX | I120: restoration MemoryHotplug

    2014 01-06 T 19: 20:10.244Z | VMX | I120: restoration of devices

    2014 01-06 T 19: 20:10.244Z | VMX | I120: restoration configdbFT

    2014 01-06 T 19: 20:10.244Z | VMX | I120: restoration FeatureCompat

    2014 01-06 T 19: 20:10.244Z | VMX | I120: Increase by 101% (none)

    2014 01-06 T 19: 20:10.244Z | VMX | I120: DUMPER: update header to restore magic.

    2014 01-06 T 19: 20:10.248Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:10.288Z | VMX | I120: FILE: File_RenameRetry: expiration of the retry delay (10, Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~, Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmx). last error access denied (5)

    2014 01-06 T 19: 20:10.337Z | VMX | I120: Comments CPUID hostCPUID differences.

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 00000001, 0: 0x000206a7 0 x 00010800 0 x 96982203 0x0fabfbff

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 00000004, 0: 0 x 00000121 0x01c0003f 0x0000003f 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 00000004, 1: 0 x 00000122 0x01c0003f 0x0000003f 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 00000004, 2: 0 x 00000143 0x01c0003f 0x000001ff 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 00000004, 3: 0 x 00000163 0x02c0003f 0x00001fff 0 x 00000006

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 0000000, 0: 0 x 07300801 0x0000007f 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 0000000b, 0: 0x00000000 0x00000001 0x00000100 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 1: 0 x 00000000 0000000b 0x00000001 0 x 00000201 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 0000000b, 2: 0 x 00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000000, 0: 0 x 40000010 0x61774d56 0x4d566572 0 x 65726177

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000001, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000002, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000004, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000006, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000007, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000008, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 4000000, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 4000000b, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 4000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level of 4000000d, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID 4000000e level, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 4000000f, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 40000010, 0: 0 x 00387908 0x000101d0 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 80000008, 0: 0 x 00003028 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: guestCPUID level 80000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000

    2014 01-06 T 19: 20:10.337Z | VMX | I120: Control desired CPUID.

    2014 01-06 T 19: 20:10.338Z | VMX | I120: VPCM: events will use hybrid gel.

    2014 01-06 T 19: 20:10.338Z | VMX | I120: VPCM: gen counters: num 8 mask 0xffffffffffff

    2014 01-06 T 19: 20:10.338Z | VMX | I120: VPCM: difficulty counters: mask num 0 0; version 1

    2014 01-06 T 19: 20:10.338Z | VMX | I120: VPCM: hardware counters: 0

    2014 01-06 T 19: 20:10.339Z | VMX | I120: SVGA: join IOSpace 0x10d0

    2014 01-06 T 19: 20:10.339Z | VMX | I120: BusMemSampleSetUpStats: hit: pages initPct 15 0: sali: initPct 6 pages 0

    2014 01-06 T 19: 20:10.339Z | VMX | I120: FeatureCompat: capabilities:

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.fixctr.1 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.6 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. Intel = 0 x 1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. XSAVE = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.fixctr.0 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. LM = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.7 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. MWAIT = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.numGenCtrs = 0x8

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.fixedWidth = 0 x 30

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.4 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. VMX = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genWidth = 0 x 30

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.version = 0x3

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. XCR0_MASTER_YMM_H = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.fixctr.2 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.5 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. PCID = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.microarchitecture.sandybridge = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.2 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. SSSE3 = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. SSE3 = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. NX = 0 X 1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. SSE41 = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. AES = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. PCLMULQDQ = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. SS = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. POPCNT = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. AVX = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.3 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vt.realmode = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. DS = 0 X 1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.0 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. RDTSCP = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. LAHF64 = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: hv.capable = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. CMPXCHG16B = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.numFixedCtrs = 0x3

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: vpmc.genctr.1 = 0x1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. SSE42 = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: Ability Found: cpuid. XCR0_MASTER_SSE = 0X1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: FeatureCompat: requirements:

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. SSE3 - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. PCLMULQDQ - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. SSSE3 - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. CMPXCHG16B - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. SSE41 - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. SSE42 - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. POPCNT - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. AES - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. XSAVE - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. AVX - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. DS - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. SS - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. XCR0_MASTER_SSE - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. XCR0_MASTER_YMM_H - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. LAHF64 - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. NX - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. RDTSCP - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. LM - Bool:Min:1

    2014 01-06 T 19: 20:10.339Z | VMX | I120: VM features required: cpuid. Intel - Bool:Min:1

    2014 01-06 T 19: 20:10.340Z | VMX | I120: Request received in VMX tools to set the option 'enableDnD'--> '1'

    2014 01-06 T 19: 20:10.341Z | VMX | I120:

    2014 01-06 T 19: 20:10.341Z | VMX | I120 + OvhdMem: Static (Power On) fresh General

    2014 01-06 T 19: 20:10.341Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 20:10.341Z | VMX | I120: Excluded OvhdMem max news |    max avg cur

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_MainMem: 524288 524288 |      -      -      -

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxText: 5376 5376 |      -      -      -

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxTextLibs: 15360 15360 |      -      -      -

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem Total excluded: 545024 545024 |      -      -      -

    2014 01-06 T 19: 20:10.341Z | VMX | I120:

    2014 01-06 T 19: 20:10.341Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem paged max news |    max avg cur

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_KSTATS_vmm: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_STATS_vmm: 4 4 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_KSTATS_device: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_STATS_device: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_KSTATS_migrate: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_DiskLibMemUsed: 3075 3075 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VgaShadowFB: 347 347 |    347 347 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SvgaSurfaceTable: 576 576 |    576 576 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SvgaShaderTable: 515 515 |    515 515 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SvgaShaderText: 2048 2048 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SvgaContextTable: 1564-1564.      7      7      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxAllocTrack: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxCallStackProf: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxGlobals: 10240 10240 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxGlobalsLibs: 3584 3584 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxHeap: 8448 8448 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxHeapFreeList: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMainMemCheck: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMks: 33 33 |      1      1      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksThumbnail: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMks3d: 262144 262144 |      2027 0 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksGLRenderer: 131072 131072 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksLLVM: 8192 8192 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksScreenshot: 65537 65537.      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksVnc: 37712 37712 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxMksShadowFB: 32768 32768 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxPhysMemRingBuf: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxReplayCheck: 0 4096 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxFTCptOutputBuf: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxSLEntryBuf: 128 128 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxThreadMks: 512 512 |    512 512 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxThreadVmx: 512 512 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxThreadsVcpu: 512 512 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxThreadsWorker: 16384 16384 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VmxThreadSvga: 512 512 |    512 512 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem Total paged: 586421 590517 |   2470 4497 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120:

    2014 01-06 T 19: 20:10.341Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem nonpaged heart max |    max avg cur

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SharedArea: 240 240 |     65 65 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_BusMemTraceBitmap: 20 20 |     20 20 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PFrame: 1230-1350 |   1230 1230 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VProbe: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VIDE_KSEG: 16 16 |     16 16 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VGA: 64 64 |     64 64 0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PShareMPN: 6 of 6 |      5      5      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_P2MUpdateBuffer: 3 of 3 |      3      3      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SharedMPNsPool: 20 20 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_ServicesMPN: 2 2 |      2      2      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_LocalApic: 2 2 |      2      2      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_BusError: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VBIOS: 8 of 8 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VnicGuest: 16 16 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_VnicMmap: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_TestDev: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_LSIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_LSIRings: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PCIPBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PVSCSIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PVSCSIKickReg: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SAS1068BIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SBIOS: 16 16 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_AHCIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_FlashRam: 128 128 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SVGAFB: 32768 32768 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_SVGAMEM: 512 512 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_HDAudioReg: 3 of 3 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_EHCIRegister: 1 of 1 |      1      1      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_XhciRegister: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_PhysMemDebug: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_HyperV: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.341Z | VMX | I120: OvhdMem OvhdUser_HVIOBitmap: 3 of 3 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_HVMSRBitmap: 2 2 |      1      1      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_VHVGuestMSRBitmap: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_vhvCachedVMCS: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_StateLoggerLogBuf: 0 512 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_PCIP: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_VMsafe: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_MonWired: 108 108 |    108 108 0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_MonLow: 4 4 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_MonWiredNuma: 52 52 |     52 52 0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_MonNuma: 801 801 |    276 276 0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_MonOther: 36 36 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_SVMLowMem: 3 of 3 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_PAEShadow: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdUser_FTCpt: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem Total non paged: 36706 36074 |   1845 1845 0

    2014 01-06 T 19: 20:10.342Z | VMX | I120:

    2014 01-06 T 19: 20:10.342Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem heart anonymous max |    max avg cur

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_Alloc: 142 142 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemFrame: 1345-1352.      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemFramePGAR: 3 of 3 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemTracePGAR: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMem2MRegionPGAR: 8 of 8 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemZapListMPN: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemRemap: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_MMU: 1402 1402.      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_ScratchAS: 324 324 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_MonTLB: 12 12 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_DT: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_TCCoherency: 12 12 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_TC: 1024 1024 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_ChainInfo: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_Island: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusMemScratchAS: 6 of 6 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_PlatformScratchAS: 5 of 5 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BackdoorHintsMPN: 3 of 3 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_HV: 6 of 6 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VHV: 8 of 8 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VNPTShadow: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VNPTShadowCache: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VNPTBackmap: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_SVMIDT: 2 2 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_CallStackProfAnon: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_Numa: 755 755 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_WiredNuma: 52 52 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_GPhysTraced: 247 247 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_GPhysHWMMU: 1243-1243.      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_GPhysNoTrace: 61 61 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BTScratchPage: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_StateLoggerBufferPA: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_TraceALot: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VIDE: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VMXNETWake: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_BusLogic: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_Ahci: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_PVSCSIShadowRing: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_LSIRings: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_FTCptScratchAS: 0 0 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem OvhdMon_VProbe: 1 of 1 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120: OvhdMem Total Anonymous: 6670 6677 |      0      0      0

    2014 01-06 T 19: 20:10.342Z | VMX | I120:

    2014 01-06 T 19: 20:10.342Z | VMX | I120: VMMEM: specific reservation: 428 MB (MainMem = 2048MB)

    2014 01-06 T 19: 20:10.342Z | VMX | I120: Vix: [9140 mainDispatch.c:1116]: VMAutomation_PowerOn. Turn on/off.

    2014 01-06 T 19: 20:10.343Z | VMX | I120: VMX_PowerOn: ModuleTable_PowerOn = 1

    2014 01-06 T 19: 20:10.357Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:10.389Z | VMX | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:10.410Z | vCPU-0 | I120: VTHREAD start thread id 'vcpu-0' 3, host 8328

    2014 01-06 T 19: 20:10.411Z | vCPU-0 | I120: APIC: version = 0x15, LVT max = 6, LDR = 0 x 4000000, DFR = 0xffffffff

    2014 01-06 T 19: 20:10.412Z | vCPU-1 | I120: 4 'vcpu-1' host Id of the thread to start VTHREAD 1700

    2014 01-06 T 19: 20:10.412Z | vCPU-1 | I120: APIC: version = 0x15, LVT max = 6, LDR = 0 x 2000000, DFR = 0xffffffff

    2014 01-06 T 19: 20:10.412Z | vCPU-1 | I120: Intel VT: VPID activated.

    2014 01-06 T 19: 20:10.413Z | vCPU-1 | I120: Intel VT active.

    2014 01-06 T 19: 20:10.413Z | vCPU-0 | I120: PIIX4: PM Resuming suspended type 0 x 5, chipset.onlineStandby 0

    2014 01-06 T 19: 20:10.414Z | vCPU-1 | W110: Restoration of VMM

    2014 01-06 T 19: 20:10.454Z | vCPU-0 | I120: HER 014.192343 ES1371Win32GetMixerCtl mixerGetLineInfo error 1024

    2014 01-06 T 19: 20:10.454Z | vCPU-0 | I120: VNET: ethernet0 activate link spread of the State, lsp.state = 5

    2014 01-06 T 19: 20:10.454Z | vCPU-0 | I120: VNET: MACVnetConnectToNetwork ethernet0 lsp.state = 4

    2014 01-06 T 19: 20:10.454Z | vCPU-0 | I120: VNET: MACVNetConnectToNetwork Ethernet0: notify available

    2014 01-06 T 19: 20:10.455Z | vCPU-0 | I120: Intel VT: VPID activated.

    2014 01-06 T 19: 20:10.455Z | vCPU-0 | I120: Intel VT active.

    2014 01-06 T 19: 20:10.457Z | vCPU-0 | W110: Restoration of VMM

    2014 01-06 T 19: 20:10.457Z | Worker #1 | I120: MainMem: Begin lazy IO (524288 pages, 524288, 1-wire, bio = 0).

    2014 01-06 T 19: 20:10.457Z | Worker #1 | I120: MainMem: end lazy IO (524288, sync = 0, error = 0).

    2014 01-06 T 19: 20:10.464Z | vCPU-0 | I120: SVGA: join 0xfe000000 (0xfe000000) and 0xe8000000 (0xe8000000) MemSpace

    2014 01-06 T 19: 20:10.464Z | vCPU-0 | I120: Vix: [8328 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 0, newAppState = 1872, success = 1 additionalError = 0

    2014 01-06 T 19: 20:10.467Z | vCPU-0 | I120: Vix: [8328 mainDispatch.c:3905]: VMAutomationReportPowerStateChange: notification of change of State of power (opcode = 0, err = 0).

    2014 01-06 T 19: 20:10.467Z | vCPU-0 | I120: Vix: [8328 mainDispatch.c:3905]: VMAutomationReportPowerStateChange: notification of change of State of power (opcode = 2, err = 0).

    2014 01-06 T 19: 20:10.467Z | vCPU-0 | I120: Vmx/execState/val passes to receiver

    2014 01-06 T 19: 20:10.486Z | vCPU-0 | I120: CPT: vmstart

    2014 01-06 T 19: 20:10.486Z | vCPU-1 | I120: CPT: vmstart

    2014 01-06 T 19: 20:10.645Z | vCPU-0 | I120: Guest: Tools-MDN box: Version: build-1294478

    2014 01-06 T 19: 20:10.659Z | vCPU-0 | I120: GuestRpc: Channel 0, comments application toolbox-MDN.

    2014 01-06 T 19: 20:10.681Z | vCPU-0 | I120: Guest: Toolbox: Version: build-1294478

    2014 01-06 T 19: 20:10.681Z | vCPU-0 | I120: GuestRpc: channel 3, comments toolbox application.

    2014 01-06 T 19: 20:10.709Z | vCPU-0 | I120: VMXNET: MAC 0: C:29: 7:AE: 46 55760.

    2014 01-06 T 19: 20:11.086Z | vCPU-0 | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:11.412Z | VMX | I120: PTSC: reference clock [TSC: 47830821753787 - > 47880160759648, RC: 46709786869-> 46757969492]

    2014 01-06 T 19: 20:11.412Z | VMX | I120: PTSC: PTSC current = 55459716162

    2014 01-06 T 19: 20:11.920Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:11.925Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:11.925Z | VMX | I120: VUsbUpdateVigorFieldsAndAutoconnect: new series of 4 USB devices

    2014 01-06 T 19: 20:11.925Z | VMX | I120: USB: found device [name: PCTV\ 290th vid:2013 pid:024f path: 1/9/0 speed: high family: seller instanceId:USB\\VID_2013 & PID_024F\\00000010DPUQ serialnum:00000010DPUQ arbRuntimeKey:4 version: 2]

    2014 01-06 T 19: 20:11.925Z | VMX | I120: USB: found device [name: Standard\ Ultra\ Fast\ Media\ player vid:0424 pid:4063 path: 1/9/2/0/0 speed: high family: storage instanceId:USB\\VID_0424 & PID_4063\\000000264001 serialnum:000000264001 arbRuntimeKey:6 version: 2]

    2014 01-06 T 19: 20:11.925Z | VMX | I120: USB: found device [name: Logitech\ G15\ GamePanel\ LCD vid:046 d pid:c227 path: 1/0/0/2/3 family speed: full: hid instanceId:USB\\VID_046D & PID_C227\\7 & C7EE800 & 0 & 4 arbRuntimeKey:2 version: 2]

    2014 01-06 T 19: 20:11.925Z | VMX | I120: USB: found device [name: Virtual\ Bluetooth\ Adaptateur vid:0 has 12 pid:0001 speed: full family: Wireless, bluetooth deviceType: virtual-bluetooth version: 2]

    2014 01-06 T 19: 20:11.927Z | VMX | I120: VNET: MACVNetLinkStateEventHandler: event, upwards: 1, adapter: 0

    2014 01-06 T 19: 20:11.927Z | VMX | I120: VNET: MACVNetLinkStateEventHandler: ethernet0 State 4 to 6

    2014 01-06 T 19: 20:11.935Z | VMX | I120: VMXVmdb_SetToolsVersionStatus: State set to 'ok', 'current', installation possible

    2014 01-06 T 19: 20:11.935Z | VMX | I120: VMXVmdb_SetToolsVersionStatus: State set to 'ok', 'current', installation possible

    2014 01-06 T 19: 20:11.935Z | VMX | I120: MainMem: in the meantime completed the restoration of lazy control point (1).

    2014 01-06 T 19: 20:11.935Z | VMX | I120: CPT: delete checkpoint State, ' Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional - 979000f6.vmss'.

    2014 01-06 T 19: 20:12.050Z | vCPU-0 | I120: DDB: "longContentID" = "bd7208b345bfb3bafa6b090e753e8a50" (was "b4c7856d387de80ca84aaa7a6625da87")

    2014 01-06 T 19: 20:12.050Z | vCPU-0 | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmdk Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 20:12.177Z | vCPU-0 | I120: TOOLS autoupgrade Protocol version 2

    2014 01-06 T 19: 20:12.178Z | vCPU-0 | I120: Vix: [8328 mainDispatch.c:3905]: VMAutomationReportPowerStateChange: notification of change of State of power (opcode = 2, err = 0).

    2014 01-06 T 19: 20:12.179Z | vCPU-0 | I120: TOOLS call rpc, version = 9408 tools.set.version.

    2014 01-06 T 19: 20:12.179Z | vCPU-0 | I120: ToolsSetVersionWork has nothing; new version of tools (9408) corresponds to the old version of the tools

    2014 01-06 T 19: 20:12.179Z | vCPU-0 | I120: Departure manifest copy comments.

    2014 01-06 T 19: 20:12.262Z | vCPU-0 | I120: HGFileCopyCreateSessionCB: has successfully created the session.

    2014 01-06 T 19: 20:12.284Z | VMX | I120: VNET: MACVNetLinkStateTimerHandler: ethernet0: State of 6 to 1

    2014 01-06 T 19: 20:12.304Z | vCPU-0 | I120: ToolsLoadManifestFileCB: Queuing request to update the manifest information.

    2014 01-06 T 19: 20:12.305Z | Worker #0 | I120: GetHostManifests: extraction of the manifest file.

    2014 01-06 T 19: 20:12.306Z | Worker #0 | I120: GetHostManifests: fact extraction of the manifest file.

    2014 01-06 T 19: 20:12.306Z | Worker #0 | I120: ToolsVersionGetStatus:

    2014 01-06 T 19: 20:12.307Z | Worker #0 | I120: ToolsVersionGetStatusWorkerThread: status tools 3 from the environment

    2014 01-06 T 19: 20:12.307Z | VMX | I120: ToolsUpdateManifestInfoWorkerThreadDone: tools by report show the host and the guest. Status = 3.

    2014 01-06 T 19: 20:12.307Z | VMX | I120: ToolsUpdateManifestInfoWorkerThreadDone: update the manifest information.

    2014 01-06 T 19: 20:12.307Z | VMX | I120: VMXVmdb_SetToolsVersionStatus: State set to 'ok', 'current', installation possible

    2014 01-06 T 19: 20:12.307Z | VMX | I120: 9408 installed TOOLS, legacy version inherited version 9408

    2014 01-06 T 19: 20:12.307Z | VMX | I120: Clear TOOLS to update state is 3

    2014 01-06 T 19: 20:12.307Z | VMX | I120: TOOLS can be autoupgraded.

    2014 01-06 T 19: 20:12.307Z | VMX | I120: Adjustment TOOLS autoupgrade-verified TRUE.

    2014 01-06 T 19: 20:12.307Z | VMX | I120: RPT: not ESX. Jumps.

    2014 01-06 T 19: 20:12.425Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:12.425Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:12.463Z | VMX | I120: Tools_ChangeHost3DAvailabilityHint: send rpcMsg = 1 ChangeHost3DAvailabilityHint

    2014 01-06 T 19: 20:13.258Z | MKS | I120: KHBKL: impossible to analyze KeyString to: "

    2014 01-06 T 19: 20:13.369Z | MKS | I120: D3D-Backend: successfully started by HWinMux make the composition of the window.

    2014 01-06 T 19: 20:13.380Z | MKS | I120: MKS - SWB: number of MKSWindows has changed: 1 make MKSWindow (s) of the total 1.

    2014 01-06 T 19: 20:13.426Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:13.426Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:14.462Z | MKS | I120: Inform the tools that 3d is available.

    2014 01-06 T 19: 20:14.462Z | VMX | I120: Tools_ChangeHost3DAvailabilityHint: send rpcMsg = 1 ChangeHost3DAvailabilityHint

    2014 01-06 T 19: 20:15.427Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:15.427Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:24.251Z | VMX | I120: VNET: MACVNetLinkStateTimerHandler: ethernet0: State of 1 to 5

    2014 01-06 T 19: 20:25.428Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:25.428Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:54.078Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 20:55.428Z | VMX | I120: USB: connect device 0xc00000000a120001

    2014 01-06 T 19: 20:55.428Z | VMX | W110: Backend host Bluetooth is not available.

    2014 01-06 T 19: 20:58.844Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 20:59.015Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 21:06.939Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 21:07.679Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 21:20.115Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 21:47.272Z | VMX | I120: GuestRpcSendTimedOut: message to the Toolbox has expired.

    2014 01-06 T 19: 22:21.429Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:26.724Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:26.939Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:27.011Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:27.183Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:29.530Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:37.618Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:37.919Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 22:38.584Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 23:19.146Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 23:19.291Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 23:29.760Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 23:52.865Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 24:11.076Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 24:15.754Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 25:38.443Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 25:39.538Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 25:41.781Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 26:07.599Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 26:48.808Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 26:49.045Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:06.181Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:13.100Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:33.965Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:34.248Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:34.834Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:34.886Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:36.450Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:36.881Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:37.066Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:37.495Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:39.523Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:40.127Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:40.908Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:42.549Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:45.278Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:47.227Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 27:56.166Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 28:47.252Z | VMX | I120: GuestRpcSendTimedOut: message to the Toolbox has expired.

    2014 01-06 T 19: 31:03.066Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 31:36.260Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:01.768Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:32.298Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:32.498Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:37.568Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:37.637Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:47.187Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:47.245Z | VMX | I120: GuestRpcSendTimedOut: message to the Toolbox has expired.

    2014 01-06 T 19: 32:53.944Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:54.280Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:54.935Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:55.006Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:56.176Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 32:56.893Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:05.816Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:16.413Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:16.836Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:44.232Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:44.443Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:45.174Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:45.514Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:46.731Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:47.242Z | VMX | I120: GuestRpcSendTimedOut: message to the Toolbox has expired.

    2014 01-06 T 19: 33:47.446Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:47.449Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:47.583Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:47.592Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:47.667Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:51.660Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 33:59.125Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 34:11.659Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 34:18.162Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 34:28.955Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 34:51.261Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 35:01.644Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:08.787Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:09.616Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:16.471Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:17.123Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:56.928Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 37:57.618Z | VMX | I120: USBGW: writing arbitrator op: 13 len:28

    2014 01-06 T 19: 38:09.297Z | VMX | I120: VMXVmdbCbVmVmxExecState: change of State Exec asked the suspended state without reset, hard, softOptionTimeout: 20000000.

    2014 01-06 T 19: 38:09.297Z | VMX | I120: SUSPEND: Start (flags = prog progData cb = 13F55DAE0 cbData = 0 0 = 0 = 0)

    2014 01-06 T 19: 38:09.762Z | vCPU-0 | I120: Closing all disks in the virtual machine.

    2014 01-06 T 19: 38:09.762Z | vCPU-0 | I120: Closing of disc scsi0:0

    2014 01-06 T 19: 38:09.778Z | vCPU-0 | I120: Progress - 1% (msg.checkpoint.saveStatus)

    2014 01-06 T 19: 38:09.778Z | vCPU-0 | I120: Controlled in VMware Workstation, build-1295980 10.0.0,, Windows host

    2014 01-06 T 19: 38:09.809Z | vCPU-0 | I120: MainMem: Keep paging file ' Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional - 979000f6.vmem' as the memory image.

    2014 01-06 T 19: 38:09.809Z | vCPU-0 | I120: Progress 0% (none)

    2014 01-06 T 19: 38:09.811Z | vCPU-0 | I120: Increase 1% (none)

    2014 01-06 T 19: 38:09.813Z | vCPU-0 | I120: Increased by 2% (none)

    2014 01-06 T 19: 38:09.813Z | vCPU-0 | I120: Progress of 3% (none)

    2014 01-06 T 19: 38:09.813Z | vCPU-0 | I120: Progress of 4% (none)

    2014 01-06 T 19: 38:09.813Z | vCPU-0 | I120: Progress of 5% (none)

    2014 01-06 T 19: 38:09.813Z | vCPU-0 | I120: Increase by 6% (none)

    2014 01-06 T 19: 38:09.814Z | vCPU-0 | I120: Increase of 7% (none)

    2014 01-06 T 19: 38:09.816Z | vCPU-0 | I120: Increase by 8% (none)

    2014 01-06 T 19: 38:09.817Z | vCPU-0 | I120: Increase by 9% (none)

    2014 01-06 T 19: 38:09.818Z | vCPU-0 | I120: Progress of 10% (no)

    2014 01-06 T 19: 38:09.819Z | vCPU-0 | I120: Increase by 11% (none)

    2014 01-06 T 19: 38:09.820Z | vCPU-0 | I120: Growth of 12% (none)

    2014 01-06 T 19: 38:09.821Z | vCPU-0 | I120: Increase by 13% (none)

    2014 01-06 T 19: 38:09.821Z | vCPU-0 | I120: Increase by 14% (none)

    2014 01-06 T 19: 38:09.822Z | vCPU-0 | I120: Progress 15% (none)

    2014 01-06 T 19: 38:09.823Z | vCPU-0 | I120: Increase of 16% (none)

    2014 01-06 T 19: 38:09.823Z | vCPU-0 | I120: Increase by 17% (none)

    2014 01-06 T 19: 38:09.824Z | vCPU-0 | I120: Increase by 18% (none)

    2014 01-06 T 19: 38:09.825Z | vCPU-0 | I120: Progress 19% (none)

    2014 01-06 T 19: 38:09.826Z | vCPU-0 | I120: Advance of 20% (none)

    2014 01-06 T 19: 38:09.827Z | vCPU-0 | I120: Increase by 21% (none)

    2014 01-06 T 19: 38:09.828Z | vCPU-0 | I120: Progress of 22% (none)

    2014 01-06 T 19: 38:09.829Z | vCPU-0 | I120: Increase of 23% (none)

    2014 01-06 T 19: 38:09.830Z | vCPU-0 | I120: Increase of 24% (none)

    2014 01-06 T 19: 38:09.831Z | vCPU-0 | I120: Increase of 25% (none)

    2014 01-06 T 19: 38:09.831Z | vCPU-0 | I120: Rise by 26% (none)

    2014 01-06 T 19: 38:09.832Z | vCPU-0 | I120: Rise by 27% (none)

    2014 01-06 T 19: 38:09.833Z | vCPU-0 | I120: Progress 28% (none)

    2014 01-06 T 19: 38:09.834Z | vCPU-0 | I120: Advance of 29% (none)

    2014 01-06 T 19: 38:09.834Z | vCPU-0 | I120: Increase 30% (none)

    2014 01-06 T 19: 38:09.835Z | vCPU-0 | I120: 31% growth (none)

    2014 01-06 T 19: 38:09.836Z | vCPU-0 | I120: Increase of 32% (none)

    2014 01-06 T 19: 38:09.837Z | vCPU-0 | I120: Progress of 33% (none)

    2014 01-06 T 19: 38:09.838Z | vCPU-0 | I120: Increase by 34% (none)

    2014 01-06 T 19: 38:09.838Z | vCPU-0 | I120: Increase of 35% (none)

    2014 01-06 T 19: 38:09.839Z | vCPU-0 | I120: Progress 36% (none)

    2014 01-06 T 19: 38:09.839Z | vCPU-0 | I120: Progress 37% (none)

    2014 01-06 T 19: 38:09.840Z | vCPU-0 | I120: Increase of 38% (none)

    2014 01-06 T 19: 38:09.841Z | vCPU-0 | I120: Increase by 39% (none)

    2014 01-06 T 19: 38:09.841Z | vCPU-0 | I120: Progress of 40% (none)

    2014 01-06 T 19: 38:09.841Z | vCPU-0 | I120: Increase of 41% (none)

    2014 01-06 T 19: 38:09.842Z | vCPU-0 | I120: Increase of 42% (none)

    2014 01-06 T 19: 38:09.842Z | vCPU-0 | I120: Increase of 43% (none)

    2014 01-06 T 19: 38:09.843Z | vCPU-0 | I120: Increase of 44% (none)

    2014 01-06 T 19: 38:09.844Z | vCPU-0 | I120: Rise by 45% (none)

    2014 01-06 T 19: 38:09.844Z | vCPU-0 | I120: Increase of 46% (none)

    2014 01-06 T 19: 38:09.845Z | vCPU-0 | I120: Increase of 47% (none)

    2014 01-06 T 19: 38:09.845Z | vCPU-0 | I120: Increase of 48% (none)

    2014 01-06 T 19: 38:09.846Z | vCPU-0 | I120: Increase of 49% (none)

    2014 01-06 T 19: 38:09.847Z | vCPU-0 | I120: Advance of 50% (none)

    2014 01-06 T 19: 38:09.847Z | vCPU-0 | I120: Increase of 51% (none)

    2014 01-06 T 19: 38:09.848Z | vCPU-0 | I120: Rise by 52% (none)

    2014 01-06 T 19: 38:09.849Z | vCPU-0 | I120: Progress of 53% (none)

    2014 01-06 T 19: 38:09.851Z | vCPU-0 | I120: Increase of 54% (none)

    2014 01-06 T 19: 38:09.852Z | vCPU-0 | I120: Progress 55% (none)

    2014 01-06 T 19: 38:09.853Z | vCPU-0 | I120: Increase of 56% (none)

    2014 01-06 T 19: 38:09.855Z | vCPU-0 | I120: Rise by 57% (none)

    2014 01-06 T 19: 38:09.856Z | vCPU-0 | I120: Progress of 58% (none)

    2014 01-06 T 19: 38:09.857Z | vCPU-0 | I120: Increase of 59% (none)

    2014 01-06 T 19: 38:09.858Z | vCPU-0 | I120: Advance of 60% (none)

    2014 01-06 T 19: 38:09.859Z | vCPU-0 | I120: Increase of 61% (none)

    2014 01-06 T 19: 38:09.860Z | vCPU-0 | I120: Increase of 62% (none)

    2014 01-06 T 19: 38:09.860Z | vCPU-0 | I120: Growth of 63% (none)

    2014 01-06 T 19: 38:09.861Z | vCPU-0 | I120: Increase of 64% (none)

    2014 01-06 T 19: 38:09.861Z | vCPU-0 | I120: Increase of 65% (no)

    2014 01-06 T 19: 38:09.862Z | vCPU-0 | I120: Progress 66% (none)

    2014 01-06 T 19: 38:09.863Z | vCPU-0 | I120: Increase of 67% (none)

    2014 01-06 T 19: 38:09.864Z | vCPU-0 | I120: Increase of 68% (none)

    2014 01-06 T 19: 38:09.865Z | vCPU-0 | I120: Increase of 69% (none)

    2014 01-06 T 19: 38:09.867Z | vCPU-0 | I120: Advance of 70% (none)

    2014 01-06 T 19: 38:09.868Z | vCPU-0 | I120: Increase of 71% (none)

    2014 01-06 T 19: 38:09.869Z | vCPU-0 | I120: Increase of 72% (none)

    2014 01-06 T 19: 38:09.870Z | vCPU-0 | I120: Increase of 73% (none)

    2014 01-06 T 19: 38:09.870Z | vCPU-0 | I120: Growth of 74% (none)

    2014 01-06 T 19: 38:09.871Z | vCPU-0 | I120: Progress of 75% (none)

    2014 01-06 T 19: 38:09.873Z | vCPU-0 | I120: Increase of 76% (none)

    2014 01-06 T 19: 38:09.874Z | vCPU-0 | I120: Growth of 77% (none)

    2014 01-06 T 19: 38:09.874Z | vCPU-0 | I120: Progression of 78% (none)

    2014 01-06 T 19: 38:09.875Z | vCPU-0 | I120: Increase of 79% (none)

    2014 01-06 T 19: 38:09.876Z | vCPU-0 | I120: Increase of 80% (none)

    2014 01-06 T 19: 38:09.877Z | vCPU-0 | I120: Increase of 81% (none)

    2014 01-06 T 19: 38:09.878Z | vCPU-0 | I120: Increase of 82% (none)

    2014 01-06 T 19: 38:09.879Z | vCPU-0 | I120: Growth of 83% (none)

    2014 01-06 T 19: 38:09.880Z | vCPU-0 | I120: Increase by 84% (none)

    2014 01-06 T 19: 38:09.880Z | vCPU-0 | I120: Increase of 85% (none)

    2014 01-06 T 19: 38:09.881Z | vCPU-0 | I120: Increase of 86% (none)

    2014 01-06 T 19: 38:09.883Z | vCPU-0 | I120: Increase of 87% (none)

    2014 01-06 T 19: 38:09.885Z | vCPU-0 | I120: Increase of 88% (none)

    2014 01-06 T 19: 38:09.887Z | vCPU-0 | I120: Progress 89% (none)

    2014 01-06 T 19: 38:09.888Z | vCPU-0 | I120: Increase of 90% (none)

    2014 01-06 T 19: 38:09.889Z | vCPU-0 | I120: Progress 91% (none)

    2014 01-06 T 19: 38:09.889Z | vCPU-0 | I120: Progress 92% (none)

    2014 01-06 T 19: 38:10.005Z | vCPU-0 | I120: Progress 93% (none)

    2014 01-06 T 19: 38:10.030Z | vCPU-0 | I120: Progression of 94% (none)

    2014 01-06 T 19: 38:10.039Z | vCPU-0 | I120: Progress 95% (none)

    2014 01-06 T 19: 38:10.048Z | vCPU-0 | I120: Progress 96% (none)

    2014 01-06 T 19: 38:10.056Z | vCPU-0 | I120: Progress 97% (none)

    2014 01-06 T 19: 38:10.064Z | vCPU-0 | I120: Progress 98% (none)

    2014 01-06 T 19: 38:10.073Z | vCPU-0 | I120: 99% progress (none)

    2014 01-06 T 19: 38:10.088Z | vCPU-0 | I120: GuestRpc: reset of channel 0 (toolbox-dnd)

    2014 01-06 T 19: 38:10.088Z | vCPU-0 | I120: GuestMsg: Channel 0, can't unpost because the previous post is already completed

    2014 01-06 T 19: 38:10.089Z | vCPU-0 | I120: GuestRpc: channel 0 reset.

    2014 01-06 T 19: 38:10.089Z | vCPU-0 | I120: GuestRpc: reset of channel 3 (toolbox)

    2014 01-06 T 19: 38:10.089Z | vCPU-0 | I120: GuestMsg: channel 3, cannot unpost because the previous post is already completed

    2014 01-06 T 19: 38:10.092Z | vCPU-0 | I120: GuestRpc: channel 3 reset.

    2014 01-06 T 19: 38:10.452Z | vCPU-0 | I120: Increase by 101% (none)

    2014 01-06 T 19: 38:10.455Z | vCPU-0 | I120: FILE: FileDeletionRetry: not reproducible error (Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~): the system cannot find the specified file (2)

    2014 01-06 T 19: 38:10.508Z | vCPU-0 | I120: FILE: File_RenameRetry: expiration of the retry delay (10, Z:\Virtual XP Professional\Windows XP Professional.vmx Machines\VMware\Windows ~, Z:\Virtual Machines\VMware\Windows XP Professional\Windows XP Professional.vmx). last error access denied (5)

    2014 01-06 T 19: 38:10.524Z | vCPU-0 | I120: Vix: [8328 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 1, newAppState = 1875, success = 1 additionalError = 0

    2014 01-06 T 19: 38:10.524Z | vCPU-0 | I120: SUSPEND: finished suspending: "Successful Operation" (0)

    2014 01-06 T 19: 38:10.525Z | VMX | I120: Stopping VCPU son...

    2014 01-06 T 19: 38:11.527Z | SVGA | I120: Fate of thread SVGA

    2014 01-06 T 19: 38:11.875Z | MKS | I120: D3D-Backend: order by renderMux for screen composition.

    2014 01-06 T 19: 38:11.875Z | MKS | I120: GDI-Backend: successfully started by HWinMux make the composition of the window.

    2014 01-06 T 19: 38:11.899Z | MKS | I120: D3D-Backend: HWinMux stopped making the composition of the window.

    2014 01-06 T 19: 38:11.901Z | MKS | I120: GDI-Backend: HWinMux stopped making the composition of the window.

    2014 01-06 T 19: 38:11.901Z | MKS | I120: MKS - SWB: number of MKSWindows changed: 0 record (s) MKSWindow of total 0.

    2014 01-06 T 19: 38:11.902Z | VMX | I120:

    2014 01-06 T 19: 38:11.902Z | VMX | I120 + OvhdMem: Final (power off) overhead

    2014 01-06 T 19: 38:11.902Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 38:11.902Z | VMX | I120: Excluded OvhdMem max news |    max avg cur

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MainMem: 524288 524288 |      -      -      -

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxText: 5376 5376 |      -      -      -

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxTextLibs: 15360 15360 |      -      -      -

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem Total excluded: 545024 545024 |      -      -      -

    2014 01-06 T 19: 38:11.902Z | VMX | I120:

    2014 01-06 T 19: 38:11.902Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem paged max news |    max avg cur

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_KSTATS_vmm: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_STATS_vmm: 4 4 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_KSTATS_device: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_STATS_device: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_KSTATS_migrate: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_DiskLibMemUsed: 3075 3075 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VgaShadowFB: 347 347 |    347 347 347

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SvgaSurfaceTable: 576 576 |    576 576 576

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SvgaShaderTable: 515 515 |    515 515 515

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SvgaShaderText: 2048 2048 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SvgaContextTable: 1564-1564.      0      7      7

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxAllocTrack: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxCallStackProf: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxGlobals: 10240 10240 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxGlobalsLibs: 3584 3584 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxHeap: 8448 8448 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxHeapFreeList: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMainMemCheck: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMks: 33 33 |     17 17 16

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksThumbnail: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMks3d: 262144 262144 |      2027 0 0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksGLRenderer: 131072 131072 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksLLVM: 8192 8192 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksScreenshot: 65537 65537.      0-2280-0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksVnc: 37712 37712 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxMksShadowFB: 32768 32768 |      4 2029 0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxPhysMemRingBuf: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxReplayCheck: 0 4096 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxFTCptOutputBuf: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxSLEntryBuf: 128 128 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxThreadMks: 512 512 |    512 512 512

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxThreadVmx: 512 512 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxThreadsVcpu: 512 512 |      0 512 512

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxThreadsWorker: 16384 16384 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VmxThreadSvga: 512 512 |    512 512 512

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem Total paged: 586421 590517 |   2483 9334 2997

    2014 01-06 T 19: 38:11.902Z | VMX | I120:

    2014 01-06 T 19: 38:11.902Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem nonpaged heart max |    max avg cur

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SharedArea: 240 240 |     65 65 65

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_BusMemTraceBitmap: 20 20 |     20 20 20

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PFrame: 1230-1350 |   1230 1230 1230

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VProbe: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VIDE_KSEG: 16 16 |     16 16 16

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VGA: 64 64 |     64 64 64

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PShareMPN: 6 of 6 |      5      5      5

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_P2MUpdateBuffer: 3 of 3 |      3      3      3

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SharedMPNsPool: 20 20 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_ServicesMPN: 2 2 |      2      2      2

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_LocalApic: 2 2 |      2      2      2

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_BusError: 1 of 1 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VBIOS: 8 of 8 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VnicGuest: 16 16 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VnicMmap: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_TestDev: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_LSIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_LSIRings: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PCIPBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PVSCSIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PVSCSIKickReg: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SAS1068BIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SBIOS: 16 16 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_AHCIBIOS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_FlashRam: 128 128 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SVGAFB: 32768 32768 |   2948 2948 2802

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SVGAMEM: 512 512 |    512 512 442

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_HDAudioReg: 3 of 3 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_EHCIRegister: 1 of 1 |      1      1      1

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_XhciRegister: 1 of 1 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PhysMemDebug: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_HyperV: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_HVIOBitmap: 3 of 3 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_HVMSRBitmap: 2 2 |      1      1      1

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VHVGuestMSRBitmap: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_vhvCachedVMCS: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_StateLoggerLogBuf: 0 512 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PCIP: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_VMsafe: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MonWired: 108 108 |    108 108 108

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MonLow: 4 4 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MonWiredNuma: 0 52 |     26 52 26

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MonNuma: 0 801 |      0 276 0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_MonOther: 36 36 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_SVMLowMem: 3 of 3 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_PAEShadow: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdUser_FTCpt: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem Total non paged: 35221 36706 |   5003 5305 4787

    2014 01-06 T 19: 38:11.902Z | VMX | I120:

    2014 01-06 T 19: 38:11.902Z | VMX | I120:                                                   reserved     |          used

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem heart anonymous max |    max avg cur

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_Alloc: 142 142 |     29 114 32

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemFrame: 1345-1352.   1230 1230 1230

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemFramePGAR: 3 of 3 |      3      3      3

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemTracePGAR: 2 2 |      2      2      2

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMem2MRegionPGAR: 8 of 8 |      8      8      8

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemZapListMPN: 1 of 1 |      1      1      1

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemRemap: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_MMU: 102 1402 |     24 24 24

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_ScratchAS: 24 324 |      6      6      6

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_MonTLB: 12 12 |     12 12 12

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_DT: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_TCCoherency: 12 12 |      2      2      2

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_TC: 1024 1536 |   1024, 1024, 1536

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_ChainInfo: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_Island: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BusMemScratchAS: 6 of 6 |      6      6      6

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_PlatformScratchAS: 5 of 5 |      2      2      2

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_BackdoorHintsMPN: 3 of 3 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_HV: 6 of 6 |      4      4      4

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_VHV: 8 of 8 |      0      0      0

    2014 01-06 T 19: 38:11.902Z | VMX | I120: OvhdMem OvhdMon_VNPTShadow: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_VNPTShadowCache: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_VNPTBackmap: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_SVMIDT: 2 2 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_CallStackProfAnon: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_Numa: 755 755 |    328 332 328

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_WiredNuma: 52 52 |      8      8      8

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_GPhysTraced: 247 247 |    245 246 241

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_GPhysHWMMU: 1243-1243.   1001 1002 1002

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_GPhysNoTrace: 61 61 |     14 18 14

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_BTScratchPage: 1 of 1 |      1      1      1

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_StateLoggerBufferPA: 1 of 1 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_TraceALot: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_VIDE: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_VMXNETWake: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_BusLogic: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_Ahci: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_PVSCSIShadowRing: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_LSIRings: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_FTCptScratchAS: 0 0 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem OvhdMon_VProbe: 1 of 1 |      0      0      0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: OvhdMem Total Anonymous: 5070 7189 |   3951 4557 3949

    2014 01-06 T 19: 38:11.903Z | VMX | I120:

    2014 01-06 T 19: 38:11.903Z | VMX | I120: VMMEM: maximum booking: 430 MB (MainMem = 2048MB)

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: PSHARE HIST [0, 524288]: 1081 0 0 0 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: PSHARE P50 1 P70 P90 1 MIN 1 MAX 13810 13544

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: BALL HIST [0, 524288]: 1081-1081 0 0 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: BALL P50 1 P70 1 P90 1 MIN 0 MAX 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: EXCHANGE HIST [0, 524288]: 1081-1081 0 0 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: SWAP P50 1 P70 1 P90 1 MIN 0 MAX 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: LOCK HIST [0, 524288]: 0 1 0 826 254 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: LOCK P50 30 30 40 MIN MAX 1756 164062 P90 P70

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: LOCK_TARGET HIST [0, 524288]: 0 0 0 0 0 0 0 0 0 0 1081 1081

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: LOCK_TARGET P50 P70 100 P90 100 100 MIN MAX 567159 524288

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: ACTIVE_PCT HIST [0, 100]: 1 1 950 130 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: ACTIVE_PCT P50 P70 20 20 30 MIN 0 MAX 21 P90

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: NUM_VMS HIST [0, 10]: 1081 0 0 0 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: NUM_VMS P50 P70 20 20 20 MIN 1 MAX 1 P90

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: HOSTLOCK HIST [0, 1950208]: 0 1081 0 0 0 0 0 0 0 0 0 0

    2014 01-06 T 19: 38:11.903Z | VMX | I120: MemSched: HOSTLOCK P50 P70 10 10 10 MIN MAX 1756 164062 P90

    2014 01-06 T 19: 38:11.903Z | VMX | I120: Request received in VMX tools to set the option 'enableDnD'--> '0'

    2014 01-06 T 19: 38:11.903Z | VMX | I120: GuestRpc: attempt to send TECO msg for 'tools DND box' while GuestRpc is turned off the power.

    2014 01-06 T 19: 38:11.903Z | VMX | I120: GuestRpc: attempt to send TECO msg for "toolbox" while GuestRpc is turned off the power.

    2014 01-06 T 19: 38:11.903Z | VMX | I120: Request received in VMX tools to set the option "copypaste"-> '0'

    2014 01-06 T 19: 38:11.903Z | VMX | I120: GuestRpc: attempt to send TECO msg for 'tools DND box' while GuestRpc is turned off the power.

    2014 01-06 T 19: 38:11.903Z | VMX | I120: GuestRpc: attempt to send TECO msg for "toolbox" while GuestRpc is turned off the power.

    2014 01-06 T 19: 38:11.905Z | VMX | I120: USB: disconnect 0x10e0f0002 system

    2014 01-06 T 19: 38:11.905Z | VMX | I120: USB: disconnect 0x400000040e0f0003 system

    2014 01-06 T 19: 38:11.921Z | MKS | I120: MKS PowerOff

    2014 01-06 T 19: 38:11.921Z | MKS | I120: Fate of thread MKS

    2014 01-06 T 19: 38:11.922Z | usbCCIDEnumCards | I120: USB CCID: enum output card wire.

    2014 01-06 T 19: 38:12.149Z | VMX | I120: AIOWIN32C: asyncOps = 1537 listening = 0 bufSize = 204 Ko fixedOps = 17 sgOps = 1442 sgOn = 1

    2014 01-06 T 19: 38:12.149Z | aioCompletion | I120: Thread AIO treated 1537 completions

    2014 01-06 T 19: 38:12.258Z | VMX | I120: Vix: [9140 mainDispatch.c:1222]: VMAutomationPowerOff: power off the power.

    2014 01-06 T 19: 38:12.258Z | VMX | I120: Policy_SavePolicyFile: not valid for function arguments.

    2014 01-06 T 19: 38:12.258Z | VMX | I120: PolicyVMX_Exit: could not write policies: 15.

    2014 01-06 T 19: 38:12.258Z | VMX | I120: WORKER: asyncOps = 6 maxActiveOps = 2 maxPending = 0 maxCompleted = 2

    2014 01-06 T 19: 38:12.259Z | WinNotifyThread | I120: WinNotify outgoing wire

    2014 01-06 T 19: 38:12.341Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 1, newAppState = 1875, success = 1 additionalError = 0

    2014 01-06 T 19: 38:12.341Z | VMX | I120: Vix: [9140 mainDispatch.c:4004]: VMAutomation: ignoring ReportPowerOpFinished because the VMX stops.

    2014 01-06 T 19: 38:12.378Z | VMX | I120: Vix: [9140 mainDispatch.c:3985]: VMAutomation_ReportPowerOpFinished: VarEtat = 0, newAppState = 1870, success = 1 additionalError = 0

    2014 01-06 T 19: 38:12.378Z | VMX | I120: Vix: [9140 mainDispatch.c:4004]: VMAutomation: ignoring ReportPowerOpFinished because the VMX stops.

    2014 01-06 T 19: 38:12.378Z | VMX | I120: Past vmx/execState/val suspended

    2014 01-06 T 19: 38:12.379Z | VMX | I120: Output inactive of VMX

    2014 01-06 T 19: 38:12.379Z | VMX | I120: VMIOP: output

    2014 01-06 T 19: 38:12.379Z | VMX | I120: Vix: [9140 mainDispatch.c:861]: VMAutomation_LateShutdown()

    2014 01-06 T 19: 38:12.379Z | VMX | I120: Vix: [9140 mainDispatch.c:811]: VMAutomationCloseListenerSocket. Close the socket of the receiver.

    2014 01-06 T 19: 38:12.379Z | VMX | I120: VMX VMDB Flushing connections

    2014 01-06 T 19: 38:12.380Z | VMX | "I120: VmdbDbRemoveCnx: remove Cnx Db for ' / db/connection / #1 /"

    2014 01-06 T 19: 38:12.380Z | VMX | I120: VmdbCnxDisconnect: Disconnect: pipe closed for pub cnx ' / db/connection / #1 /' (0)

    2014 01-06 T 19: 38:12.383Z | VMX | I120: Exit VMX (0).

    2014 01-06 T 19: 38:12.383Z | VMX | I120: AIOMGR-S: o stat = 7 r = 42179 w 42191 = I = 0 br = 144042877 bw = 144640619

    2014 01-06 T 19: 38:12.383Z | VMX | I120: OBJLIB-LIB: ObjLib cleaning done.

    2014 01-06 T 19: 38:12.383Z | VMX | I120: FileTrack_Exit: fact

    Hi all


    I have a bunch of VMs now with an error that is similar as above, and I would like to know why all these virtual machines have done this all of a sudden.

    I appreciate your support, I have some important configurations on these machines.

    Thank you

    Please extract the .zip file attached to an empty folder, and then drag either & drop the latest vmware.log on this .cmd file or call the line command with the file vmware.log as the first command line option. This will recreate the vmware.log .vmx file. It may be possible that the virtual computer does not start from the mode of suspension well. If this is the case, remove the file .vmss from the folder of the virtual machine.

    In all cases, make sure that you back up the files of the virtual machine before turning it back on to return to the State where it is necessary.

    André

  • Validation error message does not disappear

    I have a search panel which will be fires validation errors while doing a search if the validation fails. When I try to click on the navigation links its not sailing only steps away to other pages because of this error. Anyway to avoid this validation errors?

    Thank you
    Bastien

    Try please keep immediate = true for the interface controls user who needs to skip the validation phase

  • With ApplyMRU and ApplyMRD, performs a validation before the other tracks?

    This is related to another thread How to stop insert new row in a table so it is also being removed , I wanted to ask this question separately, however, for a better understanding.

    I have a tabular presentation configured so that if a user clicks "Delete checked lines", it triggers the process of ApplyMRU and then ApplyMRD. (This is mainly to ensure that changes are not lost when deleting some lines - see the other thread for more information on this use case).

    The two processes running, I can see the changes and deletions happening when the page is returned. But it seems that the ApplyMRU process valid in fact it was modified for the session ahead of ApplyMRD, because it does not start on the same record. Is this true?

    Here's why I think that:

    (1) click on "Add another line" to insert a new line.
    (2) user enters information in the same row.
    (3) user then checks that the rank (for example they changed their mind and do not want to enter after all) and click on 'delete checked names '.

    The new row gets inserted (when ApplyMRU is triggered), but not deleted (when ApplyMRD is triggered). The other rows checked, however, delete. It breeds in the two ApEx 3.2 and 4.0 of the ApEx, with the new::AddRow() on the client side, replacing the old implementation.

    This is expected behavior?

    Is the primary key of the table that is defined by an existing trigger? For example, in the database.

    It could be that the erase process knows not only the id of the new inserted rows and therefore cannot remove them.

    What is the result when you first the erase process, then insert/update process.

    Nicolette

  • Validation on an element

    Is it possible to build a package/procedure of validation or functions and call them from the "page processing / Validation" section.

    I created a test function to see this will work but I get various errors with everything I tried.
    I have a function that passes in a string variable and returns a variable of string with an error message if there is.

    in the Validation Expression 1 section, I entered:
    cust_check(:p2_customer_name);
    and set the type to 'function return error text.

    I also create a process? I thought I read somewhere something but can't find it again.
    Thank you.

    Hello

    Try this

    RETURN cust_check(:p2_customer_name);
    

    another Vice keep even you try already

    BR, JAri

  • SaveAs method of class workbook failed to fIntersectionCheckEx

    We are migrating to FDM and HFM 9.3.1 to 11.1.2.1. Due to performance issues that we had previously lived with the FDM multiload feature, we used UD5 and UD6 and customization of the adapter to load the year and period. To take into account the 'extra' dimensions, we also use custom event scripts, view reports, etc... The intersection integrated verification is disabled. The AftValidate script contains our intersection check custom and follows below. During the validation phase is executed on the web client, the following error message appears in the log:

    * FdmFM11XG5E Runtime Error Log entry begin [2011-10-13-12: 03:15] *.
    -------------------------------------------------------------
    Error:
    Code of... 1004
    Description... The Workbook class SaveAs method failure
    Process... clsHPDataAccess.fIntersectionCheckEx
    Component... C:\FDMData\fdm-HFM-adapter-V25481-01\FinancialDataManagement\FM11X-G5-E_1005\AdapterComponents\fdmFM11xG5E\fdmFM11XG5E.dll
    Version... 145

    Identification:
    User... larryr
    Name of the computer... SVRHYPFDMV103

    Connection of FINANCIAL MANAGEMENT:
    Name of the application...
    Name of the cluster...
    Field...
    Connect status... Open connection


    * Start the journal entry for the Runtime Error FDM [2011-10-13 12:03:15] *.
    -------------------------------------------------------------
    ERROR:
    Code...-2146233088
    Description... The Workbook class SaveAs method failure
    Online: 59
    Process... clsEventHandler.PobjAPI_AftValidate
    The component... upsWObjEventHandlerDM
    Version.......................................... 1112
    Thread........................................... 4828

    IDENTIFICATION:
    User............................................. larryr
    Name of the computer... SVRHYPFDMV103
    App Name......................................... SAPHFM
    Client App....................................... WebClient

    CONNECTION:
    Provider......................................... SQLOLEDB
    Server data... svrsql105
    Name of the database... SAPHFM
    Trust connect... Fake
    Connect status... Open connection

    GLOBALS:
    Location......................................... AHEL_F1
    Location ID... 752
    Location Seg... 6
    Category......................................... FctAug
    ID of the category... 16
    Period........................................... M12 - FY12
    Period ID........................................ 30/04/2012
    POV Local........................................ Fake
    Language......................................... 1033
    User Level....................................... 1
    All Partitions... True
    Is Auditor....................................... Fake


    * Start the journal entry for the Runtime Error FDM [2011-10-13 12:03:15] *.
    -------------------------------------------------------------
    ERROR:
    Code............................................. 440
    Description... Automation error
    Process... clsValidationMgr.fValidate
    The component... upsWObjectsDM
    Version.......................................... 1112
    Thread........................................... 4828

    IDENTIFICATION:
    User............................................. larryr
    Name of the computer... SVRHYPFDMV103
    App Name......................................... SAPHFM
    Client App....................................... WebClient

    CONNECTION:
    Provider......................................... SQLOLEDB
    Server data... svrsql105
    Name of the database... SAPHFM
    Trust connect... Fake
    Connect status... Open connection

    GLOBALS:
    Location......................................... AHEL_F1
    Location ID... 752
    Location Seg... 6
    Category......................................... FctAug
    ID of the category... 16
    Period........................................... M12 - FY12
    Period ID........................................ 30/04/2012
    POV Local........................................ Fake
    Language......................................... 1033
    User Level....................................... 1
    All Partitions... True
    Is Auditor....................................... Fake

    Custom control intersection via AftValidate. Line 59 is fIntersectionCheckEx:
    Sub AftValidate(strLoc, strCat, strPer, lngProcState)
    '------------------------------------------------------------------
    'UpStream TB EVENT Script
    'Purpose:   Perform custom intersection check - customized for multiple periods
    '------------------------------------------------------------------
    Dim strTableName, strSQL'               Query variables
    Dim strPerYear, strPerMonth'          Target HFM Year & Month
    Dim strCatKey, strLocKey'               ID of POV Category & Location
    Dim strErr, strHTMFile'                    Error information
    Dim objHWReturn'                         Return object for intersection validation
    Dim objPeriod'                              Period object
    Dim fso'                                   File system object
    Dim rs'                                        Recordset containing unique HFM Target intersections
    Dim vaData'                                   Array containing unique HFM Target intersections
    
    ' Initialize Block Processor For HFM connection
    Dim BlOCKPROC
    Set BlOCKPROC = CreateObject("upsWBlockProcessorDM.clsBlockProcessor")
    BlOCKPROC.Initialize API, SCRIPTENG
    
    ' Call the Connect Action for the active integration block
    Set API.IntBlockMgr.IntegrationMgr.PobjIntegrate = BlOCKPROC.ActConnect("CheckDims")
    If API.IntBlockMgr.IntegrationMgr.PobjIntegrate.intResult Then' Connection is open 
         'Get Target information
         strLocKey = CStr(RES.PlngLocKey)
         strPerKey = CStr(RES.PdtePerKey)
         strCatKey = CStr(RES.PlngCatKey)
         Set objPeriod = API.POVMgr.fPeriodKey(strPer)
         strPerYear = objPeriod.strTargetYear
         strPerMonth = objPeriod.strTarget
         Set objPeriod = Nothing
         strTableName = "tDataSeg" & API.POVMgr.fGetLocationSegment(strLocKey)' Get tDataSeg number for location
         strBaseName = strLoc & "_" & strCat & "_" & strPerMonth & "_" & strPerYear
         strLogsDir = DW.Connection.PstrDirOutbox & "\Logs\"
         strFile = strLogsDir & strBaseName & ".fmv"
    
         ' Create the SQL to pull the validation records
         ' Do not Validate the Keystone Custom2 records since their "parent" Classic Custom2 records are validated
         strSQL = "SELECT DISTINCT EntityX, PartitionKey, CatKey, PeriodKey, DataView, AccountX, ICPX, UD1X, UD2X, UD3X, UD4X," & _
                                         " '' AS UD5X, '' AS UD6X, '' AS UD7X, '' AS UD8X, '' AS UD9X, '' AS UD10X, '' AS UD11X," & _
                                       " '' AS UD12X, '' AS UD13X, '' AS UD14X, '' AS UD15X, '' AS UD16X, '' AS UD17X, '' AS UD18X," & _
                                       " '' AS UD19X, '' AS UD20X, '' AS Amt " & _
                    "FROM " &strTableName& " WITH (NOLOCK) " & _
                    "WHERE CatKey=" &strCatKey& " AND PeriodKey='" &strPerKey& "' AND PartitionKey=" &strLocKey
         'Validate all records in the result set
         Set rs = DW.DataAccess.farsFireHose(strSQL, False)
         With rs
              If Not .EOF Then' Create the array to pass to intersection checking
                   vaData = .GetRows(.RecordCount)
                   Set objHWReturn = API.IntBlockMgr.IntegrationMgr.PobjIntegrate.varCon.fIntersectionCheckEx(vaData, CStr(strCat), CStr(strPerMonth), CStr(strPerYear), "YTD", "<Entity Currency>", CStr(strFile), "FM Account", "FM Entity", "ICP", "Custom1", "Custom2", "Custom3", "Custom4", 15, 9, 2)
                   If objHWReturn.PblnIsErr Then
                        RES.PstrActionValue = objHWReturn.PstrErrFile
                        RES.PlngActionType = 4' Display HTML file on web client
                        API.MaintenanceMgr.mProcessLog strLoc, strCat, strPer, 2, False, "Custom Intersection Validation Error:  Error creating validation array", Now()
                   Else' Delete the html header file for the error free validation
                        strHTMFile = strLogsDir & strBaseName & ".htm"
                        Set fso = CreateObject("Scripting.FileSystemObject")
                        If fso.FileExists(strHTMFile) Then fso.DeleteFile strHTMFile, True
                        Set fso = Nothing
                   End If
                   Set objHWReturn = Nothing
              Else
                   strErr = "AftValidate Event Script error:  No data for intersection check" & vbCrLf
                   RES.PstrActionValue = strErr & "You must re-run the Import before running the Validate again"
                   RES.PlngActionType = 2' Display the error string
              End If
              .Close
         End With
         Set rs = Nothing
    End If
    
    'Destroy the remaining objects
    Set API.IntBlockMgr.IntegrationMgr.PobjIntegrate = Nothing
    Set BlOCKPROC = Nothing
    
    End Sub

    Search for the app to "Excel" readme that may address your question.

  • I would like to install BBC iPlayer but AIR can pass of 2.5.1.17330

    I'm unable to install I player because the AIR cannot be upgraded to the latest version

    I tried upgrading AIR without iPlayer, and which runs into the same problems with the Adobe AIR installer

    I tried to uninstall Air completely, to start from scratch, but who is refused saying that I need to contact my administrator.

    I am the admministrator.

    Therefore, I seem to be stuck with AIR version 2.5.1.17730 and cannot load the BBC iPlayer desktop.

    Setup log text is below.

    [2010-08 - 16:21:39:15] UI SWF load is complete

    [2010-08 - 16:21:39:15] stateRunningAppInstaller: appinstaller DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR20.tmp - playerVersion = 1, 10, 76, 82 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.ericdaugherty.com/dev/itunesexport/iTunesExport-2.2.2.air

    [2010-08 - 16:21:39:16] install app starting from http://www.ericdaugherty.com/dev/itunesexport/iTunesExport-2.2.2.air

    [2010-08 - 16:21:39:16] UI SWF load is complete

    [2010-08 - 16:21:39:17] UI initialized

    [2010-08 - 16:21:39:17] starting the style of the user interface

    [2010-08 - 16:21:39:17] comprehensive user interface style

    [2010-08 - 16:21:39:17] unpacking in C:\Documents and Settings\Temp\fla21.tmp Stratford\Local Paul

    [2010-08 - 16:21:39:24] unpacking/validation is completed

    [2010-08 - 16:21:39:24] application is bound to this version of the runtime

    [2010-08 - 16:21:39:24] app id iTunesExport

    [2010-08 - 16:21:39:24] id pub 9816BF1711E8C5ABC4CED8E503841951211D8E5D.1

    [2010-08 - 16:21:39:24] Application not found

    [2010-08 - 16:21:39:25] waiting for confirmation to the user

    [2010-08 - 16:21:44:13] user confirmed action: install

    [2010-08 - 16:21:44:13] creating native installer in: C:\Documents and Settings\Temp\fla23.tmp Stratford\Local Paul

    [2010-08 - 16:21:44:14] Installer creation complete native

    [2010-08 - 16:21:44:14] starting installation

    [2010-08 - 16:21:44:14] using the output of the conversion in C:\Documents and Settings\Temp\fla23.tmp Stratford\Local Paul

    [2010-08 - 16:21:44:14] Destination application is installed is C:\Program Files

    [2010-08 - 16:21:44:14] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}

    [2010-08 - 16:21:44:14] plan an MSI install operation

    [2010-08 - 16:21:44:14] start installation

    [2010-08 - 16:21:44:14] installation C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR20.tmp\setup.msi

    [2010-08 - 16:21:44:23] copy C:\Documents and Settings\Default User application Flash www.macromedia.com \bin\airappinstaller\airappinstaller.exe in C:\Documents and Settings\Temp\fla2A.tmp\temp Stratford\Local Paul

    [2010-08 - 16:21:44:23] remove C:\Documents and Settings\Default User application Flash \bin\airappinstaller\airappinstaller.exe www.macromedia.com

    [2010-08 - 16:21:44:23] copy C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR20.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to \bin\airappinstaller\airappinstaller.exe www.macromedia.com C:\Documents and Settings\Default User Flash application

    [2010-08 - 16:21:44:23] copy C:\Documents and Settings\Default User application Flash www.macromedia.com \bin\airappinstaller\digest.s in C:\Documents and Settings\Temp\fla2B.tmp\temp Stratford\Local Paul

    [2010-08 - 16:21:44:23] remove C:\Documents and Settings\Default User application Flash \bin\airappinstaller\digest.s www.macromedia.com

    [2010-08 - 16:21:44:23] copy C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR20.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to \bin\airappinstaller\digest.s www.macromedia.com C:\Documents and Settings\Default User Flash application

    [2010-08 - 16:21:44:23] C:\Documents and Paul Stratford\Local Settings\Temp\fla23.tmp\setup.msi installation

    [2010-08 - 16:21:44:25] full run; beginning validation phase

    [2010-08 - 16:21:44:25] remove C:\Documents and Paul Stratford\Local Settings\Temp\fla2A.tmp\temp

    [2010-08 - 16:21:44:25] remove C:\Documents and Paul Stratford\Local Settings\Temp\fla2B.tmp\temp

    [2010-08 - 16:21:44:25] full validation

    [2010-08 - 16:21:44:26] re-launch of the application of C:\Program Files\iTunesExport\iTunesExport.exe

    [2010-08 - 16:21:44:26] from cleaning of temporary files

    [2010-08 - 16:21:44:26] installer asks outgoing

    [2010-08 - 16:21:44:26] install App successfully

    [2010-08 - 16:21:44:26] start to stop smoking

    [2010-08 - 16:21:44:58] UI SWF load is complete

    [2010-08 - 16:21:44:59] UI initialized

    [2010-08 - 16:21:45:03] Pingback request ended with the HTTP 200 status

    [2010-08 - 16:21:45:03] start Update background check

    [2010-08 - 16:21:45:04] download of departure of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update

    [2010-08 - 16:21:45:04] background update is not available

    [2010-08 - 16:21:45:04] start to stop smoking

    [2010-09 - 11:18:40:45] from the c:\program update c iplayer desktop\bbc iplayer desktop.exe

    [2010-09 - 11:18:40:45] file:///C:/Documents%20and%20Settings/Paul%20Stratford/Local%20Settings/Temp/fla1B.tmp update

    [2010-09 - 11:18:40:45] update to version 1.5.15695.18135

    [2010-09 - 11:18:40:45] UI SWF load is complete

    [2010-09 - 11:18:40:47] UI initialized

    [2010-09 - 11:18:40:47] starting the style of the user interface

    [2010-09 - 11:18:40:47] comprehensive user interface style

    [2010-09 - 11:18:40:47] unpacking in C:\Documents and Settings\Temp\fla1C.tmp Stratford\Local Paul

    [2010-09 - 11:18:40:59] unpacking/validation is completed

    [2010-09 - 11:18:40:59] application is bound to this version of the runtime

    [2010-09 - 11:18:40:59] id app BBCiPlayerDesktop

    [2010-09 - 11:18:40:59] id pub 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1

    [2010-09 - 11:18:40:59] Application located in c:\program files

    [2010-09 - 11:18:40:59] waiting for confirmation to the user

    [2010-09 - 11:18:40:59] user confirmed action: install

    [2010-09 - 11:18:40:59] creating native installer in: C:\Documents and Settings\Temp\fla1D.tmp Stratford\Local Paul

    [2010-09 - 11:18:41:00] Installer creation complete native

    [2010-09 - 11:18:41:00] starting installation

    [2010-09 - 11:18:41:00] using the output of the conversion in C:\Documents and Settings\Temp\fla1D.tmp Stratford\Local Paul

    [2010-09 - 11:18:41:00] start installation

    [2010-09 - 11:18:41:00] C:\Documents and Paul Stratford\Local Settings\Temp\fla1D.tmp\setup.msi installation

    [2010-09 - 11:18:41:08] full run; beginning validation phase

    [2010-09 - 11:18:41:08] full validation

    [2010-09 - 11:18:41:08] re-launch c:\program application c iPlayer Desktop\BBC iPlayer Desktop.exe

    [2010-09 - 11:18:41:08] from cleaning of temporary files

    [2010-09 - 11:18:41:08] installer asks outgoing

    [2010-09 - 11:18:41:39] UI SWF load is complete

    [2010-09 - 11:18:41:40] UI initialized

    [2010-09 - 11:18:41:40] start Update background check

    [2010-09 - 11:18:41:40] download of departure of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update

    [2010-09 - 11:18:41:41] background update is not available

    [2010-09 - 11:18:41:41] start to stop smoking

    [2010-10 - 31:14:39:02] install app starting from http://www.ericdaugherty.com/dev/itunesexport/iTunesExport-2.2.2.air

    [2010-10 - 31:14:39:02] UI SWF load is complete

    [2010-10 - 31:14:39:03] UI initialized

    [2010-10 - 31:14:39:03] starting the style of the user interface

    [2010-10 - 31:14:39:03] comprehensive user interface style

    [2010-10 - 31:14:39:03] download file in C:\Documents and Settings\Temp\fla14.tmp Stratford\Local Paul

    [2010-10 - 31:14:39:05] event has received the response from HTTP Status

    [2010-10 - 31:14:39:05] response URL is http://www.ericdaugherty.com/dev/itunesexport/iTunesExport-2.2.2.air

    [2010-10 - 31:14:39:12] waiting for confirmation to the user

    [2010-10 - 31:14:39:26] user confirmed action: save

    [2010-10 - 31:14:39:26] save file in C:\Documents and Documents\Downloads\iTunesExport-2.2.2.air Stratford\My Paul

    [2010-10 - 31:14:39:26] from cleaning of temporary files

    [2010-10 - 31:14:39:26] installer asks outgoing

    [2010-10 - 31:14:40:40] install app departure file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/Downloads/iTunesExp tro - 2.2.2.air

    [2010-10 - 31:14:40:40] UI SWF load is complete

    [2010-10 - 31:14:40:41] UI initialized

    [2010-10 - 31:14:40:41] starting the style of the user interface

    [2010-10 - 31:14:40:41] comprehensive user interface style

    [2010-10 - 31:14:40:41] unpacking in C:\Documents and Settings\Temp\fla15.tmp Stratford\Local Paul

    [2010-10 - 31:14:40:43] unpacking/validation is completed

    [2010-10 - 31:14:40:43] application is bound to this version of the runtime

    [2010-10 - 31:14:40:43] app id iTunesExport

    [2010-10 - 31:14:40:43] id pub 9816BF1711E8C5ABC4CED8E503841951211D8E5D.1

    [2010-10 - 31:14:40:43] Application located in C:\Program Files

    [2010-10 - 31:14:40:43] waiting for confirmation to the user

    [2010-10 - 31:14:40:50] user confirmed action: launch

    [2010-10 - 31:14:40:50] re-launch of the application of C:\Program Files\iTunesExport\iTunesExport.exe

    [2010-10 - 31:14:40:50] from cleaning of temporary files

    [2010-10 - 31:14:40:50] installer asks outgoing

    [2010-10 - 31:14:41:22] UI SWF load is complete

    [2010-10 - 31:14:41:23] UI initialized

    [2010-10 - 31:14:41:23] start Update background check

    [2010-10 - 31:14:41:23] download of departure of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update

    [2010-10 - 31:14:41:34] update background successfully downloaded

    [2010-10 - 31:14:41:34] user notified of update available

    [2010-10 - 31:14:41:39] user delayed installation of background update

    [2010-10 - 31:14:41:39] start to stop smoking

    [2010-12 - 04:19:14:09] install app starting from http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3010.air

    [2010-12 - 04:19:14:09] UI SWF load is complete

    [2010-12 - 04:19:14:10] UI initialized

    [2010-12 - 04:19:14:10] starting the style of the user interface

    [2010-12 - 04:19:14:10] comprehensive user interface style

    [2010-12 - 04:19:14:10] download file in C:\Documents and Settings\Temp\fla11.tmp Stratford\Local Paul

    [2010-12 - 04:19:14:11] event has received the response from HTTP Status

    [2010-12 - 04:19:14:11] response URL is http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3010.air

    [2010-12 - 04:19:14:12] waiting for confirmation to the user

    [2010-12 - 04:19:14:19] user confirmed action: install

    [2010-12 - 04:19:14:19] starting the style of the user interface

    [2010-12 - 04:19:14:19] comprehensive user interface style

    [2010-12 - 04:19:14:19] unpacking in C:\Documents and Settings\Temp\fla12.tmp Stratford\Local Paul

    [2010-12 - 04:19:14:23] unpacking/validation is completed

    [2010-12 - 04:19:14:23] application is bound to this version of the runtime

    [2010-12 - 04:19:14:23] id app BBCiPlayerDesktop

    [2010-12 - 04:19:14:23] id pub 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1

    [2010-12 - 04:19:14:23] Application located in C:\program files

    [2010-12 - 04:19:14:23] waiting for confirmation to the user

    [2010-12 - 04:19:14:37] user confirmed action: install

    [2010-12 - 04:19:14:37] creating native installer in: C:\Documents and Settings\Temp\fla13.tmp Stratford\Local Paul

    [2010-12 - 04:19:14:38] Installer creation complete native

    [2010-12 - 04:19:14:38] starting installation

    [2010-12 - 04:19:14:38] using the output of the conversion in C:\Documents and Settings\Temp\fla13.tmp Stratford\Local Paul

    [2010-12 - 04:19:14:38] start installation

    [2010-12 - 04:19:14:38] C:\Documents and Paul Stratford\Local Settings\Temp\fla13.tmp\setup.msi installation

    [2010-12 - 04:19:14:50] full run; beginning validation phase

    [2010-12 - 04:19:14:50] full validation

    [2010-12 - 04:19:14:50] re-launch C:\program application c iPlayer Desktop\BBC iPlayer Desktop.exe

    [2010-12 - 04:19:14:50] sending browser invocation

    [2010-12 - 04:19:14:51] from cleaning of temporary files

    [2010-12 - 04:19:14:51] installer asks outgoing

    [2010-12 - 04:19:15:21] UI SWF load is complete

    [2010-12 - 04:19:15:22] UI initialized

    [2010-12 - 04:19:15:22] start Update background check

    [2010-12 - 04:19:15:22] download of departure of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update

    [2010-12 - 04:19:15:32] update background successfully downloaded

    [2010-12 - 04:19:15:32] user notified of update available

    [2010-12 - 04:19:16:18] user delayed installation of background update

    [2010-12 - 04:19:16:18] start to stop smoking

    [2010-12 - 18:12:38:33] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2010-12 - 18:12:38:33] command line is:

    [2010-12 - 18:12:38:33] runtime installed (2.0.3.13070) located in C:\Program Files\Common Files\Adobe AIR

    [2010-12 - 18:12:38:44] from the runtime update. Update of the runtime of the 2.0.3.13070 to version 2.5.1.17730 version

    [2010-12 - 18:12:38:44] installation msi at c:\docume~1\paulst~1\locals~1\temp\air2f.tmp\setup.msi with a guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}

    [2010-12 - 18:12:38:55] launching subprocesses with command-line c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - installupdatecheck

    [2010-12 - 18:12:38:55] end of Setup with exit code 0

    [2010-12 - 18:12:38:56] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2010-12 - 18:12:38:56] Commandline is:-installupdatecheck

    [2010-12 - 18:12:38:56] runtime installed (2.5.1.17730) located in c:\Program Files\Common Files\Adobe AIR

    [2010-12 - 18:12:38:57] Performing pingback request

    [2010-12 - 18:12:38:59] Pingback request ended with the HTTP 200 status

    [2010-12 - 18:12:38:59] from DURATION background update checking

    [2010-12 - 18:12:38:59] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2010-12 - 18:12:38:59] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2010-12 - 18:12:38:59] update of the Runtime is not available

    [2010-12 - 18:12:38:59] cancelled Unpackaging

    [2010-12 - 18:12:38:59] end of Setup with exit code 0

    [2011-01 - 22:19:47:36] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 22:19:47:36] command line is:

    [2011-01 - 22:19:47:36] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 22:19:47:39] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2011-01 - 22:19:47:40] end of Setup with exit code 0

    [2011-01 - 22:19:47:43] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 22:19:47:43] Commandline is:-installupdatecheck

    [2011-01 - 22:19:47:43] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 22:19:47:46] Performing pingback request

    [2011-01 - 22:19:47:47] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 22:19:47:47] command line is:

    [2011-01 - 22:19:47:47] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 22:19:47:47] Pingback request ended with the HTTP 200 status

    [2011-01 - 22:19:47:47] from DURATION background update checking

    [2011-01 - 22:19:47:47] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-01 - 22:19:47:47] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-01 - 22:19:47:48] update of the Runtime is not available

    [2011-01 - 22:19:47:48] cancelled Unpackaging

    [2011-01 - 22:19:47:48] end of Setup with exit code 0

    [2011-01 - 22:19:47:52] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2011-01 - 22:19:47:52] end of Setup with exit code 0

    [2011-01 - 22:19:47:53] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 22:19:47:53] Commandline is:-installupdatecheck

    [2011-01 - 22:19:47:53] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 22:19:47:53] Performing pingback request

    [2011-01 - 22:19:47:54] Pingback request ended with the HTTP 200 status

    [2011-01 - 22:19:47:54] from DURATION background update checking

    [2011-01 - 22:19:47:54] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-01 - 22:19:47:54] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-01 - 22:19:47:54] update of the Runtime is not available

    [2011-01 - 22:19:47:54] cancelled Unpackaging

    [2011-01 - 22:19:47:54] end of Setup with exit code 0

    [2011-01 - 30:15:32:06] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-01 - 30:15:32:07] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 30:15:32:07] Commandline is: updatecheck.

    [2011-01 - 30:15:32:07] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:15:32:09] Performing pingback request

    [2011-01 - 30:15:32:09] from DURATION background update checking

    [2011-01 - 30:15:32:09] update for background directory unused compensation

    [2011-01 - 30:15:32:09] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-01 - 30:15:32:09] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-01 - 30:15:32:10] update of the Runtime is not available

    [2011-01 - 30:15:32:11] cancelled Unpackaging

    [2011-01 - 30:15:32:11] end of Setup with exit code 0

    [2011-01 - 30:15:32:24] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 30:15:32:24] Commandline is: - playerVersion = 20, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.5537899597547948 onApplicationVersion

    [2011-01 - 30:15:32:24] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:15:32:24] end of Setup with exit code 0

    [2011-01 - 30:15:32:45] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    "" [2011-01 - 30:15:32:45] Commandline is: - playerVersion = 10, 1, 103, 20 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - launch BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 - "-d = b00y461t null null null b00y469f My4w aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDB5NDY5Zi8.

    [2011-01 - 30:15:32:45] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:15:32:45] end of Setup with exit code 0

    [2011-01 - 30:17:59:16] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 30:17:59:16] Commandline is: - playerVersion = 20, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.16044672718271613 onApplicationVersion

    [2011-01 - 30:17:59:16] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:17:59:16] end of Setup with exit code 0

    [2011-01 - 30:17:59:20] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    "" [2011-01 - 30:17:59:20] Commandline is: - playerVersion = 10, 1, 103, 20 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - launch BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 - "-d = 4000-2500 My4w b00y469f null b00y461t aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDB5NDY5Zi9oZC8.

    [2011-01 - 30:17:59:20] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:17:59:20] end of Setup with exit code 0

    [2011-01 - 30:18:09:59] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 30:18:09:59] Commandline is: - playerVersion = 20, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.7355694402940571 onApplicationVersion

    [2011-01 - 30:18:09:59] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:18:09:59] end of Setup with exit code 0

    [2011-01 - 30:18:10:02] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    "" [2011-01 - 30:18:10:02] Commandline is: - playerVersion = 10, 1, 103, 20 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - launch BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 - "-d = 4000-2500 My4w b00wvjnq null b00wvjf8 aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDB3dmpucS9oZC8.

    [2011-01 - 30:18:10:02] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:18:10:02] end of Setup with exit code 0

    [2011-01 - 30:18:14:43] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-01 - 30:18:14:43] Commandline is: - playerVersion = 20, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.08778980793431401 onApplicationVersion

    [2011-01 - 30:18:14:43] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-01 - 30:18:14:43] end of Setup with exit code 0

    [2011-02 - 02:18:56:12] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 02:18:56:12] Commandline is: - playerVersion = 64, 10, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.6699020299129188 onApplicationVersion

    [2011-02 - 02:18:56:12] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 02:18:56:12] end of Setup with exit code 0

    [2011-02 - 03:22:15:44] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 03:22:15:44] Commandline is: - playerVersion = 20, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.04591698758304119 onApplicationVersion

    [2011-02 - 03:22:15:44] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 03:22:15:44] end of Setup with exit code 0

    [2011-02 - 03:22:15:59] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    "" [2011-02 - 03:22:15:59] Commandline is: - playerVersion = 10, 1, 103, 20 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - launch BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 - "-d = 4000-2500 My4w b00yb5jr null b00yqmwn aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDB5YjVqci9oZC8.

    [2011-02 - 03:22:15:59] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 03:22:15:59] end of Setup with exit code 0

    [2011-02 - 04:18:26:16] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 04:18:26:16] Commandline is: - playerVersion = 64, 10, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.38653032947331667 onApplicationVersion

    [2011-02 - 04:18:26:16] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 04:18:26:16] end of Setup with exit code 0

    [2011-02 - 04:18:40:03] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 04:18:40:03] Commandline is: - playerVersion = 64, 10, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.0027284095995128155 onApplicationVersion

    [2011-02 - 04:18:40:03] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 04:18:40:03] end of Setup with exit code 0

    [2011-02 - 06:19:13:39] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 06:19:13:39] Commandline is: - playerVersion = 22, 10, 1, 103 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - isinstalled - BBCiPlayerDesktop 61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 adobe.com:air0.67613944131881 onApplicationVersion

    [2011-02 - 06:19:13:39] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 06:19:13:39] end of Setup with exit code 0

    [2011-02 - 06:19:13:57] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-02 - 06:19:13:57] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-02 - 06:19:13:57] Commandline is: updatecheck.

    [2011-02 - 06:19:13:57] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-02 - 06:19:13:58] Performing pingback request

    [2011-02 - 06:19:13:58] from DURATION background update checking

    [2011-02 - 06:19:13:58] update for background directory unused compensation

    [2011-02 - 06:19:13:58] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-02 - 06:19:13:58] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-02 - 06:19:13:58] update of the Runtime is not available

    [2011-02 - 06:19:13:58] cancelled Unpackaging

    [2011-02 - 06:19:13:58] end of Setup with exit code 0

    [2011-04 - 11:21:02:26] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-04 - 11:21:02:26] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 11:21:02:26] Commandline is: updatecheck.

    [2011-04 - 11:21:02:27] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 11:21:02:35] Performing pingback request

    [2011-04 - 11:21:02:36] from DURATION background update checking

    [2011-04 - 11:21:02:36] update for background directory unused compensation

    [2011-04 - 11:21:02:36] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-04 - 11:21:02:36] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-04 - 11:21:02:51] full unpacking

    [2011-04 - 11:21:02:59] download success

    [2011-04 - 11:21:03:00] DURATION update downloaded

    [2011-04 - 11:21:11:17] user had delayed the installation of the update

    [2011-04 - 11:21:11:17] end of Setup with exit code 0

    [2011-04 - 28:21:58:22] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - applyupdates "c:\program c iplayer desktop\bbc iplayer desktop.exe.

    [2011-04 - 28:21:58:22] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 28:21:58:22] Commandline is:-applyupdates "c:\program c iplayer desktop\bbc iplayer desktop.exe.

    [2011-04 - 28:21:58:22] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 28:21:58:22] installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:21:58:23] begin the installation of update for background DURATION

    [2011-04 - 28:21:58:23] launch sub-process commandline C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background\updater-set to "c:\program" update c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:21:58:23] DURATION updater has successfully launched

    [2011-04 - 28:21:58:23] end of Setup with exit code 0

    [2011-04 - 28:21:58:28] Setup starts with version 2.6.0.19120 on Windows XP x 86

    [2011-04 - 28:21:58:28] Commandline is:-update "c:\program". c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:21:58:28] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 28:21:58:28] installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:32:41] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19120 runtime

    [2011-04 - 28:22:32:41] installation msi at c:\docume~1\paulst~1\locals~1\temp\air36.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 28:22:32:51] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 28:22:32:51] restore to install a c:\docume~1\paulst~1\locals~1\temp\air36.tmp\setup.msi

    [2011-04 - 28:22:32:51] full restore

    [2011-04 - 28:22:32:51] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 28:22:33:05] launching subprocesses with command-line c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:33:05] end of Setup with exit code 7

    [2011-04 - 28:22:33:35] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-04 - 28:22:33:36] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 28:22:33:36] Commandline is: updatecheck.

    [2011-04 - 28:22:33:36] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 28:22:33:36] Performing pingback request

    [2011-04 - 28:22:33:36] from DURATION background update checking

    [2011-04 - 28:22:33:36] update for background directory unused compensation

    [2011-04 - 28:22:33:36] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-04 - 28:22:33:36] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-04 - 28:22:33:46] full unpacking

    [2011-04 - 28:22:33:47] download success

    [2011-04 - 28:22:33:47] DURATION update downloaded

    [2011-04 - 28:22:34:37] user had delayed the installation of the update

    [2011-04 - 28:22:34:37] end of Setup with exit code 0

    [2011-04 - 28:22:39:04] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - applyupdates "c:\program c iplayer desktop\bbc iplayer desktop.exe.

    [2011-04 - 28:22:39:04] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 28:22:39:04] Commandline is:-applyupdates "c:\program c iplayer desktop\bbc iplayer desktop.exe.

    [2011-04 - 28:22:39:04] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 28:22:39:05] installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:39:05] begin the installation of update for background DURATION

    [2011-04 - 28:22:39:05] launch sub-process commandline C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background\updater-set to "c:\program" update c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:39:06] DURATION updater has successfully launched

    [2011-04 - 28:22:39:06] end of Setup with exit code 0

    [2011-04 - 28:22:39:10] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 28:22:39:10] Commandline is:-update "c:\program". c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:39:10] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 28:22:39:10] installed app (BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1) located at c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:39:18] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 28:22:39:18] installation msi at c:\docume~1\paulst~1\locals~1\temp\air4e.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 28:22:39:23] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 28:22:39:23] restore to install a c:\docume~1\paulst~1\locals~1\temp\air4e.tmp\setup.msi

    [2011-04 - 28:22:39:23] full restore

    [2011-04 - 28:22:39:23] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 28:22:39:28] launching subprocesses with command-line c:\program c iplayer desktop\bbc iplayer desktop.exe

    [2011-04 - 28:22:39:28] end of Setup with exit code 7

    [2011-04 - 29:09:39:07] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:09:39:07] command line is:

    [2011-04 - 29:09:39:07] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:09:39:15] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:09:39:15] installation msi at c:\docume~1\paulst~1\locals~1\temp\airfd.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:09:39:20] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:09:39:20] restore to install a c:\docume~1\paulst~1\locals~1\temp\airfd.tmp\setup.msi

    [2011-04 - 29:09:39:20] full restore

    [2011-04 - 29:09:39:20] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:09:40:01] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:09:40:01] command line is:

    [2011-04 - 29:09:40:01] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:09:40:06] end of Setup with exit code 7

    [2011-04 - 29:09:41:30] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:09:41:30] installation msi at c:\docume~1\paulst~1\locals~1\temp\air101.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:09:41:46] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:09:41:46] restore to install a c:\docume~1\paulst~1\locals~1\temp\air101.tmp\setup.msi

    [2011-04 - 29:09:41:46] full restore

    [2011-04 - 29:09:41:46] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:09:41:51] end of Setup with exit code 7

    [2011-04 - 29:09:51:03] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 29:09:51:03] Commandline is:-arp: uninstall

    [2011-04 - 29:09:51:03] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:09:51:16] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2011-04 - 29:09:51:16] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2011-04 - 29:09:51:16] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:51:16] full restore

    [2011-04 - 29:09:51:16] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:51:22] end of Setup with exit code 7

    [2011-04 - 29:09:51:46] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 29:09:51:46] Commandline is:-arp: uninstall

    [2011-04 - 29:09:51:46] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:09:51:49] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2011-04 - 29:09:51:49] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2011-04 - 29:09:51:50] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:51:50] full restore

    [2011-04 - 29:09:51:50] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:51:53] end of Setup with exit code 7

    [2011-04 - 29:09:52:21] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 29:09:52:21] Commandline is:-arp: uninstall

    [2011-04 - 29:09:52:21] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:09:58:28] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2011-04 - 29:09:58:28] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2011-04 - 29:09:58:28] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:58:28] full restore

    [2011-04 - 29:09:58:28] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:09:58:30] end of Setup with exit code 7

    [2011-04 - 29:17:25:46] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-04 - 29:17:25:46] Commandline is:-arp: uninstall

    [2011-04 - 29:17:25:46] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:17:25:54] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2011-04 - 29:17:25:54] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2011-04 - 29:17:25:54] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:17:25:54] full restore

    [2011-04 - 29:17:25:54] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2011-04 - 29:17:25:58] end of Setup with exit code 7

    [2011-04 - 29:18:07:48] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:18:07:48] command line is:

    [2011-04 - 29:18:07:48] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:18:07:54] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:18:07:54] installation msi at c:\docume~1\paulst~1\locals~1\temp\air2f.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:18:08:12] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:18:08:12] restore to install a c:\docume~1\paulst~1\locals~1\temp\air2f.tmp\setup.msi

    [2011-04 - 29:18:08:12] full restore

    [2011-04 - 29:18:08:12] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:18:08:26] end of Setup with exit code 7

    [2011-04 - 29:18:09:40] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:18:09:40] command line is:

    [2011-04 - 29:18:09:40] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:18:09:42] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:18:09:42] command line is:

    [2011-04 - 29:18:09:42] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:18:09:42] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:18:09:42] installation msi at c:\docume~1\paulst~1\locals~1\temp\air34.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:18:09:47] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:18:09:47] restore to install a c:\docume~1\paulst~1\locals~1\temp\air34.tmp\setup.msi

    [2011-04 - 29:18:09:47] full restore

    [2011-04 - 29:18:09:47] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:18:09:49] end of Setup with exit code 7

    [2011-04 - 29:18:10:01] end of Setup with exit code 6

    [2011-04 - 29:21:32:10] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:21:32:10] command line is:

    [2011-04 - 29:21:32:10] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:32:18] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:21:32:18] installation msi at c:\docume~1\paulst~1\locals~1\temp\air6b.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:32:23] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:32:23] restore to install a c:\docume~1\paulst~1\locals~1\temp\air6b.tmp\setup.msi

    [2011-04 - 29:21:32:23] full restore

    [2011-04 - 29:21:32:23] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:21:32:29] end of Setup with exit code 7

    [2011-04 - 29:21:33:51] Setup starts with version 2.6.0.19140 on Windows XP x 86

    [2011-04 - 29:21:33:51] command line is:

    [2011-04 - 29:21:33:51] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:33:54] from the runtime update. Update from version 2.5.1.17730 to version 2.6.0.19140 runtime

    [2011-04 - 29:21:33:54] installation msi at c:\docume~1\paulst~1\locals~1\temp\air6f.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:33:58] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:33:58] restore to install a c:\docume~1\paulst~1\locals~1\temp\air6f.tmp\setup.msi

    [2011-04 - 29:21:33:58] full restore

    [2011-04 - 29:21:33:58] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-04 - 29:21:34:01] end of Setup with exit code 7

    [2011-04 - 29:21:38:58] Setup starts with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:38:58] Commandline is: - playerVersion = 64, 10, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:38:58] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:38:58] invoking Application Installer for combined installation

    "" [2011-04 - 29:21:38:58] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR78.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR78.tmp - playerVersion = 10, 1, 102, 64 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:38:59] Application Installer start with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:38:59] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR78.tmp - playerVersion = 10, 1, 102, 64 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:38:59] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:39:00] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air C:\Documents and Paul Stratford\Local Settings\Temp\fla79.tmp

    [2011-04 - 29:21:39:08] signature application verified

    [2011-04 - 29:21:39:08] Unpackaging/validation complete

    [2011-04 - 29:21:39:08] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2011-04 - 29:21:39:19] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\fla7A.tmp Stratford\Local Paul

    [2011-04 - 29:21:39:19] create an installation package Native succeeded

    [2011-04 - 29:21:39:19] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 2.6.0.19140.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.3 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v323.air

    [2011-04 - 29:21:39:20] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR78.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:39:24] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:39:24] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR78.tmp\setup.msi

    [2011-04 - 29:21:39:24] full restore

    [2011-04 - 29:21:39:24] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:39:33] end of Setup with exit code 7

    [2011-04 - 29:21:39:33] app sub-process installer failed (7)

    [2011-04 - 29:21:39:33] end of Setup with exit code 7

    [2011-04 - 29:21:44:19] Setup starts with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:44:19] Commandline is: - playerVersion = 64, 10, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:44:19] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:44:19] invoking Application Installer for combined installation

    "" [2011-04 - 29:21:44:19] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR8A.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR8A.tmp - playerVersion = 10, 1, 102, 64 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:44:20] Application Installer start with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:44:20] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR8A.tmp - playerVersion = 10, 1, 102, 64 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDBwNHE0MA d == null null My4w normal b00p4q40 b00p4pst '

    [2011-04 - 29:21:44:20] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:44:21] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air C:\Documents and Paul Stratford\Local Settings\Temp\fla8B.tmp

    [2011-04 - 29:21:44:28] signature application verified

    [2011-04 - 29:21:44:28] Unpackaging/validation complete

    [2011-04 - 29:21:44:28] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2011-04 - 29:21:44:43] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\fla8C.tmp Stratford\Local Paul

    [2011-04 - 29:21:44:43] create an installation package Native succeeded

    [2011-04 - 29:21:44:43] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 2.6.0.19140.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.3 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v323.air

    [2011-04 - 29:21:44:43] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR8A.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:44:48] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:44:48] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR8A.tmp\setup.msi

    [2011-04 - 29:21:44:48] full restore

    [2011-04 - 29:21:44:48] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:44:53] end of Setup with exit code 7

    [2011-04 - 29:21:44:54] app sub-process installer failed (7)

    [2011-04 - 29:21:44:54] end of Setup with exit code 7

    [2011-04 - 29:21:45:47] Setup starts with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:45:47] Commandline is: - playerVersion = 10, 2, 159, 1 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:45:47] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:45:47] invoking Application Installer for combined installation

    "" [2011-04 - 29:21:45:47] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR91.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR91.tmp - playerVersion = 10, 2, 159, 1 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:45:48] Application Installer start with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:45:48] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR91.tmp - playerVersion = 10, 2, 159, 1 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:45:48] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:45:49] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air C:\Documents and Paul Stratford\Local Settings\Temp\fla92.tmp

    [2011-04 - 29:21:45:54] signature application verified

    [2011-04 - 29:21:45:54] Unpackaging/validation complete

    [2011-04 - 29:21:45:54] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2011-04 - 29:21:46:15] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\fla93.tmp Stratford\Local Paul

    [2011-04 - 29:21:46:16] create an installation package Native succeeded

    [2011-04 - 29:21:46:16] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 2.6.0.19140.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.3 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v323.air

    [2011-04 - 29:21:46:16] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR91.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:46:20] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:46:20] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR91.tmp\setup.msi

    [2011-04 - 29:21:46:20] full restore

    [2011-04 - 29:21:46:20] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:46:26] end of Setup with exit code 7

    [2011-04 - 29:21:46:26] app sub-process installer failed (7)

    [2011-04 - 29:21:46:26] end of Setup with exit code 7

    [2011-04 - 29:21:47:30] Setup starts with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:47:30] Commandline is: - playerVersion = 27, 10, 2, 154 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:47:30] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:47:30] invoking Application Installer for combined installation

    "" [2011-04 - 29:21:47:30] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR9D.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR9D.tmp - playerVersion = 10, 2, 154, 27 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:47:30] Application Installer start with version 2.6.0.19140 on Windows XP x 86

    "" [2011-04 - 29:21:47:30] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR9D.tmp - playerVersion = 10, 2, 154, 27 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air -"-aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDExODZtbA d == null null My4w normal b01186ml b01186bm '

    [2011-04 - 29:21:47:30] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-04 - 29:21:47:31] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v323.air C:\Documents and Paul Stratford\Local Settings\Temp\fla9E.tmp

    [2011-04 - 29:21:47:37] signature application verified

    [2011-04 - 29:21:47:37] Unpackaging/validation complete

    [2011-04 - 29:21:47:37] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2011-04 - 29:21:47:45] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\flaA0.tmp Stratford\Local Paul

    [2011-04 - 29:21:47:45] create an installation package Native succeeded

    [2011-04 - 29:21:47:45] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 2.6.0.19140.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.3 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v323.air

    [2011-04 - 29:21:47:45] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR9D.tmp\setup.msi with a guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}

    [2011-04 - 29:21:47:50] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:47:50] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR9D.tmp\setup.msi

    [2011-04 - 29:21:47:50] full restore

    [2011-04 - 29:21:47:50] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-04 - 29:21:47:54] end of Setup with exit code 7

    [2011-04 - 29:21:47:55] app sub-process installer failed (7)

    [2011-04 - 29:21:47:55] end of Setup with exit code 7

    [2011-08 - 08:21:04:51] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-08 - 08:21:04:52] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-08 - 08:21:04:52] Commandline is: updatecheck.

    [2011-08 - 08:21:04:52] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-08 - 08:21:04:53] Performing pingback request

    [2011-08 - 08:21:04:53] from DURATION background update checking

    [2011-08 - 08:21:04:53] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-08 - 08:21:04:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-08 - 08:21:05:52] full unpacking

    [2011-08 - 08:21:05:53] download success

    [2011-08 - 08:21:05:53] DURATION update downloaded

    [2011-08 - 08:21:06:24] user had delayed the installation of the update

    [2011-08 - 08:21:06:24] end of Setup with exit code 0

    [2011-09 - 25:16:06:46] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - applyupdates "c:\program files\itunesexport\itunesexport.exe".

    [2011-09 - 25:16:06:46] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-09 - 25:16:06:46] Commandline is:-applyupdates "c:\program files\itunesexport\itunesexport.exe".

    [2011-09 - 25:16:06:46] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-09 - 25:16:06:46] installed app (iTunesExport.9816BF1711E8C5ABC4CED8E503841951211D8E5D.1) located in c:\program files\itunesexport\itunesexport.exe

    [2011-09 - 25:16:06:47] begin the installation of update for background DURATION

    [2011-09 - 25:16:06:47] launch sub-process commandline C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background\updater-implementation to date of "c:\program files\itunesexport\itunesexport.exe".

    [2011-09 - 25:16:06:47] DURATION updater has successfully launched

    [2011-09 - 25:16:06:47] end of Setup with exit code 0

    [2011-09 - 25:16:06:53] Setup starts with version 2.7.0.19530 on Windows XP x 86

    [2011-09 - 25:16:06:53] Commandline is:-update "c:\program files\itunesexport\itunesexport.exe".

    [2011-09 - 25:16:06:53] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-09 - 25:16:06:54] installed app (iTunesExport.9816BF1711E8C5ABC4CED8E503841951211D8E5D.1) located in c:\program files\itunesexport\itunesexport.exe

    [2011-09 - 25:16:06:59] from the runtime update. Update from version 2.5.1.17730 to version 2.7.0.19530 runtime

    [2011-09 - 25:16:06:59] installation msi at c:\docume~1\paulst~1\locals~1\temp\air17.tmp\setup.msi with a guid {FDB3B167-F4FA-461D-976F-286304A57B2A}

    [2011-09 - 25:16:07:06] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2011-09 - 25:16:07:06] restore to install a c:\docume~1\paulst~1\locals~1\temp\air17.tmp\setup.msi

    [2011-09 - 25:16:07:06] full restore

    [2011-09 - 25:16:07:06] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2011-09 - 25:16:08:29] launching subprocesses with c:\program files\itunesexport\itunesexport.exe command line

    [2011-09 - 25:16:08:29] end of Setup with exit code 7

    [2011-09 - 25:16:08:59] launching subprocesses with command line C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater - updatecheck

    [2011-09 - 25:16:09:00] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2011-09 - 25:16:09:00] Commandline is: updatecheck.

    [2011-09 - 25:16:09:00] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-09 - 25:16:09:00] Performing pingback request

    [2011-09 - 25:16:09:00] from DURATION background update checking

    [2011-09 - 25:16:09:00] update for background directory unused compensation

    [2011-09 - 25:16:09:00] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update

    [2011-09 - 25:16:09:00] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2011-09 - 25:16:09:09] full unpacking

    [2011-09 - 25:16:09:10] download success

    [2011-09 - 25:16:09:10] DURATION update downloaded

    [2011-09 - 25:16:09:26] user had delayed the installation of the update

    [2011-09 - 25:16:09:26] end of Setup with exit code 0

    [2011-11 - 21:10:12:00] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-11 - 21:10:12:00] Commandline is: "C:\Documents and Paul Stratford\My Documents\My Videos\Media Go\Mommy strips and teases on Cam - BangYouLater.com.flv.

    [2011-11 - 21:10:12:00] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-11 - 21:10:12:01] 0Go/Mommy%20Strips%20And%20Teases%20On%20Cam%20-%20BangYouLater.com.flv file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/My%20Videos/Media%2 in C:\Documents and Settings\Temp\fla221.tmp Stratford\Local Paul Unpackaging

    [2011-11 - 21:10:12:01] got an unexpected unrecoverable error while unpacking: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "not an AIR file" errorID = 0]

    [2011-11 - 21:10:12:03] end of Setup with exit code 7

    [2011-11 - 21:10:26:34] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-11 - 21:10:26:34] Commandline is: "C:\Documents and Paul Stratford\My Documents\My Videos\Media Go\Striptease in lingerie with blonde - BangYouLater.com.flv videos"

    [2011-11 - 21:10:26:34] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-11 - 21:10:26:35] 0Go/Striptease%20in%20lingerie%20videos%20with%20blonde%20-%20BangYouLater.com.flv file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/My%20Videos/Media%2 in C:\Documents and Settings\Temp\fla222.tmp Stratford\Local Paul Unpackaging

    [2011-11 - 21:10:26:35] got an unexpected unrecoverable error while unpacking: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "not an AIR file" errorID = 0]

    [2011-11 - 21:10:26:37] end of Setup with exit code 7

    [2011-11 - 21:10:31:57] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-11 - 21:10:31:57] Commandline is: "C:\Documents and Paul Stratford\My Documents\My Videos\Media Go\Striptease in lingerie with blonde - BangYouLater.com_3.flv videos"

    [2011-11 - 21:10:31:57] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-11 - 21:10:31:58] 0Go/Striptease%20in%20lingerie%20videos%20with%20blonde%20-%20BangYouLater.com_3.flv file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/My%20Videos/Media%2 in C:\Documents and Settings\Temp\fla223.tmp Stratford\Local Paul Unpackaging

    [2011-11 - 21:10:31:58] got an unexpected unrecoverable error while unpacking: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "not an AIR file" errorID = 0]

    [2011-11 - 21:10:32:00] end of Setup with exit code 7

    [2011-11 - 21:10:33:31] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-11 - 21:10:33:31] Commandline is: "C:\Documents and Stratford\My Documents\My Videos\Media Go\Busty mllf in stripteasing lingerie - BangYouLater.com.flv Paul"

    [2011-11 - 21:10:33:31] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-11 - 21:10:33:32] 0Go/Busty%20milf%20in%20lingerie%20stripteasing%20-%20BangYouLater.com.flv file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/My%20Videos/Media%2 in C:\Documents and Settings\Temp\fla224.tmp Stratford\Local Paul Unpackaging

    [2011-11 - 21:10:33:32] got an unexpected unrecoverable error while unpacking: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "not an AIR file" errorID = 0]

    [2011-11 - 21:10:33:33] end of Setup with exit code 7

    [2011-11 - 21:10:40:56] Application Installer start with version 2.5.1.17730 on Windows XP x 86

    [2011-11 - 21:10:40:56] Commandline is: "C:\Documents and Stratford\My Documents\Family Files\Paul\PDTS\File 1\other\ www_5.flv Paul"

    [2011-11 - 21:10:40:56] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2011-11 - 21:10:40:57] file:///C:/Documents%20and%20Settings/Paul%20Stratford/My%20Documents/Family%20Files/Paul /PDTS/File%201/other/ www_5.flv C:\Documents and Stratford\Local Settings\Temp\fla226.tmp Paul Unpackaging

    [2011-11 - 21:10:40:57] got an unexpected unrecoverable error while unpacking: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "not an AIR file" errorID = 0]

    [2011-11 - 21:10:40:59] end of Setup with exit code 7

    [2012-02 - 05:17:59:41] Setup starts with version 3.1.0.4880 on Windows XP x 86

    " [2012-02 - 05:17:59:41] Commandline is: - playerVersion = 55, 11, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = false - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air -"-d = 4000-2500 My4w b01bmq59 b01bmq4s normal aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDFibXE1OS9oZC8 " "

    [2012-02 - 05:17:59:41] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:17:59:41] invoking Application Installer for combined installation

    " [2012-02 - 05:17:59:41] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR24.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR24.tmp - playerVersion = 11, 1, 102, 55 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air -"-d = 4000-2500 My4w normal b01bmq59 b01bmq4s aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDFibXE1OS9oZC8 " "

    [2012-02 - 05:17:59:42] Application Installer start with version 3.1.0.4880 on Windows XP x 86

    " [2012-02 - 05:17:59:42] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR24.tmp - playerVersion = 11, 1, 102, 55 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air -"-d = 4000-2500 My4w b01bmq59 b01bmq4s normal aHR0cDovL3d3dy5iYmMuY28udWsvaXBsYXllci9wbGF5bGlzdC9iMDFibXE1OS9oZC8 " "

    [2012-02 - 05:17:59:42] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:17:59:43] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air C:\Documents and Paul Stratford\Local Settings\Temp\fla25.tmp

    [2012-02 - 05:17:59:52] signature application verified

    [2012-02 - 05:17:59:52] Unpackaging/validation complete

    [2012-02 - 05:17:59:52] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2012-02 - 05:18:00:11] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\fla28.tmp Stratford\Local Paul

    [2012-02 - 05:18:00:12] create an installation package Native succeeded

    [2012-02 - 05:18:00:12] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 3.1.0.4880.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.14 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v3214.air

    [2012-02 - 05:18:00:13] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR24.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:00:25] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:00:25] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR24.tmp\setup.msi

    [2012-02 - 05:18:00:25] full restore

    [2012-02 - 05:18:00:25] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:00:31] end of Setup with exit code 7

    [2012-02 - 05:18:00:31] app sub-process installer failed (7)

    [2012-02 - 05:18:00:32] end of Setup with exit code 7

    [2012-02 - 05:18:34:54] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:34:54] Commandline is: - playerVersion = 55, 11, 1, 102 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - x - 1 http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air

    [2012-02 - 05:18:34:54] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:34:54] invoking Application Installer for combined installation

    [2012-02 - 05:18:34:54] launching subprocesses with order line C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR4B.tmp\Adobe AIR\Versions\1.0\Adobe AIR app install runtime - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR4B.tmp - playerVersion = 11, 1, 102, 55 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air

    [2012-02 - 05:18:34:55] Application Installer start with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:34:55] Commandline is: DURATION - C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR4B.tmp - playerVersion = 11, 1, 102, 55 - sandboxType = distance - securityDomain = airdownload.adobe.com - https = false - fromUserEvent = true - withRuntime-url http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air

    [2012-02 - 05:18:34:55] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:34:57] Unpackaging http://www.bbc.co.uk/iplayer/dm/version2/revisions/bbc_iplayer_desktop_v3214.air C:\Documents and Paul Stratford\Local Settings\Temp\fla50.tmp

    [2012-02 - 05:18:35:03] signature application verified

    [2012-02 - 05:18:35:03] Unpackaging/validation complete

    [2012-02 - 05:18:35:03] no app location to "BBCiPlayerDesktop" appID and pubID "61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1."

    [2012-02 - 05:18:35:20] conversion of application not packaged to a native installation package in C:\Documents and Settings\Temp\fla52.tmp Stratford\Local Paul

    [2012-02 - 05:18:35:21] create an installation package Native succeeded

    [2012-02 - 05:18:35:21] combined departure TIME update and install app.

    Update of the runtime from version 2.5.1.17730 to version 3.1.0.4880.

    Install app BBCiPlayerDesktop.61DB7A798358575D6A969CCD73DDBBD723A6DA9D.1 version 3.2.14 in C:\Program Files using the source file at http://www.BBC.co.UK/iPlayer/DM/version2/revisions/bbc_iplayer_desktop_v3214.air

    [2012-02 - 05:18:35:21] installation msi at C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR4B.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:35:29] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:35:29] restore to install a C:\DOCUME~1\PAULST~1\LOCALS~1\Temp\AIR4B.tmp\setup.msi

    [2012-02 - 05:18:35:29] full restore

    [2012-02 - 05:18:35:29] got an error fatal unexpected while in stateInstalling: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:35:44] end of Setup with exit code 7

    [2012-02 - 05:18:35:44] app sub-process installer failed (7)

    [2012-02 - 05:18:35:44] end of Setup with exit code 7

    [2012-02 - 05:18:36:44] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:36:44] command line is:

    [2012-02 - 05:18:36:44] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:37:01] from the runtime update. Update from version 2.5.1.17730 to version 3.1.0.4880 runtime

    [2012-02 - 05:18:37:01] installation msi at c:\docume~1\paulst~1\locals~1\temp\air5e.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:37:23] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:37:23] restore to install a c:\docume~1\paulst~1\locals~1\temp\air5e.tmp\setup.msi

    [2012-02 - 05:18:37:23] full restore

    [2012-02 - 05:18:37:23] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-02 - 05:18:37:30] end of Setup with exit code 7

    [2012-02 - 05:18:37:56] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:37:56] command line is:

    [2012-02 - 05:18:37:56] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:38:02] end of Setup with exit code 6

    [2012-02 - 05:18:43:46] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:43:46] command line is:

    [2012-02 - 05:18:43:46] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:44:00] from the runtime update. Update from version 2.5.1.17730 to version 3.1.0.4880 runtime

    [2012-02 - 05:18:44:00] installation msi at c:\docume~1\paulst~1\locals~1\temp\airc.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:44:09] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:44:09] restore to install a c:\docume~1\paulst~1\locals~1\temp\airc.tmp\setup.msi

    [2012-02 - 05:18:44:09] full restore

    [2012-02 - 05:18:44:09] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-02 - 05:18:44:13] end of Setup with exit code 7

    [2012-02 - 05:18:45:04] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 05:18:45:04] Commandline is:-arp: uninstall

    [2012-02 - 05:18:45:04] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:45:14] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 05:18:45:14] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 05:18:45:14] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:45:14] full restore

    [2012-02 - 05:18:45:14] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:45:19] end of Setup with exit code 7

    [2012-02 - 05:18:45:22] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 05:18:45:22] Commandline is:-arp: uninstall

    [2012-02 - 05:18:45:22] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:45:27] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 05:18:45:27] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 05:18:45:27] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:45:27] full restore

    [2012-02 - 05:18:45:27] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:45:29] end of Setup with exit code 7

    [2012-02 - 05:18:46:35] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 05:18:46:35] Commandline is:-arp: uninstall

    [2012-02 - 05:18:46:35] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:46:38] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 05:18:46:38] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 05:18:46:38] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:46:38] full restore

    [2012-02 - 05:18:46:38] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:46:40] end of Setup with exit code 7

    [2012-02 - 05:18:47:09] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 05:18:47:09] Commandline is:-arp: uninstall

    [2012-02 - 05:18:47:09] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:47:13] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 05:18:47:13] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 05:18:47:13] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:47:13] full restore

    [2012-02 - 05:18:47:13] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 05:18:47:16] end of Setup with exit code 7

    [2012-02 - 05:18:47:35] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:47:35] command line is:

    [2012-02 - 05:18:47:35] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:47:48] from the runtime update. Update from version 2.5.1.17730 to version 3.1.0.4880 runtime

    [2012-02 - 05:18:47:49] installation msi at c:\docume~1\paulst~1\locals~1\temp\air12.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:47:53] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:47:53] command line is:

    [2012-02 - 05:18:47:53] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:47:53] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:47:53] command line is:

    [2012-02 - 05:18:47:53] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:15] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:15] command line is:

    [2012-02 - 05:18:48:15] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:18] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:18] command line is:

    [2012-02 - 05:18:48:18] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:18] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:18] command line is:

    [2012-02 - 05:18:48:18] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:18] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:18] command line is:

    [2012-02 - 05:18:48:18] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:23] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2012-02 - 05:18:48:24] end of Setup with exit code 0

    [2012-02 - 05:18:48:25] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2012-02 - 05:18:48:25] end of Setup with exit code 0

    [2012-02 - 05:18:48:26] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:26] Commandline is:-installupdatecheck

    [2012-02 - 05:18:48:26] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:26] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:26] Commandline is:-installupdatecheck

    [2012-02 - 05:18:48:26] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:28] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2012-02 - 05:18:48:28] end of Setup with exit code 0

    [2012-02 - 05:18:48:28] Performing pingback request

    [2012-02 - 05:18:48:28] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:28] Commandline is:-installupdatecheck

    [2012-02 - 05:18:48:28] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:29] subprocess C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater command-line launch - installupdatecheck

    [2012-02 - 05:18:48:29] end of Setup with exit code 0

    [2012-02 - 05:18:48:29] Pingback request ended with the HTTP 200 status

    [2012-02 - 05:18:48:29] from DURATION background update checking

    [2012-02 - 05:18:48:29] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update

    [2012-02 - 05:18:48:29] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2012-02 - 05:18:48:29] Pingback request ended with the HTTP 200 status

    [2012-02 - 05:18:48:29] from DURATION background update checking

    [2012-02 - 05:18:48:29] Performing pingback request

    [2012-02 - 05:18:48:30] from DURATION background update checking

    [2012-02 - 05:18:48:30] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update

    [2012-02 - 05:18:48:30] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2012-02 - 05:18:48:30] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 05:18:48:30] Commandline is:-installupdatecheck

    [2012-02 - 05:18:48:30] runtime installed (3.1.0.4880) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 05:18:48:30] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update

    [2012-02 - 05:18:48:30] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2012-02 - 05:18:48:30] update of the Runtime is not available

    [2012-02 - 05:18:48:30] cancelled Unpackaging

    [2012-02 - 05:18:48:30] end of Setup with exit code 0

    [2012-02 - 05:18:48:30] update of the Runtime is not available

    [2012-02 - 05:18:48:30] cancelled Unpackaging

    [2012-02 - 05:18:48:30] update of the Runtime is not available

    [2012-02 - 05:18:48:30] end of Setup with exit code 0

    [2012-02 - 05:18:48:30] end of Setup with exit code 0

    [2012-02 - 05:18:48:31] Performing pingback request

    [2012-02 - 05:18:48:31] from DURATION background update checking

    [2012-02 - 05:18:48:31] update for background directory unused compensation

    [2012-02 - 05:18:48:32] download update start background of http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update

    [2012-02 - 05:18:48:32] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/3.1.0.4880/update C:\Documents and Paul Stratford\Application Data\Adobe\AIR\Updater\Background

    [2012-02 - 05:18:48:32] update of the Runtime is not available

    [2012-02 - 05:18:48:32] cancelled Unpackaging

    [2012-02 - 05:18:48:32] end of Setup with exit code 0

    [2012-02 - 05:18:48:33] from the runtime update. Update from version 3.1.0.4880 to version 3.1.0.4880 runtime

    [2012-02 - 05:18:48:33] installation msi at c:\docume~1\paulst~1\locals~1\temp\air14.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:48:36] error occurred during the operation of installation msi. beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1618" errorID = 5008]

    [2012-02 - 05:18:48:36] restore to install a c:\docume~1\paulst~1\locals~1\temp\air14.tmp\setup.msi

    [2012-02 - 05:18:48:36] full restore

    [2012-02 - 05:18:48:36] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1618" errorID = 5008]

    [2012-02 - 05:18:48:42] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:48:42] restore to install a c:\docume~1\paulst~1\locals~1\temp\air12.tmp\setup.msi

    [2012-02 - 05:18:48:42] full restore

    [2012-02 - 05:18:48:42] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-02 - 05:18:48:42] end of Setup with exit code 7

    [2012-02 - 05:18:48:46] from the runtime update. Update from version 2.5.1.17730 to version 3.1.0.4880 runtime

    [2012-02 - 05:18:48:46] installation msi at c:\docume~1\paulst~1\locals~1\temp\air13.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 05:18:48:49] end of Setup with exit code 7

    [2012-02 - 05:18:48:54] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 05:18:48:54] restore to install a c:\docume~1\paulst~1\locals~1\temp\air13.tmp\setup.msi

    [2012-02 - 05:18:48:54] full restore

    [2012-02 - 05:18:48:54] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-02 - 05:18:48:58] end of Setup with exit code 7

    [2012-02 - 17:18:28:28] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 17:18:28:28] Commandline is:-arp: uninstall

    [2012-02 - 17:18:28:28] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 17:18:28:31] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 17:18:28:31] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 17:18:28:31] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 17:18:28:31] full restore

    [2012-02 - 17:18:28:31] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 17:18:28:34] end of Setup with exit code 7

    [2012-02 - 17:18:28:50] Setup starts with version 2.5.1.17730 on Windows XP x 86

    [2012-02 - 17:18:28:50] Commandline is:-arp: uninstall

    [2012-02 - 17:18:28:50] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 17:18:29:04] from uninstall runtime. Uninstalling the version of runtime 2.5.1.17730

    [2012-02 - 17:18:29:04] with the GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC} uninstall product

    [2012-02 - 17:18:29:04] error occurred during the msi uninstall; beginning of restoration: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 17:18:29:04] full restore

    [2012-02 - 17:18:29:04] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1612" errorID = 0]

    [2012-02 - 17:18:29:10] end of Setup with exit code 7

    [2012-02 - 17:18:33:27] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 17:18:33:27] command line is:

    [2012-02 - 17:18:33:27] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 17:18:33:30] Setup starts with version 3.1.0.4880 on Windows XP x 86

    [2012-02 - 17:18:33:30] command line is:

    [2012-02 - 17:18:33:30] runtime installed (2.5.1.17730) located in C:\Program Files\Common Files\Adobe AIR

    [2012-02 - 17:18:33:43] from the runtime update. Update from version 2.5.1.17730 to version 3.1.0.4880 runtime

    [2012-02 - 17:18:33:43] installation msi at c:\docume~1\paulst~1\locals~1\temp\air2e.tmp\setup.msi with a guid {FE23D063-934D-4829-A0D8-00634CE79B4A}

    [2012-02 - 17:18:34:00] error occurred during the operation of installation msi. starting rollback: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = errorID "1603" = 0]

    [2012-02 - 17:18:34:00] restore to install a c:\docume~1\paulst~1\locals~1\temp\air2e.tmp\setup.msi

    [2012-02 - 17:18:34:00] full restore

    [2012-02 - 17:18:34:00] coming out because of the error: [ErrorEvent type = "error" bubbles = false cancelable = false eventPhase = 2 text = "1603" errorID = 0]

    [2012-02 - 17:18:34:04] end of Setup with exit code 7

    [2012-02 - 17:18:34:06] end of Setup with exit code 6

    I'm sorry that you run into problems installing with AIR.  Microsoft has released a new utility that can help to resolve installation problems.  Would you mind giving it a try and let us know how it works for you?  When you run the patch, go through the uninstall process and trying to remove Adobe AIR on your system.  Once finished, download the latest version of AIR and install again.

    Microsoft install and uninstall the fix it

    If you're still having problems, you need to consult the Setup MSI log to better diagnose the problem.  Please post back with the content of the newspaper.  You can find instructions to find these papers here:

    Installer AIR journal Instructions

    Thank you

    Chris

  • Adding second-hand product must be mandatory if the stadium is closed / won

    Hello

    We have an obligation where the user must associate a product with an opportunity before moving on the stage of the sale to closed / won.

    We are unable to find such an association between opportunity and products or recipes where such validation can be implemented. No provision is there in the process of phase of sales not more.

    Is it still possible in CRM OD?

    Any suggestion would be appreciated.

    I don't think it will work. What field extract you what object on the joinfieldvalue?

    You can make a joinfieldvalue of the opportunity for a sales product, it does not work like that.

    The only thing I can think is to the 'revenue' a field read-only on the layout. That will force users to create product recipes and click the button "update totals of opportunity."

Maybe you are looking for