No payload in Request messagemapping in MONI

Hi ,
  I did a file to proxy scenario to update R/3 table. it is showing everything successful in PI sxmb_moni. In R/3 moni, i found application error occured (used fault message type).
i observed in PI sxmb_moni, pipeline step of Request messagemapping doesnt have the target payload(data).
it is showing only
<?xml version="1.0" encoding="UTF-8" ?>
  <ns0:f2ps_p_mt xmlns:ns0="http://xyz.com/f2ps" />
i tested messagemapping in IR, and is working fine and generating the output structure.
why is it not showing the message payload in PI moni?
can anybody help me?....
thanks ,
     kumar

Hi ,
this is my source structure (source message):
<?xml version="1.0" encoding="UTF-8"?>
<ns0:f2ps_f_mt xmlns:ns0="http://xyz.com/f2ps">
   <recset>
      <rec>
         <eno>123</eno>
         <ename>name1</ename>
         <dept>prod</dept>
         <sal>20000</sal>
      </rec>
      <rec>
         <eno>456</eno>
         <ename>name2</ename>
         <dept>it</dept>
         <sal>30000</sal>
      </rec>
   </recset>
</ns0:f2ps_f_mt>
this is the target structure:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:f2ps_p_mt xmlns:ns0="http://hcl.com/f2ps">
   <record>
      <empcode>123</empcode>
      <ename>name1</ename>
      <sal>20000</sal>
      <dept>prod</dept>
   </record>
   <record>
      <empcode>456</empcode>
      <ename>name2</ename>
      <sal>30000</sal>
      <dept>it</dept>
   </record>
</ns0:f2ps_p_mt>
thanks,
kumar

Similar Messages

  • ADS: Request start time: Mon Dec 21 11:56:45 GMT+05:30 2009(200.101)

    Hi all,
             While executing the form FP_TEST_IA_01, i am gettign the following exception.
    ADS: Request start time: Mon Dec 21 11:56:45 GMT+05:30 2009(200.101)
    Wat is the problem here?
    Thanks,

    Do other programs like FP_TEST_00 and FP_PDF_TEST_00 work for you?
    Also Check below notes for more information.
    [Note 846610 - How to activate ADS trace|https://service.sap.com/sap/support/notes/846610]
    [Note 944221 - Troubleshooting if problems occur in forms processing|https://service.sap.com/sap/support/notes/944221]
    Chintan

  • Payload structure not visible in Moni

    Hello All,
    One of the interface where we are calling RESTful webservice thru java code, when we calling java code from standalone the webservice working fine based on input parameters webservice sending response back, but the same one when I import in as Import Archive in PI, and test this scenario. I see success in moni, but  I do not see request-target structure payload. I see only request sender-payload structure in moni. 
    At this point I only testing request map for call the webservice , where I am getting this error.
    Any idea what is the cause of this? Network issue? but this java code working fine in same Network.
    Trace showing following information:
    <Trace level="1" type="T">Reading sender agreement</Trace>  
    <Trace level="1" type="T">Inbound validation by adapter does not take place</Trace> 
    <Trace level="1" type="T">Inbound validation by Integration Engine does not take place</Trace>
    Other question was , since this class file we imported into PI, how do I send the input parameters to this class file. As original sender was file, from CSV file we'll take input parameters and send those to this java code and pass it to webservice.
    Right now for testing  purpose i have hardcoded input values in Java code and trying to call this webservice, and I am using  sender side HTTP adapter to invoke this PI interface.
    One more questions was, since we are calling this webservice thru java mapping, what adapter should I use in receiver?
    Thanks,
    Gayatri.

    Hi Gayatri,
    Any idea what is the cause of this? Network issue? but this java code working fine in same Network.
    ans) Please include trace statements within java code to find out target xml created by the code.
    here are few articles/blogs on the issue . A very useful blog
    http://scn.sap.com/community/pi-and-soa-middleware/blog/2013/09/18/tracing-in-sap-pi-731-single-stack
    by  Kapila Epasinghe
    **************** - Handling and Tracing Runtime Exceptions in Java Mapping (SAP PI/XI)
    By Prasanna Krishna Mynam
    Other question was , since this class file we imported into PI, how do I send the input parameters to this class file.
    ans)  The input source XML should contain necessary values. In case you need to pass fixed values to the mapping you can look into this article parametrized java mapping
    http://help.sap.com/saphelp_nwpi71/helpdata/en/43/bc2fd4da1e1bbce10000000a1553f7/content.htm
    One more questions was, since we are calling this webservice thru java mapping, what adapter should I use in receiver?
    ans)  try to execute the java mapping code from your local system. In this case you do not require any adapter to communicate with web service right?. Apply the same principle for java mapping within PI server. Here also you do not need any receiver adapter. In fact the whole idea of using a java mapping was to avoid using a receiver adapter.
    Regards
    Anupam

  • Error processing request in sax parser  No 'action' attribute found in XML

    Hi All,
            I am doing a FILE to JDBC Scenario.  I just want to send a data from file to Sql Db table. For this I have written a stored procedure to insert the row in a table.
    This is the message mapping for FILE to JDBC ….
    Sender                                                                   Receiver
    *FILESENDER_MT  1..1    FILESENDER_DT     * SPRECEIVER_MT    1..1
        .NO                    1..1    xsd:string                    * Statement           1..1   string
        .Name                1..1    xsd:string                      *user_PROC       1..1                                                                               
    action            1..1required
                                                                                *No                                                                               
    isInput        1..1  string
                                                                                    type           1..1  string
                                                                                *Name
                                                                                    isInput        1..1  string
                                                                                    type           1..1  string 
    Mapped Values....
    Statement is mapped with <b>FILESENDER_MT</b>
    action attribute is mapped with "<b>EXECUTE</b>" Constant
    No is mapped with <b>NO</b>
    Name is mapped with <b>Name</b>
    for both isInput is mapped with <b>TRUE</b>
    for both type is mapped with <b>CHAR</b>
    Here is the my stored procedure.....
    CREATE PROCEDURE [dbo].[user_PROC]
    @NO char(10),  @Name char(10)  AS
    insert into FILE2JDBC values('a','ab')
    GO
    when i run this stored procedure in Sql directly it was executed successfully....
    I have checked In SXMB_MONI status is showing green...
    xml messages from SXMB_MONI ....
    this is the message from payloads of Inbound Message
    <PRE> <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:FILESENDER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
      <NO>111</NO>
      <NAME>murthy</NAME>
      </ns0:FILESENDER_MT></PRE>
    this is the message from payloads of Request Message Mapping
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    - <user_PROC>
      <action>EXECUTE</action>
    - <NO>
      <isInput>TRUE</isInput>
      <type>CHAR</type>
      </NO>
    - <Name>
      <isInput>TRUE</isInput>
      <type>CHAR</type>
      </Name>
      </user_PROC>
      </Statement>
      </ns0:SPRECEIVER_MT>
    this is the error showing in runtime workbench>component monitoring->communication channel monitoring-->Receiver Communication Channel....
    <b>Error while parsing or executing XML-SQL document: Error processing request in sax parser: No 'action' attribute found in XML document (attribute "action" missing or wrong XML structure)</b>
    Can any body tell me whether the problem is in Mapping or in Data Type Structure..
    Please resolve this issue....
    Thanks in Advance,
    Murthy.

    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    <b>- <user_PROC>
    <action>EXECUTE</action></b>
    - <NO>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </NO>
    - <Name>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </Name>
    </user_PROC>
    </Statement>
    </ns0:SPRECEIVER_MT>
    The Action should be a Attribute of Element user_Proc as,
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:SPRECEIVER_MT xmlns:ns0="http://www.prospectadelhi.com/DELHI_FILE2JDBC">
    - <Statement>
    <b>- <user_PROC action="Execute"></b>- <NO>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </NO>
    - <Name>
    <isInput>TRUE</isInput>
    <type>CHAR</type>
    </Name>
    </user_PROC>
    </Statement>
    </ns0:SPRECEIVER_MT>
    Likewise isInput and Type should be Attributes and not Elements .
    Regards
    Bhavesh

  • How to get Payload of SOAP Message in Advance Adapter Engine

    HI All,
    I am wondering if anybody can tell me how to view the Payload of SOAP Sender and Receiver Message in Advance Adapter Engine?
    Does Anybody know how to check mapping payload in Advance Adapter Engine because in ABAP you can see the mapping payload under Request Message Mapping but when you use AAE you can't see the Request Message Mapping Payload.
    I have a SOAP to RFC Scenario in which I can't see the SOAP Sender and RFC Receiver Mapping Payload.
    When I am sending incorrect data to an RFC I am getting this error which is very strange and new to me.
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: Unable to split a synchronous message
    Any comments would be much appreciated.
    Thanks,
    Iqbal

    HI All,
    I have managed to find Michal's Blog which is talking about getting the mapping payload but unfortunately I don't know how to create Adapter Module so I am wondering if somebody can please provide me EAR file so that I will request the Basis guys to deploy the code and hopefully this will solve my query.
    Michal's Blog
    As you all probably know while using local Advanced Adapter Engine (AAE) processing in SAP PI 7.1 the message is logged only once (during processing by sender adapter). This is great in terms of performance but what if we need to check the mapping output? Is there a way do do it somehow? It turns out that we don't have such an option in standard yet. Is there any alternative then?
    It turns out there is - a simplest adapter module there is...
    Local AAE works in such a way that from the sender adapter it executes the receiver adapter so in the outbound message to PI processing you can see the adapter info logs of the receiver adapter and this is what we can use. The idea is to add an adapter module to the receiver adapter which will put the content of the message into the audit log of PI message processing. We can do it by writing a few lines of code:
    PI/XI: target message logging with local AAE not possible ? not anymore...
    *Please upload the file in any free site or <REMOVED BY MODERATOR>
    <READ RULES OF ENGAGEMENT>
    Thanks,
    Edited by: Prateek Raj Srivastava on Jan 6, 2012 9:10 PM

  • JDBC Receiver channel is not showing any payloads

    Hello Experts,
    My interface is ABAP PROXY to JDBC i am facing a strange issue in ECC moni payload is succesful in PI moni also Payload is black colour flag but my Receiver JDBC channel is not showing any thing but it is in green colour (it is not showing neither succes nor error messages logs are empty).Sender chaneels are working only problem with receiver JDBC channels
    In DEV and PROD it it is working in QUAL it is showing this problem.I take the restart of QUAL server still it is behaving like that
    Please throw some light on the issue any help is higlhly apprecaited.
    Regards
    Praveen

    Hi,
    first check in pipe line step call technical routing , mapping execution generated JDBC receiver message pay load or not.
    if it is not generated then check mapping , if is is generated then restart the channel and check what communication channel name you given in receiver agreement.
    monitor the same channel, if all JDBC receiver channels have same behavior then restart the JDBC adapter service in NWA.
    rEGARDS,
    rAJ

  • How to set the payload in XSJS

    Hi ,
    I am trying to call this REST API with some URL params and I need to set payload along with this.But I'm not able to set it.
    Where am I going wrong?
    -A XSJS Application which is calling a REST API
    var clientReport = new $.net.http.Client();
    var payload=[];
    payload.rpt=rpt;
    $.request.setBody(payload)
    clientReport.request($.net.http.POST, "http://XXXXXXXX:8080/Applicatin/?ID="+ID);
    var responseReport=clientReport.getResponse();
    Thank you .

    Arpitha,
    I think you are trying $.request.setBody() method. Do not use that. It is a read only object containing the we request received from external world via http.
    create a new request object like
    var request = new $.web.WebRequest($.net.http.POST,"/Employee" ); //employee being your entity
    request.headers.set("x-csrf-token",CSRF);
    request.headers.set("Content-Type","application/json"); 
    then do request.setBody(JSON data);
    regards
    Sree

  • Unable to view payload in HTTP to RFC Scenario

    Hi,
    I have done HTTP to RFC Scenario. It's working fine. I know that for synchronous message the payload will be deleted (for save memory) after execution. But i want to see the payload of  request and response messages. I am unable to. Please suggest any way to see payload.
    For helpful answer i will rewards points too.
    Regards
    Bhupal Reddy

    Hi,
    Refer this blog by michal.
    /people/michal.krawczyk2/blog/2005/05/10/xi-i-cannot-see-some-of-my-messages-in-the-sxmbmoni
    Regards,
    sudheer.

  • Content-Type for POST request

    Hi all again,
    I am setting content-type in the header to "text/xml"  yet when I do a POST sap sends as content-type
    "application/x-www-form-urlencoded". Is there something else I need to set to make it post with text/xml ?
      cl_http_client=>create_by_url( EXPORTING url = url
                                               ssl_id = 'ANONYM'
                                     IMPORTING client = http_client ).
    * create HTTP client object
    *  cl_http_client=>create_by_destination( EXPORTING DESTINATION = 'ZTOLLREQUEST'
    *                                 IMPORTING client = http_client ).
                                                                                    * Set HTTP headers
      http_client->request->set_header_field( name = '~request_method'
      value = 'POST' ).
      http_client->request->set_header_field( name = 'Content-Type'
      value = 'text/xml' ).
    *  http_client->request->set_header_field( name = 'Authorization'
    *  value = auth_string ).
    *  http_client->request->set_header_field( name = 'sap-password'
    *  value = 'ymous' ).
                                                                                    * Set payload
      http_client->request->set_cdata( xml_string ).
                                                                                    * send and receive
      CALL METHOD http_client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
    regards
    Allan

    i havent tried this (setting content type) when using create by url . may be try just the create method and then set the remaining part of the url as headers ~request_uri parameter. something like below.
    call method cl_http_client=>create
      exporting
        host          = 'www.webservicex.net'
        service       = '80'
        scheme        = '1'
        proxy_host    =  wf_proxy
        proxy_service =  wf_port
      importing
        client        = http_client.
    http_client->propertytype_logon_popup = http_client->co_disabled.
    wf_user = user .
    wf_password = password .
    call method http_client->authenticate
      exporting
        proxy_authentication = 'X'
        username             = wf_user
        password             = wf_password.
    call method http_client->request->set_header_field
      exporting
        name  = '~request_method'
        value = 'POST'.
    call method http_client->request->set_header_field
      exporting
        name  = '~server_protocol'
        value = 'HTTP/1.1'.
    call method http_client->request->set_header_field
      exporting
        name  = '~request_uri'
        value = '/airport.asmx'.
    Regards
    Raja

  • Problems with sending requests

    I cannot send requests from my N900 such as  *102# or *111*1#
    after typing in dialing mode and tryin to call I see only WRONG NUMBER and its not operator answer but from phone. Is there any different way to make such requests?

    c'mon!! not even a little search.. there are LOADS of theads talking about this!
    Short answer.. the phone doesn't support these codes..
    It will when the next firmware is released (PR1.2) and when that will be no one knows.. however there is some news that the Hong Kong release of the N900 next week will introduce a variant of the N900 with PR1.2.. This might mean the rest of the world gets PR1.2 soon too..
    In the mean time you can look for USSD-pad which will let you enter these codes, if you can't wait for the official update

  • Service callout guidance for Payload configuration..

    To all,
    Scenario:
    1. My proxy service calls Business service-A.
    2. Business service-A returns response to proxy service.
    3. Using this response + some original request fields the proxy service calls Service-B.
    4. Service-B returns the response to proxy service. Proxy service then returns this response to Client.
    I am using Proxy service--->Service callout to Business service-A and then after receiving the response from A-, the proxy service--->route to Business service-B as way to achieve above.
    The problem:
    While doing service call out to Business service-A, OSB prompts to enter following fields for "*configure SOAP Body*":
    SOAP Request Body:
    SOAP Response Body:
    SOAP Request Header:
    SOAP Response Header:
    What should I enter in this?+
    Also, what is the difference between *"Configure SOAP body"* and *"Configure Payload Parameters"*?*+
    Fields in *"Configure Payload Parameters"*:
    Request Parameters:
    SiebelMessage:
    StatusObject:
    Response Parameters:
    SiebelMessage:
    SOAP Request Header:
    SOAP Response Header:
    The Business service-A is a Siebel service.
    When i get response back, where should i store it? and how can i map the response from back end Siebel service to response desired in my schema format?
    Please help! I am a newbie here.
    Thanks and Regards,
    Swapnil Kharwadkar.
    Edited by: Swapnil Kharwadkar on May 27, 2010 1:44 AM

    Hey all,
    I have solved problem with help of one my friend..Actually its possible through routing the service. I agree its a different approach than service callout but it acts as a quick fix.
    The key issue is to map :
    1. Request in format of Proxy service schema to Request of Business service (Legacy service-In this case Siebel)
    2. Response in format of Proxy service schema to Response of Business service (Legacy service-In this case Siebel)
    This is possible using XQuery transformation.
    Steps to achieve this::
    1. Create a XQuery by mapping proxy service schema and business service schema.
    2. Now Create message flow as following: Proxy service-->Pipeline Pair-->Stage1-->Route to business service.
    3. Now in stage1, choose Add an action-->Message processing-->Replace.
    4. In replace, do this - Replace ./* in variable body by Xquery which you created in 1.
    This will work smoothly.
    If any problems, let me know. If any insights on above, please comment.
    Will update this thread whenever I get info about service callout working. Meanwhile anybody searching for quick fix, can use this.
    Thanks and Regards,
    Swapnil Kharwadkar.

  • Error while installing flash builder 4.5 for php

    Hello to all.
    Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend installed....
    can someone please help me? I just wanna use this freaking tool!!! =D
    Here is my LOG of installation:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0: 1 (0,1)
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0: 1 (0,1)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 2 (3,1)
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0: 3 (0,1)
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0: 3 (0,1)
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0: 3 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 3 (0,1)
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0: 3 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 3 (0,1)
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0: 4 (0,0)
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0: 4 (0,0)
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0: 5 (7,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: C:\Program Files (x86)\FLASHBUILDER
    Setting property "driverAdobeCode" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Setting property "mediaSignature" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Found payload actions:
    Deciding what installer mode to use...
    {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 not installed
    {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is: false
    [    4888] Mon Jun 20 08:30:05 2011  WARN
    DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    [    4888] Mon Jun 20 08:30:05 2011  INFO
    Value returned on lookup of payload: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is: true
    Action string for {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0  is remove
    Selection of payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 is: false
    Action string for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0 is: true
    Action string for {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 is: true
    Action string for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0 is: true
    Action string for {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0  is none
    Value returned on lookup of payload: {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0 is: true
    Action string for {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0  is none
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: true
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0 is: true
    Action string for {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 is: true
    Action string for {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\FLASHBUILDER
    [    4888] Mon Jun 20 08:30:06 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    ::START TIMER:: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}]
    [    3776] Mon Jun 20 08:30:06 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Effective AdobeCode for: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} is {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    [    3776] Mon Jun 20 08:30:07 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}] took 1004.34 milliseconds (1.00434 seconds) DTR = 2732.15 KBPS (2.66812 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    The csu inventory was not updated for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [    6088] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1006.47 milliseconds (1.00647 seconds) DTR = 5250.03 KBPS (5.12699 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:09 2011  INFO
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Calling the custom action code for pre-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066}
    ::START TIMER:: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}]
    [    1064] Mon Jun 20 08:30:09 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}] took 1014.44 milliseconds (1.01444 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [    4696] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1009.85 milliseconds (1.00985 seconds) DTR = 6947.54 KBPS (6.78471 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Calling the custom action code for pre-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    ::START TIMER:: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}]
    [    2788] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Effective AdobeCode for: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} is {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}] took 1019.34 milliseconds (1.01934 seconds) DTR = 18765.1 KBPS (18.3253 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0
    Calling the custom action code for pre-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378}
    ::START TIMER:: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}]
    [    4788] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}] took 1006.47 milliseconds (1.00647 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0
    Calling the custom action code for pre-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A}
    ::START TIMER:: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}]
    [     664] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}] took 1009.34 milliseconds (1.00934 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0
    Calling the custom action code for pre-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    ::START TIMER:: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}]
    [    5256] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Effective AdobeCode for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} is {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    [    5256] Mon Jun 20 08:30:15 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}] took 1014.14 milliseconds (1.01414 seconds) DTR = 15709.9 KBPS (15.3417 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:16 2011  INFO
    Successfully updated the csu inventory for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0
    Calling the custom action code for pre-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    ::START TIMER:: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}]
    [     304] Mon Jun 20 08:30:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}] took 1012.73 milliseconds (1.01273 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC}
    ::START TIMER:: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}]
    [    3496] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}] took 1004.29 milliseconds (1.00429 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    2844] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}] took 1019.87 milliseconds (1.01987 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    4888] Mon Jun 20 08:30:21 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 11 components:
    - Microsoft_VC90_CRT_x86
    - Adobe Flash Builder
    - Adobe Flash Player 10 Plugin
    - Adobe Flash Player 10 ActiveX
    - Microsoft_VC90_MFC_x86
    - AdobeTypeSupport CS5
    - AdobeHelp
    - Microsoft_VC90_MFCLOC_x86
    - AdobeCMaps CS5
    - Adobe Player for Embedding 3.2
    - Suite Shared Configuration CS5.5
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16246.8 milliseconds (16.2468 seconds) DTR = 3085.89 KBPS (3.01357 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 1 warning(s)
    WARNING: DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • New Adobe CS6 CSXS infrastructure Update

    Today I saw a new one being inatslled did it fix any of the reported CS6 bugs.  If so which ones?
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.0.98.0
    Win OS version: 5.1.3.0  Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 673.619 milliseconds (0.673619 seconds) DTR = 23.7523 KBPS (0.0231956 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Documents and Settings\Mr Mouse\Local Settings\Temp\Adobe\AAMUpdater\AdobeCSXSInfrastructureCS6-3\3.0.2\Setup
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: C:\Documents and Settings\Mr Mouse\Local Settings\Temp\Adobe\AAMUpdater\AdobeCSXSInfrastructureCS6-3\3.0.2\Setup\payloads\AdobeCSX SInfrastructure3-mul-250612101613\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.0.98.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [   12176] Mon Jul 02 13:43:00 2012  INFO
    Setting ignore refcount for '{98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0' getting upgraded by '{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0'
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0: 0 (0,0)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0 is: true
    Action string for {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0  is install
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Common Files\Adobe\CS6ServiceManager
    [   12176] Mon Jul 02 13:43:11 2012  INFO
    ::START TIMER:: [System check :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}]
    In UninstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}] took 52.2695 milliseconds (0.0522695 seconds)
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 7.99347 milliseconds (0.00799347 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0:  with operation remove
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0:  with operation remove
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [   12176] Mon Jul 02 13:43:12 2012  INFO
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 2.78331 milliseconds (0.00278331 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0:  with operation remove
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0:  with operation remove
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0
    ::START TIMER:: [Pre payload :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}]
    In PrePayloadUninstallProc
    [   12176] Mon Jul 02 13:43:17 2012  INFO
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}] took 5007.27 milliseconds (5.00727 seconds)
    ::START TIMER:: [Payload Operation :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}]
    [    4444] Mon Jul 02 13:43:17 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {98D9F7CA-641D-4832-92B8-E846FE8AFB50}
    Effective AdobeCode for: {98D9F7CA-641D-4832-92B8-E846FE8AFB50} is {98D9F7CA-641D-4832-92B8-E846FE8AFB50}
    Uninstalling payload
    Payload {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    CustomizedPatch property not found in database
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{98D9F7CA-641D-4832-92B8-E846FE8AFB50}.db
    [    4444] Mon Jul 02 13:43:19 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{98D9F7CA-641D-4832-92B8-E846FE8AFB50}.db
    Physical payload uninstall result:0
    [   12176] Mon Jul 02 13:43:19 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}] took 2143.22 milliseconds (2.14322 seconds) DTR = 108.248 KBPS (0.105711 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0 return values 0:0
    Calling the custom action code for post-remove for payload {98D9F7CA-641D-4832-92B8-E846FE8AFB50} Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul 3.0.1.0
    ::START TIMER:: [Post payload :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}]
    In PostPayloadUninstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{98D9F7CA-641D-4832-92B8-E846FE8AFB50}] took 1.4351 milliseconds (0.0014351 seconds)
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    [   12176] Mon Jul 02 13:43:24 2012  INFO
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 5017.5 milliseconds (5.0175 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [   11360] Mon Jul 02 13:43:24 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Extracting assets...
    Extracting assets complete. Number assets: 2
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Documents and Settings\Mr Mouse\Local Settings\Temp\Adobe\AAMUpdater\AdobeCSXSInfrastructureCS6-3\3.0.2\Setup\payloads\AdobeCSX SInfrastructure3-mul-250612101613\Install.db
    [   11360] Mon Jul 02 13:43:25 2012  INFO
    Completing installation for payload at C:\Documents and Settings\Mr Mouse\Local Settings\Temp\Adobe\AAMUpdater\AdobeCSXSInfrastructureCS6-3\3.0.2\Setup\payloads\AdobeCSX SInfrastructure3-mul-250612101613\Install.db
    [   11360] Mon Jul 02 13:43:26 2012  INFO
    UninstallDBPath=C:\Program Files\Common Files\Adobe\Installers\uninstall\{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}.db
    [   12176] Mon Jul 02 13:43:26 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1613.7 milliseconds (1.6137 seconds) DTR = 151.206 KBPS (0.147662 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 return values 0:0
    Calling the custom action code for post-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Post payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PostPayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1.50913 milliseconds (0.00150913 seconds)
    No operation.  We're done:
    [   12176] Mon Jul 02 13:43:28 2012  INFO
    Successfully installed 1 component:
    - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul
    Total components repaired: 0
    Successfully removed 1 component:
    - Adobe CSXS Infrastructure CS6_3.0.1_AdobeCSXSInfrastructure3-mul
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1.61305 milliseconds (0.00161305 seconds)
    :: END TIMER :: [Total Timer] took 30494.1 milliseconds (30.4941 seconds) DTR = 4.59105 KBPS (0.00448345 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 0 warning(s)
    [   12176] Mon Jul 02 13:43:29 2012  INFO
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Since it's 3.0.2, perhaps we should assume it's fixing bugs introduced by the recent CSXS Infrastructure 3.0.1 update? 
    Without knowing what it means, I might read "CSXS" as "Creative Suite Excess" myself.    (It's "Extensibility Suite" in reality)
    In all seriousness, is it me or does it seem to be spelled a bit sloppily (no space between "Infrastructure" and "CS6")?
    I neglected to notice or press the About button...  Did that describe what this is or does, or why it's being updated?  If not, isn't it kind of embarrassing for Adobe, considering the blog entry apologizing for the update LAST TIME that didn't describe what it is or why it's being updated?
    Something about me hates sloppy work.
    -Noel

  • How to solve Error DW030 during CS6 installation (Mavericks)?

    This computer (running Mac OS 10.10.1) needs a way to install Acrobat from the CS6 DVD.
    The CS6 installation went well except for Acrobat, where it gave error DW030. Unfortunately, following the instructions to reboot in Safe Mode deleted the detailed error message.
    Running the installer again reports this:
    We've encountered the following issues
    Installer failed to initialize. Please download Adobe Support Advisor to detect the problem.
    Too bad! That page says:
    The Adobe Support Advisor has been discontinued
    Is there any way to recover from this? Is it safe to delete the whole thing and try again?

    That excerpt was the best error in the log. Following is the entire section of the log that contains the error. The content of the log that precedes this is a long inventory of those adobe products installed ("Updating media sources"), but nothing earlier than this contained the word "error" until the section in the earlier posting. To make the log easier to see, I have highlighted all the words with "error".
    BEGIN InstallOperationsQueue Ordered operations
      {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0:  with operation repair
      {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0:  with operation install
      {D8C642B6-A719-4234-8039-2654ED436D2A} CS6 Design and Web Premium 6.0.0.0:  with operation repair
      {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-repair for payload {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0
    ::START TIMER:: [Payload Operation :{C346BBCF-A687-4500-BB19-EE9C2D6FF284}]
    Initializing the INSTALLDIR with PDB data for payload {C346BBCF-A687-4500-BB19-EE9C2D6FF284}
    Located the INSTALLDIR for payload '{C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0' : '/Library/Application Support/Adobe/ssc'
    [       2] Mon Dec 29 17:36:09 2014  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {D8C642B6-A719-4234-8039-2654ED436D2A} modify request for AdobeCode: {D8C642B6-A719-4234-8039-2654ED436D2A}
    Effective AdobeCode for: {D8C642B6-A719-4234-8039-2654ED436D2A} is {D8C642B6-A719-4234-8039-2654ED436D2A}
    Session includes local copy of payload for repair source
    Repair payload source package: /Volumes/CS6 DesWebPrm 1/Adobe CS6 Design and Web Premium/payloads/AdobeDesignWebPremium6-mul/AdobeDesignWebPremium6-mul.dmg
    Payload {D8C642B6-A719-4234-8039-2654ED436D2A} CS6 Design and Web Premium 6.0.0.0: Calling ARKEngine from path /Users/eitzmann/Applications/Adobe/OOBE/PDApp/DECore/DE6/resources
    [       2] Mon Dec 29 17:36:14 2014  INFO
    Beginning installation for payload at /private/tmp/.tempdirgacl32AL/Install.db
    Evaluating condition# 1(Seq 3)
    Condition failed(Seq 3)
    Evaluating condition# 1(Seq 4)
    Condition failed(Seq 4)
    Completing installation for payload at /private/tmp/.tempdirgacl32AL/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{D8C642B6-A719-4234-8039-2654ED436D2A}.db
    Physical payload repair result:0
    [       0] Mon Dec 29 17:36:14 2014  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{D8C642B6-A719-4234-8039-2654ED436D2A}] took 2328 milliseconds (2.328 seconds) DTR = 134.021 KBPS (0.13088 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {D8C642B6-A719-4234-8039-2654ED436D2A} CS6 Design and Web Premium 6.0.0.0, value of local var is -1
    Calling the custom action code for post-repair for payload {D8C642B6-A719-4234-8039-2654ED436D2A} CS6 Design and Web Premium 6.0.0.0
    ::START TIMER:: [Post payload :{D8C642B6-A719-4234-8039-2654ED436D2A}]
    In PostPayloadReinstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{D8C642B6-A719-4234-8039-2654ED436D2A}] took 0 milliseconds (0 seconds)
    Calling the custom action code for pre-install for payload {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0
    ::START TIMER:: [Pre payload :{E1C48031-9366-427F-AC04-535CEDAAD995}]
    Custom action return code: 65535
    :: END TIMER :: [Pre payload :{E1C48031-9366-427F-AC04-535CEDAAD995}] took 0 milliseconds (0 seconds)
    [       0] Mon Dec 29 17:36:14 2014 ERROR
    DW030: Custom Action for payload {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0 returned error. Failing this payload.
    [       0] Mon Dec 29 17:36:18 2014  INFO
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 6075927KB
    [       0] Mon Dec 29 17:36:20 2014  INFO
    Total components installed: 0
    Successfully repaired 2 components:
    - Suite Shared Configuration CS6
    - CS6 Design and Web Premium
    Total components removed: 0
    [       0] Mon Dec 29 17:36:20 2014 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Acrobat Professional: Install failed
    DW050:  - Acrobat X Pro : Install failed
    [       0] Mon Dec 29 17:36:20 2014  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{D8C642B6-A719-4234-8039-2654ED436D2A}]
    In ReinstallSessionCloseProc
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Successfully retreived the mediaSignature: {D8C642B6-A719-4234-8039-2654ED436D2A}
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Successfully retreived the installLanguage: en_US
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Getting payloads from pdb.db
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Opened PCD session
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Retreived the path to Application xml: /Library/Application Support/Adobe/Adobe Creative Suite 6 Design and Web Premium/AMT/application.xml
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Update to PCF client is successful!
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :Succesfully retrieved the LEID of the Driver Payload
    CS6 Suites Custom hook: Adobe Flash Builder 4.6 :iterating through the payload_data table to retreive the matching payload family, name and version for Adobe Flash Builder 4.6
    CS6 Suites Custom hook: Successfully Updated PCFClientFile and cache.db for Adobe Flash Builder 4.6
    CS6 Suites Custom hook: Acrobat X Pro :
    CS6 Suites Custom hook: Acrobat X Pro :Successfully retreived the mediaSignature: {D8C642B6-A719-4234-8039-2654ED436D2A}
    CS6 Suites Custom hook: Acrobat X Pro :Successfully retreived the installLanguage: en_US
    CS6 Suites Custom hook: Acrobat X Pro :Getting payloads from pdb.db
    CS6 Suites Custom hook: Acrobat X Pro :Opened PCD session
    CS6 Suites Custom hook: Acrobat X Pro :Retreived the path to Application xml: /Library/Application Support/Adobe/Adobe Creative Suite 6 Design and Web Premium/AMT/application.xml
    CS6 Suites Custom hook: Acrobat X Pro :Update to PCF client is successful!
    CS6 Suites Custom hook: Acrobat X Pro :Succesfully retrieved the LEID of the Driver Payload
    CS6 Suites Custom hook: Acrobat X Pro :iterating through the payload_data table to retreive the matching payload family, name and version for Acrobat X Pro
    CS6 Suites Custom hook: Successfully Updated PCFClientFile and cache.db for Acrobat Professional 10.0
    Custom action return code: 0
    :: END TIMER :: [Post session :{D8C642B6-A719-4234-8039-2654ED436D2A}] took 15 milliseconds (0.015 seconds) DTR = 266.667 KBPS (0.260417 MBPS)
    :: END TIMER :: [Total Timer] took 22923 milliseconds (22.923 seconds) DTR = 98.0674 KBPS (0.095769 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0 -----------
    ERROR: DW030: Custom Action for payload {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0 returned error. Failing this payload.
    ----------- Payload: {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0 -----------
    ERROR: DW030: Custom Action for payload {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0 returned error. Failing this payload.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Acrobat Professional: Install failed
    ERROR: DW050:  - Acrobat X Pro : Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Mon Dec 29 17:36:21 2014  INFO
    Exit Code: 6 - Silent workflow completed with errors.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW030, DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • CS6 Update Errors

    When attempting to update, I receive these errors. I have updated once before for CS6 without an errors. This was the only information present in the error log provided by the Adobe Application Manager.
    Adobe Extension Manager CS6 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208
    Flash Pro CS6 Help Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208
    Photoshop Camera Raw 6.7 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208
    Photoshop Camera Raw 7.1
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I216
    Adobe Media Encoder CS6 6.0.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208
    Adobe CSXS InfrastructureCS6
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208
    DPS Desktop Tools CS6 2.01.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I208

    hello,
    I have installation errors too with CS6, but the solution given here doesn't match too my problem 
    on udating the error given is:
    Adobe CSXS InfrastructureCS6
    Echec de l’installation. Code d’erreur : U44M1P7
    and here is what my Adobe CSXS Infrastructure CS6 3.0.2 07-30-2012.log file says :
    thanks in advance for any solution.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.5.0
    OSX version: 10.7.4 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 35 milliseconds (0.035 seconds) DTR = 800 KBPS (0.78125 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    [       0] Mon Jul 30 09:55:06 2012 DEBUG
    InstallerSession.CreatePayloadSession: Checking for unsupported payloads
    [       0] Mon Jul 30 09:55:06 2012  INFO
    Supported RIBS version range: [0.0.66.0,6.2.5.0]
    [       0] Mon Jul 30 09:55:06 2012 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking session payloads ______
    [       0] Mon Jul 30 09:55:06 2012  INFO
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Mon Jul 30 09:55:06 2012 DEBUG
    InstallerSession.CreatePayloadSession: Load PDB
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking incompatible payloads ______
    ______ GetIncompatiblePayloadBuildsInstalled ______
    ______ InstallerSession.CreatePayloadSession: Checking already installed payloads ______
    {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5
    {00EACB3C-A1CB-4574-809E-207DE4FA9EB6} Adobe Illustrator CS5.1_AdobeIllustrator15_1fr_FRLanguagePack
    {0175676F-8C92-49F2-9131-D0D6AD654B41} AdobeHelp
    {02EFB598-92AB-4DCB-A417-FE0FCBCD2266} AdobeColorVideoProfilesAE CS6
    {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6
    {0377892E-FCAC-46EC-AA70-C6AC8A86A81F} Dynamic Link Media Server
    {03FB981A-5170-11E0-A90E-3CEDE2AB3DC5} Adobe InDesign CS5.5 Application Base Files2
    {05327DD4-9A14-4C46-B3AF-B522A462DD91} Adobe After Effects CS6_AdobeAfterEffects11fr_FRLanguagePack
    {08EF22BC-43B2-4B4E-BA12-52B18F418F38} Adobe Photoshop CS5.1 Core
    {0A186736-9C62-48B2-B1DF-8A9C5CF7C997} Adobe Premiere Pro CS5.5 Support
    {0AA9D11A-227D-45AB-A5D5-6F5F6E81D5E3} Adobe Player for Embedding 3.1
    {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6
    {0CCF0458-5171-11E0-BC45-DC59E3AB3DC5} Adobe InDesign CS5.5 Application Base Files
    {0D96CFE6-376D-44B8-808A-16F3BEB73263} Adobe Media Encoder CS5.5
    {0D9E083D-1ABE-4B41-B04D-B79947317FF8} AdobeIdeaPluginCS6
    {0E0AA043-65AC-4A20-AAD6-9B4C7667309B} AdobeColorEU CS6
    {0ab76dc5-519f-4bd2-a57d-ebe820071854} Lightroom 4.1
    {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files
    {128cd5a7-6018-4360-b4c0-b0258b1a5a34} Adobe Story
    {134F1884-78F5-11E1-A794-DA815623D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-fr_FR
    {14688254-5CD1-11E1-8D70-4DBBF019A2FF} DPS Desktop Tools CS6
    {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels
    {1A1E5FF9-D0FD-42A3-8E18-E5E7E95E1AB4} DynamiclinkSupport
    {1D112866-AD23-43A5-A294-82586E41557F} Adobe Flash CS6_12.0.1_AdobeFlash12.0-fr_FRLanguagePack
    {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support
    {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3
    {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6
    {26FD0196-5B4C-4C57-8264-70D1B5398615} Adobe Muse
    {270C312D-7EC7-474C-BEB2-79CD398E02A3} HIL Help Search
    {29D6DE4A-F62B-4637-B101-5D022E54C4F5} Adobe Flash Builder
    {2C79B880-4D30-4572-91C7-FB6B6003DEF9} AIR for Apple iOS support (FB)_2.6.1_AIRforiOSFlashBuilder-mul
    {30FD541D-3C9D-41C4-B240-A994EE4E0231} Adobe Audition
    {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation
    {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files
    {328612EE-7A2A-11E1-BE46-DE62F24106A5} Adobe InDesign CS5.5 Application Language Files_7.5.3.333_AdobeInDesign7xAppLang-fr_FR
    {33ACD529-5CB3-4602-A7DC-26F38E61F4E1} Adobe Audition_AdobeAudition4fr_FRLanguagePack
    {3450d4c5-a82b-4428-a512-842ee1555a14} CSXS Story Extension
    {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6
    {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw
    {38229386-13B6-4494-B959-109733D88B18} Adobe Fireworks CS5.1_AdobeFireworks11.1.0fr_FRLanguagePack
    {39C9FB9C-7A84-11E1-B574-D095DF20721F} Adobe Fireworks CS6
    {3D46121C-A0E6-4259-B7E0-5127C218A096} Adobe SpeedGrade CS6
    {3EE734CB-F7AD-4691-9712-066E9FEC3E62} Adobe OnLocation CS5.1 Third Party Content
    {3F8CDCAF-04A6-4C83-977D-BB3527A6F58E} AdobeTouchAppPlugins_AdobeTouchAppPlugins-1.0-LangPack
    {3FA63389-0091-497A-8522-998E43648AEF} Adobe Player for Embedding 3.2
    {403C7EA0-43DF-4754-82A4-94B1EBD9EFA4} Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-fr_FR
    {4058E728-84D8-45CE-8E2D-5F35BD6659A1} Adobe Extension Manager CS5.5
    {419B81A0-6282-456C-9B1E-8DBABA0DE2DC} Adobe WinSoft Linguistics Plugin CS5.5
    {41BFF2C7-9F45-4CF3-A257-E80E14802157} Adobe Media Encoder CS5.5_5.5.1_AMECore5.5All
    {41C543D4-AC29-4B7E-B95D-D73B7EB2EFBB} CS6 Master Collection
    {42C0738D-8D50-45B7-BC51-4BC609133E3A} AdobeColorNA CS6
    {42CED1DA-1C36-45D2-88C0-C32DB6B82B49} Adobe Premiere Pro CS6
    {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6
    {45063C56-A2A2-4FD1-A56A-A964723EEE1E} AdobeColorCommonSetRGB
    {4603E0C5-6880-4A4F-BCF8-DF1F6AE0E317} AdobeColorPhotoshop CS5.5
    {46251F95-B2F8-484A-9B5B-8C0E5A43A202} Adobe Encore CS6
    {4758849A-8C03-4F90-A024-3D4C7A035B5A} AdobeMotionPicture CS6
    {47800F2E-7B74-407F-8CEE-2262C22BF5AD} Adobe Encore CS6_AdobeEncore6fr_FRLanguagePack
    {4817D846-700B-474E-A31B-80892B3E92E3} Adobe After Effects CS6
    {48623899-C152-457D-9B30-1F957332AC2F} AdobeColorPhotoshop CS6
    {48D97F53-D68B-4675-9A3B-2724BF727F99} Adobe Prelude CS6 Support
    {49E6D00F-3456-11E0-AE83-842B2B67A8CC} Adobe Device Central CS5.5
    {4A8546D0-CEDF-48C1-9BA1-DD5B4ADFC154} Adobe Mini Bridge CS5.1
    {4B1B3BF0-B3E4-477C-84BF-4FCB42D84445} Firefox Plugin CS5.1
    {4B204697-D302-42D9-94B4-8BDDE6DD359C} Adobe ReviewPanel CS5.5
    {4B4C871D-9C8A-4C8A-B92A-C37273D6CE7D} Adobe Fireworks CS5.1
    {4B51E596-6BB0-4244-9AB9-344AD5FA6726} AdobeMotionPicture CS5.5
    {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5
    {4C438AD2-34A0-471E-9F0B-07ADD23BA6A3} Adobe Audition_5.0.1_AdobeAudition5All
    {4E1B59A1-029E-4C16-BBB3-F10D40EBB6EE} Photoshop Camera Raw_6.7_AdobeCameraRaw6.0All
    {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6
    {4FAB339E-2132-434F-9376-9CD735E4C69C} Adobe Flash CS6
    {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0
    {50491591-A44F-429E-B7C8-87E03FECFD78} Adobe Flash Catalyst CS5.5
    {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6
    {51B4AB66-4AA7-11E0-A6A3-38A3F9D7AC32} Adobe Digital Publishing Application Language Files_AdobeDigitalPublishingAppLang-fr_FR
    {51ae1bd8-403f-4c20-9c2b-35453148bf1b} AdobeLightroom4CCMCore-mul
    {52028359-B2A6-4DED-8683-0814A5D28F6A} Adobe After Effects CS5.5_AdobeAfterEffects10.5fr_FRLanguagePack
    {5380FA54-518B-11E0-A016-10E9E2AB3DC5} Adobe InDesign CS5.5 Common Language Files_AdobeInDesign7xCommonLang-fr_FR
    {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer
    {53AE99B6-350B-4E3E-8D2A-AD11EA649A30} Adobe Photoshop CS5.1 French Language Pack_AdobePhotoshop12-fr_FR
    {54C48823-4A8F-4765-BA86-9B97E48F1E80} Adobe Encore CS6_6.0.0_AdobeEncore6AllTrial
    {54D89F03-8EED-4FF9-BCDF-3B2E11D448A6} AdobeColorCommonSetCMYK
    {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6
    {55EBED0D-4375-4E0A-951D-D2A79A0F2713} Adobe Dreamweaver CS5.5_11.5.3_AdobeDreamweaver11.5fr_FRLanguagePack
    {59EBB3D9-AA2A-4068-AB48-75ED6879B5F9} AIR for Apple iOS Support Wrapper
    {5C0FEBDA-5A0E-4FC8-91CB-229A4C1561E9} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll
    {5D2A85AB-7391-4EAC-AA61-D5D9C09E4F17} Adobe OnLocation CS5.1
    {606A0AC5-5F90-4379-81AE-11B44707E094} Adobe After Effects CS5.5 Third Party Content
    {6081EDE2-0AED-4175-B735-E4D374291147} Adobe Muse
    {62ED7AE1-01FA-4066-97B7-1CD93A68DD0D} Adobe Hunspell Linguistics Plugin CS5.5
    {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files
    {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5
    {6AFE0576-7A2C-11E1-88D2-74AAF24106A5} Adobe InDesign CS5.5 Common Base Files_7.5.3.333_AdobeInDesign7xCommonBase-mul
    {6BC81374-1E33-4495-93E2-DD2B10D358EE} AIR for APPLE IOS Support (FP)
    {6DE11235-8A5E-47A9-B61A-0DD2ECBBD237} Adobe Flash CS6_AdobeFlash12.0-fr_FRLanguagePack
    {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5
    {7063F411-F112-433A-999D-BCB03DFAEDD8} Adobe Edge Preview
    {71BC8278-815D-4F8C-8FA5-C6F782C73892} Adobe CSXS Infrastructure CS5.5
    {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} Adobe Photoshop CS6 Driver
    {75DDF58F-A1FB-454A-852E-22DAB15D1A30} Adobe Prelude CS6_1.0.1_AdobePrelude1AllTrial
    {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1
    {78E38D75-4D92-4F6E-B631-17A436BED680} AdobeColorVideoProfilesCS CS6
    {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2
    {7CAD45EF-24AD-4281-9236-7F8DDB0B9538} Adobe After Effects CS5.5 Support
    {7CF76BDA-73EA-4C46-A59D-FC3142D83E65} Adobe OnLocation CS5.1 Third Party Content Wrapper
    {7D676EF8-BB79-4741-B799-36F3F1F8DCCB} AdobeColorEU CS5.5
    {808D880A-D2C6-484E-89C1-A7801F1AC978} Adobe Encore CS5.1_AdobeEncore5.1fr_FRLanguagePack
    {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6
    {83478D6E-4AA8-11E0-A479-24B1F9D7AC32} Adobe Content Viewer
    {8363F776-788B-11E1-AC70-98A8F80D1229} Adobe Dreamweaver CS6_AdobeDreamweaver12fr_FRLanguagePack
    {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel
    {848BF4CC-7A2B-11E1-8A90-3F8CF24106A5} Adobe InDesign CS5.5 Application Base Files_7.5.3.333_AdobeInDesign7xAppBase-mul
    {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5
    {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606} Adobe Dreamweaver Widget Browser
    {8ACD4814-788B-11E1-AC70-A860A781E0D9} Adobe Dreamweaver CS6
    {8DDC18CA-78F2-11E1-B981-E8CD5723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_FR
    {8EDF2712-3B35-484B-9AD2-A3F7214A7E3A} Adobe Flash CS6_12.0.1_AdobeFlash12.0-mul
    {90BBACEC-DA81-4C9D-B575-1BF7E4175473} Flash Builder
    {91193D4B-25FC-434B-A403-528B59E40EA1} Adobe Contribute CS5.1_AdobeContribute6.1fr_FRLanguagePack
    {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core
    {95D19FC8-0642-4087-9843-7243696E7207} Adobe Photoshop CS6 French Language Pack_AdobePhotoshop13-fr_FR
    {9693BFDD-DD82-40B1-A880-1BF009FAEAFC} Adobe SpeedGrade CS6_AdobeSpeedGrade6.0fr_FRLanguagePack
    {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6
    {98970962-1D70-43D4-B268-EDF57E451BA9} Adobe After Effects CS6 Support
    {99BDA97A-4AA8-11E0-9E8D-32B2F9D7AC32} Digital Publishing
    {9B4F8AA7-DDFA-4A0F-A36C-D0F66CCD66F7} Adobe Dreamweaver CS5.5
    {9BA136BE-0077-41E1-AD56-56AB5D4A1A67} Adobe ExtendScript Toolkit CS5.5
    {9D0088AD-BBB1-470B-B7B8-520EDEFAE5F3} Adobe Flash Builder 4.5
    {9FBC5BF9-5019-49D6-A1B3-6BB0E2A1FA54} Pixel Bender Toolkit
    {9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All
    {A04E70DF-CF2C-45FE-AA69-3267F28849D8} Adobe Flash Builder 4.5_4.5.1_AdobeFlashBuilder-mul
    {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6
    {A1181890-9FA4-11DF-A25D-A35DF04EC7B1} Adobe Toolhints CS5.5
    {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5
    {A516708E-EC03-40F5-B82E-0851A44B3780} Adobe Illustrator CS5.1
    {A80C015C-1939-42A5-AD2F-E76C7F194505} AdobeColorJA CS5.5
    {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6
    {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp
    {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core
    {AC003BC0-704F-4F02-A72E-AC8B7044DE24} AdobeOutputModule
    {AC76BA86-1033-F400-7760-000000000005} Acrobat X Pro
    {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6
    {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc
    {B62DD919-22B1-4AB8-A930-BC4540A1E8B6} Adobe Premiere Pro CS6 Family
    {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support
    {B7091600-995D-44EC-9B67-0E2025FDA600} AIR for APPLE IOS Support Wrapper
    {B7CD6FCB-0BCF-47C7-B770-D1E0772F4417} Adobe Premiere Pro CS5.5_AdobePremierePro5.5fr_FRLanguagePack
    {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6
    {BA952839-8055-4F36-A149-32520F40E7F2} Adobe Media Encoder CS6_6.0.1_AMECore6All
    {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe Toolhints CS6
    {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5
    {BB5AB971-EC87-4563-B070-4396AFE93414} Acrobat Professional
    {BC1DB65C-BD47-4C52-8C9C-40FDC52B646A} Adobe Premiere Pro CS5.5_5.5.2_AdobePremierePro5.5AllTrial
    {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5
    {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC} Adobe Flash CS6 Driver
    {BD6EEC48-4A2E-4B19-B36E-C3A94A97C99E} Adobe Contribute CS5.1
    {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5
    {BD9938F0-B9D1-4270-8A14-6C73BD2476D5} Adobe After Effects CS6_11.0.1_AdobeAfterEffects11AllTrial
    {BF8B73C5-60DC-426E-8413-CF77CA09BA1F} AdobeTouchAppPlugins
    {C10EDEAE-7A89-11E1-86E8-E44E18F83D6B} Adobe Fireworks CS6_AdobeFireworks12fr_FRLanguagePack
    {C1302004-7A3C-467A-80AC-4D0C9F6982C1} Adobe After Effects CS5.5 Presets
    {C1D94D7E-15D4-4AAE-83CA-97D0DAA4A361} Adobe Prelude CS6_AdobePrelude1fr_FRLanguagePack
    {C2F8BD34-1692-40F9-BA1B-1CFB2B5FED3A} Adobe After Effects CS5.5 Third Party Content Wrapper
    {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6
    {C3959ACE-D7DF-418A-A480-7DE003C7816F} Adobe SpeedGrade CS6_6.0.1_AdobeSpeedGrade6.0AllTrial
    {C5CA53A2-E722-4D76-B5AC-71522CC48AB3} AmericanEnglishSpeechAnalysisModels
    {C68D858B-9A0A-4294-9091-65DC1CD5D0FE} Adobe Illustrator CS6 Core_AdobeIllustrator16fr_FRLanguagePack
    {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6
    {C7B84D34-0C2F-47F5-BEEB-53D49964350A} Adobe OnLocation CS5.1_AdobeOnLocation5.1fr_FRLanguagePack
    {C975B8D6-9B6F-4A95-A475-CFB14C3C33D9} Adobe Extension Manager CS6_6.0.1_AdobeExtensionManager6.0All
    {CB16EE89-02A7-4C42-8D7F-C2BD42C424CE} Adobe Device Central CS5.5_DeviceCentral3.5LP-fr_FR
    {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6
    {CC35904A-0197-4F06-BD70-9CE3DB24DBFD} AdobeColorVideoProfilesAE CS5.5
    {CCB778B5-25B8-4E57-9F20-72B11B443EF9} AmericanEnglishSpeechAnalysisModels
    {CDAC14AB-1424-4E9C-8515-EA89D7F37243} Adobe Premiere Pro CS6 Support
    {CE1C14E2-7C20-47A9-817D-596F2173A582} CS5.5 Master Collection
    {CE45CAE5-0B56-4C52-AE07-98A05027A049} Adobe Premiere Pro CS5.5
    {CE6E1448-516F-11E0-B3C0-13EDE2AB3DC5} Adobe InDesign CS5.5 Application Feature Set Files
    {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7
    {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} AIR for Apple iOS support (FP)
    {D5B1535A-FDFC-4B40-B2E2-21DA83D9CB57} Adobe Audition
    {D682C558-6F3F-4800-885C-4C5EB1B7338C} Adobe Buzzword CS5.5
    {D6DE003E-B3B1-11E1-883C-93612208C403} DPS Desktop Tools CS6_2.0.0.433_AdobeDigitalPublishing-mul
    {D8B9B5FB-D388-4D79-AA4B-6C09641189F6} Adobe Utilities CS5.5
    {D97AF04B-B70A-4862-BC25-31E6D9C4A529} Adobe Flash CS5.5
    {D9F625C8-FD5B-4C13-9B3C-5B9F09BA0DC0} Adobe Flash CS5.5_11.5.1_AdobeFlash11.5-mul
    {DBCFA16A-59EC-4DAF-98D1-B4E2C2A9E7B4} Adobe Encore CS6 Support
    {DD18D60C-87B1-47D9-8312-67508B402FB9} SiteCatalyst NetAverages CS5.5
    {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation
    {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport
    {DEA79551-23E3-430A-9B15-B544479B7DB2} Flash Player
    {E0BCE1AA-B57D-4983-A05A-1B2CBF124494} AIR for Apple iOS support (FB)
    {E17D1BC2-0993-474C-990F-171FB4662B5F} Adobe Premiere Pro CS6_AdobePremierePro6.0fr_FRLanguagePack
    {E1B098A4-2FDA-4722-9E9B-CD28F535E9DE} Adobe Flash CS5.5_AdobeFlash11.5-fr_FRLanguagePack
    {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro
    {E2663206-5470-4566-AFCF-EFA0F329EDD9} Adobe Audition_AdobeAudition5fr_FRLanguagePack
    {E348E466-429A-4FB0-AFCF-8306C16BBFF1} Adobe Flash CS5.5_AdobeMobileExtension_Flash11.5-mul
    {E471A41E-852F-4A85-AA74-5B82AB81C615} AdobeColorNA CS5.5
    {E787BAD7-B750-4E1C-A149-965CF1DEE4AB} Adobe After Effects CS6 Presets
    {E82097B9-A3B8-404A-9A92-AC16A8AC9576} Adobe After Effects CS5.5
    {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6
    {EB186BF2-0A84-40A2-B794-0326D3DF9973} AdobeColorVideoProfilesCS CS5.5
    {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6
    {EB552CA2-03BA-45DE-B539-FEEA56055F4D} Adobe Premiere Pro CS6_6.0.1_AdobePremierePro6.0AllTrial
    {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5
    {EE85C227-0148-4825-B659-6A1E142571EE} Adobe Bridge CS5.1
    {EEAE1D88-B258-4A44-A6BE-32CCC8D641D6} Adobe Prelude CS6
    {EF45880C-DD84-46C3-A054-0BC5F76A6BBE} Adobe Photoshop CS5.1 Support
    {F0366D33-8DA0-4F03-A9B4-722303D9D95C} Adobe Dreamweaver CS5.5_AdobeDreamweaver11.5fr_FRLanguagePack
    {F220AB5F-D84D-483F-8D47-7E4C8A027DBF} Adobe Dreamweaver CS5.5_11.5.3_AdobeDreamweaver11.5-mul
    {F313167E-5172-11E0-ACE7-30C2E3AB3DC5} Adobe InDesign CS5.5 Common Base Files
    {F8ABD584-A99C-4304-AC4B-CCFD0914D871} Adobe Linguistics CS5.5
    {FA148573-E0E5-400F-8978-D95410035F18} Photoshop Camera Raw 7_7.1_AdobeCameraRaw7.0All
    {FB720658-01F4-4002-BB69-49E66CD82E30} Adobe Encore CS5.1
    {FD9D6940-5187-11E0-AC25-C5BEE2AB3DC5} Adobe InDesign CS5.5 Application Language Files_AdobeInDesign7xAppLang-fr_FR
    {FE75A95E-7A2B-11E1-8037-B59BF24106A5} Adobe InDesign CS5.5 Application Base Files2_7.5.3.333_AdobeInDesign7xAppBase2-mul
    [       0] Mon Jul 30 09:55:08 2012  INFO
    ______ Verify Dependency Subscribers ______
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    ______ Checking payloads upgrade/conflict relationships ______
    Checking for payloads having same family and product names but different adobe codes
    ______ Checking payloads upgrade/conflict relationships : Passed ______
    Operation order summary:
    When distributing payloads across media, the following order must be preserved, except that
    adjacent payloads with the same mediaGroup can be re-ordered across media boundaries without introducing
    extraneous media swaps for the user.
    [       0] Mon Jul 30 09:55:08 2012  INFO
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    :: END TIMER :: [CreatePayloadSession] took 2805 milliseconds (2.805 seconds) DTR = 7.13012 KBPS (0.00696301 MBPS)
    [       0] Mon Jul 30 09:55:08 2012  INFO
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    *** Checking patch payload : {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    installDBPath : /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Parent Installation directory : /Library/Application Support/Adobe/CS6ServiceManager
    [       0] Mon Jul 30 09:55:08 2012  INFO
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    Requested action "install" for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    Using installer mode 0
    ::START TIMER:: [Setting Payload Actions]
    PayloadPolicyInit: BEGIN Updating installstate for payloads
    PayloadPolicyInit: END Updating installstate for payloads
    PayloadPolicyInit: BEGIN Creating policyNodes
    PayloadPolicyInit: END Creating policyNodes
    PayloadPolicyInit: BEGIN Calculating initial graph
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 2 12, Y for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    PayloadPolicyNode._SetPayloadAction: install for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    PayloadPolicyNode._SetPayloadAction: install for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    PayloadPolicyNode.SetAction: IY->IY for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    PayloadPolicyInit: END Calculating initial graph
    [       0] Mon Jul 30 09:55:08 2012  INFO
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    Setting action for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 per deployment file.
    PayloadPolicyNode._SetPayloadAction: install for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    PayloadPolicyNode.SetAction: IY->IY for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    [       0] Mon Jul 30 09:55:08 2012  INFO
    END Setting requested payload actions
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    :: END TIMER :: [Setting Payload Actions] took 27 milliseconds (0.027 seconds)
    [       0] Mon Jul 30 09:55:08 2012  INFO
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    BEGIN Custom Action
    [       0] Mon Jul 30 09:55:08 2012  INFO
    In InstallPreSystemCheckProc
    Custom action return code: 0
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    END Custom Action
    [       0] Mon Jul 30 09:55:08 2012  INFO
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 2 milliseconds (0.002 seconds)
    [       0] Mon Jul 30 09:55:08 2012 DEBUG
    ::START TIMER:: [SimulatePayloadOperations]
    [       0] Mon Jul 30 09:55:09 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    Creating instruction for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    EMPTY SET Dependent operations for DRIVER {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    Operation can be attempted
    [       0] Mon Jul 30 09:55:09 2012  INFO
    Payloads passed preflight validation.
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    :: END TIMER :: [SimulatePayloadOperations] took 129 milliseconds (0.129 seconds) DTR = 31.0078 KBPS (0.030281 MBPS)
    [       0] Mon Jul 30 09:55:09 2012  INFO
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    BEGIN Custom Action
    [       0] Mon Jul 30 09:55:09 2012  INFO
    In InstallSessionOpenProc
    Custom action return code: 0
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    END Custom Action
    [       0] Mon Jul 30 09:55:09 2012  INFO
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    Opened installation queue
    Creating instruction for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    EMPTY SET Dependent operations for DRIVER {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    Operation can be attempted
    Verifying payload '{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0' in media
    Verification of payload '{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0' in media is successful
    [       0] Mon Jul 30 09:55:09 2012  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    BEGIN Custom Action
    [       0] Mon Jul 30 09:55:09 2012  INFO
    In PrePayloadInstallProc
    Custom action return code: 0
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    END Custom Action
    [       0] Mon Jul 30 09:55:09 2012  INFO
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    [       0] Mon Jul 30 09:55:09 2012 DEBUG
    Custom action code for pre- install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 returned : 0
    [       0] Mon Jul 30 09:55:09 2012  INFO
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Mon Jul 30 09:55:09 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    [       1] Mon Jul 30 09:55:09 2012 DEBUG
    ADOBE_SETUP                      = 1
    AddRemoveInfoEstimatedSize       = 5543
    CLE                              =
    ExtensionFamily                  = Creative Suite
    ExtensionParentAdobeCode         = {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    ExtensionProduct                 = Adobe CSXS Infrastructure CS6
    ExtensionType                    = patch
    ExtensionVersion                 =
    INSTALLDIR                       = /Library/Application Support/Adobe/CS6ServiceManager
    IsExtensionPayload               = 1
    MEDIATAG                         =
    OS64Bit                          = 0
    ProcessorFamily                  = All
    SessionID                        = {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    StartMenuProgramsSubFolder       =
    adobeCode                        = {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    defaultLanguage                  = en_US
    driverINSTALLDIR                 = /Library/Application Support/Adobe/CS6ServiceManager
    extensionsOnly                   = 1
    installLanguage                  = en_US
    installSourcePath                = /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    mediaName                        = CSXSInfrastructure
    mediaPath                        = /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    mediaSignature                   = {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    mode                             = silent
    overrideFile                     =
    parentAdobeCode                  = {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    patchPayload                     = 1
    patchesOnly                      = 1
    payloadType                      = SQLite
    platform                         = OSX
    setupVersion                     = 6.2.5.0
    workflow                         = updater
    [       1] Mon Jul 30 09:55:09 2012  INFO
    Payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    [       1] Mon Jul 30 09:55:09 2012 DEBUG
    Setting determined properties...
    Mounting payload image at /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    [       1] Mon Jul 30 09:55:10 2012 DEBUG
    Payload mounted at /private/tmp/.tempdirtt3cEu8i
    [       1] Mon Jul 30 09:55:10 2012  INFO
    CustomizedPatch property not found in database
    Beginning installation for payload at /private/tmp/.tempdirtt3cEu8i/Install.db
    [       1] Mon Jul 30 09:55:10 2012 DEBUG
    Creating directory at "/Library/Application Support/Adobe/CS6ServiceManager/Adobe" with mode 775(Seq 1)
    Created(Seq 1)
    Creating directory at "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles" with mode 775(Seq 1)
    Created(Seq 1)
    Creating directory at "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles/{E9C77AF1-5C15-4C59-BA6F-88CB319EE9 C8}" with mode 775(Seq 1)
    Created(Seq 1)
    Copying file "/private/tmp/.tempdirtt3cEu8i/Assets1/1b838ff890c720105c8c9fc61fbd0ca1" to "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles/{E9C77AF1-5C15-4C59-BA6F-88CB319EE9 C8}/1b838ff890c720105c8c9fc61fbd0ca1"(Seq 2)
    Copied(Seq 2)
    [       1] Mon Jul 30 09:55:10 2012  INFO
    Attempting to patch file: "/Library/Application Support/Adobe/CS6ServiceManager/CS6ServiceManager.app/Contents/MacOS/CS6ServiceManager"(S eq 3)
    [       1] Mon Jul 30 09:55:10 2012 DEBUG
    Saving prior original file at "/Library/Application Support/Adobe/CS6ServiceManager/CS6ServiceManager.app/Contents/MacOS/CS6ServiceManager" to temporary location(Seq 3)
    Original file saved to "/tmp/.tempqsbPaw"(Seq 3)
    Original file has invalid checksum "d41d8cd98f00b204e9800998ecf8427e"(Seq 3)
    [       1] Mon Jul 30 09:55:10 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 3)
    [       1] Mon Jul 30 09:55:10 2012  INFO
    Completing installation for payload at /private/tmp/.tempdirtt3cEu8i/Install.db
    [       1] Mon Jul 30 09:55:10 2012 DEBUG
    Rolling back prior actions...
    Deleting file copy at "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles/{E9C77AF1-5C15-4C59-BA6F-88CB319EE9 C8}/1b838ff890c720105c8c9fc61fbd0ca1"(Seq 2)
    Deleted(Seq 2)
    Deleting directory "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles/{E9C77AF1-5C15-4C59-BA6F-88CB319EE9 C8}" Non-Recursive(Seq 1)
    Saved permissions of 0x1fd for "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles/{E9C77AF1-5C15-4C59-BA6F-88CB319EE9 C8}"(Seq 1)
    Saved owner of 0x0 and group of 0x50(Seq 1)
    Deleted(Seq 1)
    Deleting directory "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles" Non-Recursive(Seq 1)
    Saved permissions of 0x1fd for "/Library/Application Support/Adobe/CS6ServiceManager/Adobe/AdobePatchFiles"(Seq 1)
    Saved owner of 0x0 and group of 0x50(Seq 1)
    Deleted(Seq 1)
    Deleting directory "/Library/Application Support/Adobe/CS6ServiceManager/Adobe" Non-Recursive(Seq 1)
    Saved permissions of 0x1fd for "/Library/Application Support/Adobe/CS6ServiceManager/Adobe"(Seq 1)
    Saved owner of 0x0 and group of 0x50(Seq 1)
    Deleted(Seq 1)
    InstallPayload failed.
    [       0] Mon Jul 30 09:55:10 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1617 milliseconds (1.617 seconds) DTR = 4.94743 KBPS (0.00483148 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       0] Mon Jul 30 09:55:10 2012 DEBUG
    BEGIN Custom Action
    [       0] Mon Jul 30 09:55:10 2012  INFO
    In PrePayloadInstallProc
    Custom action return code: 0
    [       0] Mon Jul 30 09:55:10 2012 DEBUG
    END Custom Action
    [       0] Mon Jul 30 09:55:10 2012  INFO
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    No operation.  We're done:
    [       0] Mon Jul 30 09:55:12 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Mon Jul 30 09:55:12 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Mon Jul 30 09:55:12 2012  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       0] Mon Jul 30 09:55:12 2012 DEBUG
    BEGIN Custom Action
    [       0] Mon Jul 30 09:55:12 2012  INFO
    In InstallSessionCloseProc
    Custom action return code: 0
    [       0] Mon Jul 30 09:55:12 2012 DEBUG
    END Custom Action
    [       0] Mon Jul 30 09:55:12 2012  INFO
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    :: END TIMER :: [Total Timer] took 10351 milliseconds (10.351 seconds) DTR = 14.6846 KBPS (0.0143404 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ----------- Payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 -----------
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 3)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Mon Jul 30 09:55:13 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.5.0
    OSX version: 10.7.4 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 32 milliseconds (0.032 seconds) DTR = 1500 KBPS (1.46484 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.5.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Mon Jul 30 10:50:08 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 2 milliseconds (0.002 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    [       0] Mon Jul 30 10:50:09 2012  INFO
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Mon Jul 30 10:50:09 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    [       1] Mon Jul 30 10:50:10 2012  INFO
    CustomizedPatch property not found in database
    Beginning installation for payload at /private/tmp/.tempdir2OoRoIWJ/Install.db
    Attempting to patch file: "/Library/Application Support/Adobe/CS6ServiceManager/CS6ServiceManager.app/Contents/MacOS/CS6ServiceManager"(S eq 3)
    [       1] Mon Jul 30 10:50:10 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 3)
    [       1] Mon Jul 30 10:50:10 2012  INFO
    Completing installation for payload at /private/tmp/.tempdir2OoRoIWJ/Install.db
    [       0] Mon Jul 30 10:50:10 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1416 milliseconds (1.416 seconds) DTR = 2.82486 KBPS (0.00275865 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    No operation.  We're done:
    [       0] Mon Jul 30 10:50:12 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Mon Jul 30 10:50:12 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Mon Jul 30 10:50:12 2012  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    :: END TIMER :: [Total Timer] took 5696 milliseconds (5.696 seconds) DTR = 16.1517 KBPS (0.0157731 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ----------- Payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 -----------
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 3)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Mon Jul 30 10:50:13 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.5.0
    OSX version: 10.7.4 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 30 milliseconds (0.03 seconds) DTR = 2000 KBPS (1.95312 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/madu/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.5.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Mon Jul 30 11:09:30 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 2 milliseconds (0.002 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds) DTR = inf KBPS (inf MBPS)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Mon Jul 30 11:09:31 2012  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Mon Jul 30 11:09:31 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    Payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    [       1] Mon Jul 30 11:09:32 2012  INFO
    CustomizedPatch property not found in database
    Beginning installation for payload at /private/tmp/.tempdirGsMnXE0q/Install.db
    Attempting to patch file: "/Library/Application Support/Adobe/CS6ServiceManager/CS6ServiceManager.app/Contents/MacOS/CS6ServiceManager"(S eq 3)
    [       1] Mon Jul 30 11:09:32 2012 ERROR
    DW063: Command ARKPatchCommand failed.(Seq 3)
    [       1] Mon Jul 30 11:09:32 2012  INFO
    Completing installation for payload at /private/tmp/.tempdirGsMnXE0q/Install.db
    [       0] Mon Jul 30 11:09:32 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1416 milliseconds (1.416 seconds) DTR = 525.424 KBPS (0.513109 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Mon Jul 30 11:09:34 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Mon Jul 30 11:09:34 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Mon Jul 30 11:09:34 2012  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 1 milliseconds (0.001 seconds)
    :: END TIMER :: [Total Timer] took 5865 milliseconds (5.865 seconds) DTR = 622.677 KBPS (0.608083 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ----------- Payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 -----------
    ERROR: DW063: Command ARKPatchCommand failed.(Seq 3)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Mon Jul 30 11:09:35 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050, DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

Maybe you are looking for

  • How can I change a pdf to Fill & Sign form?

    I have a form that can be printed and completed by hand. It is in a pdf format. I would like to put it into a Fill & Sign type of form. Does anyone know how to do this?

  • Nokia_PC_Suite_Cleaner_3_4.exe

    Why is that Nokia makes msi's for their installations(which is faulty)? Why don't they supply the "Nokia_PC_Suite_Cleaner_3_4.exe" in a msi format as well? It would make everyone's lives much easier..

  • Confirmed Qty still shows ZERO after complete delivery

    Hi A particular item in a sales order has been completely delivered and billed, but in the schedule lines tab, the confirmed qty and delivered qty are still showing as Zero. Also there is a tick mark for the "Schedule Lines Exist" column for that ite

  • Copy Update Rules

    Hi Gurus, We installed some Business content cubes along with the corresponding update rules. We want to do Z-copy of the cube. How do we copy update rule of a Business Content Cube (eg 0PUR_C01) to a Z-copy of the same cube (eg ZPUR_C01)? Please let

  • After I burn a DVD I am unable to read it again

    I have archived some files onto DVD's and after the disk is burned the icon comes up on the desktop. If I double click on the icon the disk seems to open and show it contains all the data I burned to it. However once I eject the DVD, when I reinsert