CS5 DNxHD QT failures

I've got CS5 running on Windows 7 on a 12 core system.  Whenever I try to render a comp. with a source item that uses Avid DNxHD codec, the render fails after about 2 to 8 frames.  It doesn't matter what codec I'm rendering too, although I initially thought that ONLY DNxHD was having problems.  I then tried to render that same comp., this time to good old Animation codec.  Still failed.  I then hid the source quicktime that use DNxHD and it rendered fine to any codec I wanted.  I turned that layer back on, then disabled Open GL acceleration (I have a Quadro FX 3800).  Still failed.  I then turned Open GL back on, but turned of Multiprocessing in AE.  That did the trick.  I'm not sure if I'm correct, but it seems like After Effects CS5 has an issue rendering with Multiprocessor support turned ON, when rendering a composition that contains a Quicktime using the Avid DNxHD codec.  This is very strange though, because my system at work is running CS5 on a Windows 7 box, with the same version of Quicktime and DNxHD codec.  The only difference is that it has older Xeon Quad core processors, and the graphics card is an older FX 3400.  Anyone else having this issue?  My next step is to turn Multiprocessing back on, but gradually decrease the number of cores that AE can use.  Thoughts?

Sounds like CODEC related. Worst case scenario you can convert the source footage to another format for comps, then finish with a converted uncompressed - but depending on length, that could be a nightmare sized file.
Not sure if you've tried Nucleo Pro 3, I've had pretty good success with it as a part of my AE workflow, though quite honestly I haven't tested much in AE5 (I'm still upgrading my plugin library before I go into full deployment there)

Similar Messages

  • After Effects CS5 DNxHD rendering problems

    Hello folks, I posted this last month, but still haven't worked it out.  My problem is that everytime I try to render a quicktime from After Effects CS5 using Avid's DNxHD codec, I get this error, about 60 - 100 frames in:  "Rendering error while writing to file (path name here). An output module failed. The file may be damaged or corrupted. (-1610153464)  I've tried rendering to different drives, rendering with and w/out multiprocessing, with and w/out Open GL rendering, different comps / projects, and different flavors of the DNxHD codec (8 bit, 10bit, 145, 220, etc).  Here's my basic system specs:
    Win 7 Pro 64bit
    Dual 6 core Westmere Processors
    48GB Ram
    Quadro FX 3800 1.5GB (driving 2 x 24" HP monitors)
    GeForce GT 240 (driving a Cintiq tablet)
    I have another system, same operation system, but with dual quad core Nehalem's and 16GB Ram and a Quadro FX 3400 and it renders to DNxHD just fine.  I'm certain I have the latest codecs from Avid, and I've tried both the LE and PE versions.  Any thoughts?
    Nate

    It's a bug in the CoDec itself, if I'm not mistaken. I've seen this being discussed somewhere, but can't remember the full details. I believe the issue oils down to the Avid stuff using an older version of some compiler library and not dealing correctly with some SSE stuff on some processors. You may try to toy around with the BIOS settings to suppress SSE4 and 4.1 and see if it helps. Also consider installing the .NET runtimes. They still have those magical healing poweers, as the install resolves any version conflicts that may exist with outdated system DLLs bundled with some programs. That may also help. In the long run, though, I think Avid will just have to update DNx to properly work on 64bit and those new processors...
    Mylenium

  • Photoshop CS5 is a failure / inability to search forum for solutions

    Well, since the search funtion doesn't work for the forums, I'll just have to post my problems and see if anyone from Adobe is listening, haha.
    Photoshop CS5 creates repeating 1 to 2 pixel thick lines through images in pdfs when I rip them open. You've gotta be kidding me.
    Photoshop CS3 does not do this with the exact same pdfs.
    Photoshop CS5 does not allow me to view changes in layer image adjustments before commiting to the adjustments, requiring me to use the "history" to work backward as I am making changes to all 4 colors in a CMYK image. You've REALLY gotta be kidding me.
    Photoshop CS3 allows me to view changes, and look at what I had before the changes, merely by clicking the "preview" button on and off, before committing to the changes. A beautiful feature for anyone adjusting the color of an image, which, i would think, is the number 1 reason for using Photoshop in the first place.
    These are 2 MAJOR FLAWS after using the product for only a few days. It's no wonder I waited for over a year before upgrading.
    So far, the only thing that is an improvement over CS3 is that it quits faster.
    Thank god for that and good riddance.
    I am a prepress professional and will NOT be recommending this product upgrade to my fellow users. One can only guess at who was attending the meetings where someone from marketing said, "Oh, how can we change something that works fine and justify an upgrade?"It's straight out of a Dilbert cartoon.
    I'm very very disappointed.

    If you want to give it a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4 or /Applications/Utilities/Adobe Utilities-CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    This one is for Curves creation:
    // creates a curves adjustment layer with the modal dialog and deletes the mask if no selction is initially active;
    // use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theMode = myDocument.mode;
    if (theMode == DocumentMode.RGB || theMode == DocumentMode.LAB || theMode == DocumentMode.CMYK || theMode == DocumentMode.GRAYSCALE) {
    // =======================================================
    try {
    var idslct = charIDToTypeID( "slct" );
        var desc7 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idChnl = charIDToTypeID( "Chnl" );
    switch (theMode) {
         case DocumentMode.RGB:
         var idRGB = charIDToTypeID( "RGB " );
         break;
         case DocumentMode.LAB:
         var idLab = charIDToTypeID( "Lab " );
         break;
         case DocumentMode.CMYK:
         var idCMYK = charIDToTypeID( "CMYK" );
         break;
         case DocumentMode.GRAYSCALE:
         var idBlck = charIDToTypeID( "Blck" );
         break;
            ref1.putEnumerated( idChnl, idChnl, idCMYK );
        desc7.putReference( idnull, ref1 );
    executeAction( idslct, desc7, DialogModes.NO );
    executeAction( idslct, desc2, DialogModes.NO )
    catch (e) {};
    // =======================================================
    var idslct = charIDToTypeID( "slct" );
        var desc6 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idChnl = charIDToTypeID( "Chnl" );
            var idRGB = charIDToTypeID( "RGB " );
            ref2.putEnumerated( idChnl, idChnl, idRGB );
        desc6.putReference( idnull, ref2 );
    executeAction( idslct, desc6, DialogModes.NO );
    var selectionYorN = true;
    //function hasSelection(doc) by xbytor;
    var res = false;
    var as = myDocument.activeHistoryState;
    myDocument.selection.deselect();
    if (as != myDocument.activeHistoryState) {
         res = true;
         myDocument.activeHistoryState = as;
    //create the layer, thanks to mr nack for this part;
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {var id240 = charIDToTypeID( "Mk  " );
         var desc47 = new ActionDescriptor();
         var id241 = charIDToTypeID( "null" );
         var ref31 = new ActionReference();
         var id242 = stringIDToTypeID( "contentLayer" );
         ref31.putClass( id242 );
         desc47.putReference( id241, ref31 );
         var id243 = charIDToTypeID( "Usng" );
         var desc48 = new ActionDescriptor();
         var id244 = charIDToTypeID( "Type" );
         var id245 = charIDToTypeID( "Crvs" );
         desc48.putClass( id244, id245 );
         var id246 = stringIDToTypeID( "contentLayer" );
         desc47.putObject( id243, id246, desc48 );
         executeAction( id240, desc47, DialogModes.NO );
         if (res == false) {
         try {noEmptyMask();}
         catch (a){}
    catch(e){if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {;
              } else{/*alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");*/
    //edit the layer;
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {
         var id359 = charIDToTypeID( "setd" );
         var desc77 = new ActionDescriptor();
         var id360 = charIDToTypeID( "null" );
         var ref48 = new ActionReference();
         var id361 = stringIDToTypeID( "contentLayer" );
         var id362 = charIDToTypeID( "Ordn" );
         var id363 = charIDToTypeID( "Trgt" );
         ref48.putEnumerated( id361, id362, id363 );
         desc77.putReference( id360, ref48 );
         var id364 = charIDToTypeID( "T   " );
         var id365 = 1131574899;
         desc77.putClass( id364, id365 );
         executeAction( id359, desc77, DialogModes.ALL );
    catch(e){
         if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {
              myDocument.activeHistoryState = as;
         else{/*alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");*/
    else {
         alert ("documentmode does not support adjustment layers")
    ////// remove the layer-mask //////
    function noEmptyMask () {
    var idDlt = charIDToTypeID( "Dlt " );
        var desc2 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idTrgt = charIDToTypeID( "Trgt" );
            ref1.putEnumerated( idChnl, idOrdn, idTrgt );
        desc2.putReference( idnull, ref1 );
    executeAction( idDlt, desc2, DialogModes.NO );
    This one is for editing in the modal dialog:
    //opens the modal dialog for editing selected adjustment layers of some types, not all though; based on john nack’s panel;
    // use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var checksOut = true;
    switch (myDocument.activeLayer.kind) {
         case LayerKind.CURVES:
         theVars365 = 1131574899;
         break;
         case LayerKind.HUESATURATION:
         theVars365 = 1213428850;
         break;
         case LayerKind.SELECTIVECOLOR:
         theVars365 = 1399612227;     
         break;
         case LayerKind.LEVELS:
         theVars365 = 1282829427;
         break;
         case LayerKind.BLACKANDWHITE:
         theVars365 = 1113681495;
         break;
         case LayerKind.POSTERIZE:
         theVars365 = 1349743730;
         break;
         case LayerKind.GRADIENTMAP:
         theVars365 = 1197755760;
         break;
         case LayerKind.CHANNELMIXER:
         theVars365 = 1130917453;
         break;
         case LayerKind.THRESHOLD:
         theVars365 = 1416131187;
         break;
         case LayerKind.COLORBALANCE:
         theVars365 = 1131180610;
         break;
         case LayerKind.VIBRANCE:
         theVars365 = stringIDToTypeID( "vibrance" );
         break;
         case LayerKind.EXPOSURE:
         theVars365 = 1165521011;
         break;
         default:
         checksOut = false;
    // adjustment layers;
    if (checksOut == true){
         var id365 = theVars365;
         theModalDialogue (theVars365);
    else {
    // else check for solid fill layer;
         if (myDocument.activeLayer.kind == "LayerKind.SOLIDFILL" || myDocument.activeLayer.kind == "LayerKind.PATTERNFILL" || myDocument.activeLayer.kind == "LayerKind.GRADIENTFILL") {
              try {
                   layerContentOptions()
              catch (e) {}
         else {
              alert("selected layer is neither curves–, hue/saturation-, selective color-, levels-, black and white-, posterize-, gradient map- or threshold-adjustment layer nor a solidfill-, gradient- or pattern-layer")
    ////// modal editing //////
    function theModalDialogue (theVars365) {
    ErrStrs = {};
    ErrStrs.USER_CANCELLED=localize("$$$/ScriptingSupport/Error/UserCancelled=User cancelled the operation");
    try {
         var id359 = charIDToTypeID( "setd" );
         var desc77 = new ActionDescriptor();
         var id360 = charIDToTypeID( "null" );
         var ref48 = new ActionReference();
         var id361 = stringIDToTypeID( "contentLayer" );
         var id362 = charIDToTypeID( "Ordn" );
         var id363 = charIDToTypeID( "Trgt" );
         ref48.putEnumerated( id361, id362, id363 );
         desc77.putReference( id360, ref48 );
         var id364 = charIDToTypeID( "T   " );
         desc77.putClass( id364, id365 );
         executeAction( id359, desc77, DialogModes.ALL );
    catch(e){
         if (e.toString().indexOf(ErrStrs.USER_CANCELLED)!=-1) {;
         else{
              alert("$$$/ScriptingSupport/Error/CommandNotAvailable=The command is currently not available");
    ////// edit solid fill //////
    function layerContentOptions () {
    var id450 = charIDToTypeID( "slct" );
    var desc90 = new ActionDescriptor();
    var id451 = charIDToTypeID( "null" );
    var ref61 = new ActionReference();
    var id452 = charIDToTypeID( "Mn  " );
    var id453 = charIDToTypeID( "MnIt" );
    var id454 = charIDToTypeID( "AdjO" );
    ref61.putEnumerated( id452, id453, id454 );
    desc90.putReference( id451, ref61 );
    executeAction( id450, desc90, DialogModes.ALL )

  • Adobe CS5 Trial Setup failure on Mac. Help!

    Ok so I've been trying to download the trial for Adobe CS5 Photoshop and have run into some problems on my Mac. Here's where I am in the download process. I went to the site and clicked the download now button for the trial. I open the adobedownloadassistant.dmg on my desktop and double click the install adobe download assistant. I watch the bar on the adobe download assistant install go to completion and then it closes out. Now, from what I understand, at this point the download assistant should pop up and I'm supposed to sign in with my ID but the problem is that this window never pops up.
    I noticed one time that it said that a version of adobe AIR could not be found and suggested updating. I went to the Adobe site then and downloaded the latest version of Adobe AIR. When I try to install it I get an error message saying that the Adobe AIR installer application requires a version of Adobe AIR which cannot be found. This is also the same error message I got with the CS5 installer assistant.
    Here's a picture of the error message I get when trying to open the adobe AIR installer. Seems like a catch-22 to me.
    I'm running Mac OS X Lion on a 15" 2.2 ghz quad core intel core i5
    Somebody help please!

    Do any of the following based on your preference:
    If you want to continue to troubleshoot yourself, see this doc:http://kb2.adobe.com/cps/403/kb403150.html#main_probs-windows
    Open this page. (http://www.adobe.com/aboutadobe/contact.html). If a customer support person is available, a chat window opens using which you can resolve your problem. You could also call up customer support directly.
    Wait for other moderators on this forum to get back to you.
    Thanks,
    Preran

  • CS5.5 install failure from disk.

    Working with Windows Vista Premium, 64 bit. Have installed, uninstalled, reinstalled, started in safe mode, gone through all again. Keep getting various error codes. Typically 6 but do I need to replace this ? "InstallPlugin.exe" referenced below? I am not finding the windows installer download the site references.
    thanks
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 4 warning(s)
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.1E9BC2P-1017rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Design Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {43A1C48E-3E50-410e-951C-E17A66BBF824} Adobe Flash Player 10 Plugin 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\wyld\AppData\Local\Temp\InstallPlugin.exe, command: -install plugin -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\wyld\AppData\Local\Temp\InstallPlugin.exe, command: -install plugin -msi
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {1C9D6B02-8B92-4E40-8B22-37D8C95430F0} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_USLanguagePack\OEM(Seq 74)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Flash Player 10 Plugin: Install failed

    These errors are known. They pertain to a newer version of Flash Player already being on the system and the installer not dealing with this. If the apps run just fine, then there is nothing you must do.
    Mylenium

  • Lion CS5.5 installation failure Exit code 33??

    Hi all,
    I am getting this trying to install CS5.5.
    Note:
    I've installed Java. Air. Flash.
    I've used the Adobe CS Cleanup Tool.
    Repaired permission.
    Removed the colorsync preferences etc.
    Removed all my Adobe Preferences that i know of.
    Been trying for 2 days, any ideas much appreciated.
    cheers
    Exit Code: 33 - The product is not installed, cannot uninstall.
    [       0] Wed Oct  5 20:06:37 2011  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Wed Oct  5 20:06:37 2011 ERROR
    DW040: The product "{04ADB20D-99A3-4F83-8176-F07787237EBA}" is not installed. Cannot proceed with the uninstall
    [       0] Wed Oct  5 20:06:37 2011  INFO
    ##### Running EDT Workflow #####
    :: END TIMER :: [Total Timer] took 4 milliseconds (0.004 seconds) DTR = 1000 KBPS (0.976562 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{04ADB20D-99A3-4F83-8176-F07787237EBA}" is not installed. Cannot proceed with the uninstall
    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: 33 - The product is not installed, cannot uninstall.

    I'm getting a similar, if not the exact same, problem.
    I am attempting to run Adobe Design Premium CS5.5_Install.pkg. After I click "install," in a minute or two the installation will fail. I've attached an excerpt of my installation log below.
    I am running Mac Lion 10.7.3 on a 15-inch late 2011 Macbook Pro. I would appreciate any help on figuring this out.
    Exit Code: 33 - The product is not installed, cannot uninstall.
    [       0] Mon May 21 14:12:42 2012  INFO
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    [       0] Mon May 21 14:12:42 2012 ERROR
    DW040: The product "{04ADB20D-99A3-4F83-8176-F07787237EBA}" is not installed. Cannot proceed with the uninstall
    [       0] Mon May 21 14:12:42 2012  INFO
    ##### Running EDT Workflow #####
    :: END TIMER :: [Total Timer] took 2 milliseconds (0.002 seconds) DTR = 2000 KBPS (1.95312 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW040: The product "{04ADB20D-99A3-4F83-8176-F07787237EBA}" is not installed. Cannot proceed with the uninstall
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.

  • Dreamweaver CS5 update apparently fixes Mac FileVault problem

    Adobe has just released Dreamweaver 11.0.2 (build 4916), which is intended to fix the problem with running Dreamweaver CS5 on Mac OS X with FileVault enabled. Adobe Updater should automatically detect the update, and display the Adobe logo in the menu bar at the top right of the screen on a Mac. Click the logo, and select Adobe Updater. Alternatively, select Help > Updates in Dreamweaver.
    I don't use FileVault, so can't verify that the update fixes the problem. Hopefully, it does.

    I was getting the same error message on both Windows 7 64-bit as well as XP 32-bit.  When CS5 Dreamweaver installs (and several other Adobe CS5 products) it includes an older version of the Java 1.6 Runtime Environment which has known serious security flaws.  My university's computer security people got a report from Secunia PSI that I was running vulnerable software (an older version of Java) and demanded that I immediately upgrade. 
    But I do have the latest updates of the JRE installed, so I was puzzled by this.  When I looked at the Secunia report, the JRE culprits were installed in the Programs\Adobe folders as part of each application such as Dreamweaver (and several others).  So I removed the insecure JRE folders under those program installations and replaced them with the updated JRE folder from the Java installation (JVM for DW). Granted, this was a bit of a gamble since the registry was not modified, but I had not experienced any problems until I kept getting the installation failure reported here for the CS5 DW update failure with no explanation.
    Realizing that Dreamweaver is still a 32-bit app even when running on 64-bit Win 7, and I was running the 64-bit version of Java 1.6 v20, I thought I should have used the 32-bit version of Java to replace the insecure version installed under Dreamweaver.  I tried that, as above, but the DW CS5 update still failed.
    Then I tried to reinstall CS5 Dreamweaver only, which succeeded with the older insecure JRE which then immediately got flagged by Secunia PSI.  Furthermore, the Dreamweaver update still failed with no explanation.  I noticed that some of the previous Java files (by their dates) were still left in the DW installation JVM folder, after the re-install.  So next I removed the entire Program Files (x86)\Adobe\Dreamweaver CS5 folder, and did a clean reinstall of Dreamweaver CS5 only.  It was immediately detected again by Secunia PSI as have an insecure version of JRE.  However, this time when I did the Dreamweaver update, it succeeded (v11.0 build 4916) on my 64-bit Win 7 machine.
    So the choice currently appears to get Dreamweaver CS5 updates with an older insecure version of the JRE or
    not get Dreamweaver updates but be secure with the latest JRE manually installed.  My university security people will not tolerate the former
    I don't understand why Adobe does not put the latest JRE's as part of their standard updates.  Moreover, why put them in the Adobe installations at all--which is causing this security problem of older insecure JRE's--and instead use the main Java installation on the user's machine (and if absent, require users to install Java), if Java is really needed.

  • "File Import Failure Unsupported format or damaged file" in CS6 but fine in CS5.5

    Hello All.
    Recording in Pal DV AVI from Sony Z5U with MRC1K compact flash recorder.
    Imported files to computer using the Sony utility, and also tried dragging and dropping.
    Some files import to Premiere Pro CS6.03, but others give "File Import Failure: Unsupported format or damaged file,".
    The files that do import show up as 4:3 and I have to modify /  interpret footage to get them to show as 16:9,
    However, these same files play back just fine in Windows Media Player.
    Intriguingly these files import just fine to Premiere Pro CS5.5, and also show up correctly as 16:9.
    I can't figure out why some files import into CS6 and others don't....
    Anyone else seen this kind of behavior?
    (Normally I record in HDV and I've never had problems importing from MRC1K into Premiere, but the client specifically requested DV files for their ease of editing...)
    Cheers
    Mark
    PS When I use the DV recoverer utility on these files they import just fine into CS6....

    Hi Jim,
    OK, here's the video that imports OK into CS6.03 but that Premiere CS6.03 sees as 4:3:
    And here's the one that won't import into CS6.03 but is happily opened by CS5.5 and correctly seen as 16:9:
    Can you spot the difference? Thanks for having a look at this.
    Cheers
    Mark

  • Installation Error DW050: Adobe Illustrator CS5.1: failed due to language pack installation failure

    I recently got a macbook Air and needed to reinstall my adobe creative suite to said new computer. I purchased creative suite online so I downloaded it from there and followed the installation instructions to a T.
    I originally purchased Adobe Creative Suite in 2011 so it is version CS5.1
    Everything installed successfully except Adobe Illustrator, which at the end left me this error message
    ERROR: DW050:  - Adobe Illustrator CS5.1_AdobeIllustrator15_1en_USLanguagePack: Install failed
    ERROR: DW050:  - Adobe Illustrator CS5.1: Failed due to Language Pack installation failure
    how can I get illustrator on my computer?!
    Hoping to sell my previous computer soon and I'm almost done transferring programs and photographs.
    Thanks so much!

    Which language is the application?
    Which language is your system?
    Which system?

  • Photoshop CS5 Install failure, but on just one instance of SL (the one I

    HI, I know this is a strange place to post this, but Adobe Support suggests talking to Apple, as I have an install failure of Photoshop CS5, the install app won't even initialize, and it's just on one instance of SL. I can install fine on other machines, and other bootable drives, but not on the one inside an imac (late 2008 vintage). Baffling, as the problem must be tied to this one instance...my production one. I tried other users on the machine, but no luck...same problem. I checked permissions, ran Disk Warrior, all of that, still no luck. Anyone have any other suggestions besides using Gimp:) thx,
    coocoo

    I can see what's going on with the installer... first it's supposed to create a temp application dir in the user account, Adobe/OOBE/blabla... then kick off the activation and then the installer. Before it get's to the activation part, it blows and deletes the dir it started. As I successfully can install on another boot drive, I tried to cobble together the installation that way, by just copying files over, and got there - pretty much. I just can't activate with my serial number as I am supposed to be able to do...probably intentionally made so - but PS is running in trial mode on my production machine, and full mode on a test machine - ha! If I could just reverse the situation I would be golden. Anyway, I have another call in to Adobe...

  • DNxHD Premiere Pro CS5.5

    Hi guys,
    I'm going to use an Atomos Samourai to record data from my camera. I'm used to work in Final Cut but on my new job I need to use a Windows with Adobe Premiere. This noon I've been struggeling to use ProRes 422 with Premiere Pro CS5.5. Too much work arounds so I decided to record Avid's DNxHD and import that into Premiere Pro. I've downloaded the latest Quicktime and the DNxHD codec from Avid. I've run the installation and restarted my pc.
    When I want to setup a project in ProRes or DNxHD I can't see neither codes in the 'Video Preview' tab... The only formats I see are Microsoft AVI and various P2 formats. So basicaly I can't start a decent project.
    Am I doing something wrong?
    Kind regards!
    T

    So basically I shouldn't be too worried about the video preview..?
    Correct.
    Previews are for fluid Timeline playback in instances (effects added, etc.)
    where you have a red (or yellow) line over your footage.
    Red, yellow, and green render bars and what they mean
    http://blogs.adobe.com/premierepro/2011/02/red-yellow-and-green-render-bars.html

  • Avid DNxHD into Premiere Pro CS5.5?

    Howdy. New to Premiere Pro and trying the demo. Unfortunately I'm having a issues right off the bat.
    I'm trying to import Avid DNxHD 36 media from Media Composer 5.5. But I get some issue saying that the codec isn't supported. Am I wrong that DNxHD is supposed to be native in Premiere Pro CS5+?
    Thanks!

    I wouldn't be surprised if REDCineX was using FFmpeg under the hood for that! Definitely use FFmbc for such things, however--it's got more functionality built-in for professional media. It's MXF support is waaay better than FFmpeg's.
    BTW: The Premiere Pro docs are rather tight-lipped and inconclusive about the whole matter...
    From File formats supported for import:
    MXF (Media eXchange Format; P2 Movie: Panasonic Op-Atom variant
    of MXF, with video in DV, DVCPRO, DVCPRO 50, DVCPRO HD, AVC-Intra;
    XDCAM HD Movie, Sony XDCAM HD 50 (4:2:2), Avid MXF Movie), and native
    Canon XF (new in Premiere Pro CS5.5)
    From Importing assets from tapeless formats:
    Avid capture format
    Avid editing systems
    capture footage to MXF files, generally into a folder called Avid
    Media files, with audio captured into discreet files separate from
    the video files. When you import Avid video files, Premiere Pro
    automatically imports their associated audio files. However, it
    is simpler to import Avid project files, in Advanced Authoring Format
    (AAF), than to identify and import individual Avid MXF video files.
    Hmm... yeah. A veritable cornucopia of information.

  • Dw launch failure, CS5 MacPro

    I am using a MacPro, running OS 10.5.8 and have CS5.
    This has happened a twice to me:
    When I click to run Dw, the program will open... kind of. I get no startup screen and the options bar across the top simply says "Dreamweaver" and gives a few drop down options like "Services" along with the always there Hide/Hide Others... I can't open any of the documents that I've been working on and nothing else happens.
    Last time this happened, I restarted my whole machine, and Dw then opened just fine, however I attempted a restart again and now I get nothing.
    Since this has only happened twice, but I the only trend I can see is that it happens following a machine shutdown, when I boot back up in the morning. I generally keep my machine running and on "sleep" but I have shut the entire thing down a few times recently and that is the only commonality I can see in the Dw failures.
    Help?
    I have all of my software updated and my anti-virus is up to date. I am a graphic and web design student, in my last year at University, so I am only halfway as proficient as most of you all, so it may be something obvious, but I just can't figure it out.
    Thanks.

    If it's only happening recently perform the following steps.  First, if you have added any extensions recently, disable them.  Next, go to your user Library->Preferences folder and delete the .plist file with Dreamweaver in the name.  This will delete program prefernces such as window layout and other program related settings.  This will not affected saved Sites.  Then re-open DW and it may take longer while the preferences file is re-created.  See if that helps.
    If it does not help, run a repair permissions from the disk utility in the utilities folder and post back when it's done.  If you have urgent work that needs to be done, you can try logging in as a different user (creating an account if one does not exist) and see if that helps.

  • CS5 setup impossible : WARNING: Payload cannot be installed due to dependent operation failure...

    Please Help
    ! it's a nightmare,
    I have mailnly this : What the hell is this ? Help please
    I'm on Windows 7 - 64...
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 65 error(s), 65 warning(s)
    WARNING: OS requirements not met for {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    WARNING: OS requirements not met for {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure

    @Matthew Laun:
    Hopefully you can help me! I am going absolutely nuts!  I have a 32-bit OS (Windows Vista) and am having this installation issue Flash CS5 (selecting trial when installing). Here is a link to full error log: https://www.yousendit.com/download/dklyZGVRTXZUME0wTVE9PQ.
    Note: I installed Dreamweaver CS5 a few months ago with no issue at all. Both trial and then purchased software.
    Thank you in advance for any assistance!
    I have also just listed it here:
    [    4588] Tue Nov 09 14:49:49 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.0.121.0
    Win OS version: 6.0.1.0  Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 40453.7 miliseconds (40.4537 seconds) DTR = 14.1396 KBPS (0.0138082 MBPS)
    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 7166.45 miliseconds (7.16645 seconds) DTR = 1068.31 KBPS (1.04327 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCSXSInfrastructure2-mul\Install.db
    Updating media info for: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_ATL_x86\Microsoft_VC90_ATL_x86.msi
    Updating media info for: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAMP1.8-mul\AdobeAIRInstaller.exe
    Updating media info for: {03EEF3DA-71F9-4FE5-92AD-D10142E26459}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\SiteCatalystNetAverages1-mul\Install.db
    Updating media info for: {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeLinguisticsAll_x64\Install.db
    Updating media info for: {08D2E121-7F6A-43EB-97FD-629B44903403}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_CRT_x86\Microsoft_VC90_CRT_x86.msi
    Updating media info for: {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-zh_CN\Install.db
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeBridge4-mul\Install.db
    Updating media info for: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_ATL_x86\Microsoft_VC80_ATL_x86.msi
    Updating media info for: {14A2CC02-4638-405D-8190-ECD7BFD32D6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlash11-en_USLanguagePack\Install.db
    Updating media info for: {17C6080E-F475-4B49-A30C-EEB85673E999}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFL9.9_x64-mul\Install.db
    Updating media info for: {1D809D80-28A4-11DF-A816-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-en_US\Install.db
    Updating media info for: {1D830E80-28A4-11DF-A025-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-en_GB\Install.db
    Updating media info for: {1D855870-28A4-11DF-9731-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-de_DE\Install.db
    Updating media info for: {1D87C970-28A4-11DF-BC69-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fr_FR\Install.db
    Updating media info for: {1D87C971-28A4-11DF-A2FB-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fr_CA\Install.db
    Updating media info for: {1D87C972-28A4-11DF-B794-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ja_JP\Install.db
    Updating media info for: {1D8A135E-28A4-11DF-B54E-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-it_IT\Install.db
    Updating media info for: {1D8A135F-28A4-11DF-A7C5-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-es_ES\Install.db
    Updating media info for: {1D8A1360-28A4-11DF-B5B3-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-es_MX\Install.db
    Updating media info for: {1D8C8461-28A4-11DF-871D-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-nl_NL\Install.db
    Updating media info for: {1D8EF561-28A4-11DF-9561-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-sv_SE\Install.db
    Updating media info for: {1D8EF562-28A4-11DF-8D7D-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fi_FI\Install.db
    Updating media info for: {1D8EF563-28A4-11DF-AF1B-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-nb_NO\Install.db
    Updating media info for: {1D913F4F-28A4-11DF-AE84-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-da_DK\Install.db
    Updating media info for: {1D913F50-28A4-11DF-A78A-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-pt_BR\Install.db
    Updating media info for: {1D913F51-28A4-11DF-91B7-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-zh_CN\Install.db
    Updating media info for: {1D93B04F-28A4-11DF-AA22-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-zh_TW\Install.db
    Updating media info for: {1D93B050-28A4-11DF-B472-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ko_KR\Install.db
    Updating media info for: {1D93B051-28A4-11DF-A202-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-cs_CZ\Install.db
    Updating media info for: {1D95FA40-28A4-11DF-90FF-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-pl_PL\Install.db
    Updating media info for: {1D95FA41-28A4-11DF-85FA-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ru_RU\Install.db
    Updating media info for: {1D95FA42-28A4-11DF-9C38-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-tr_TR\Install.db
    Updating media info for: {1D986B40-28A4-11DF-BD12-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-uk_UA\Install.db
    Updating media info for: {1D986B41-28A4-11DF-BCC6-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-hu_HU\Install.db
    Updating media info for: {1DA90D10-28A4-11DF-937C-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ro_RO\Install.db
    Updating media info for: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-en_US\Install.db
    Updating media info for: {2CDBD42B-6184-41BD-9662-A13C3BA09BFA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-it_IT\Install.db
    Updating media info for: {2E18F0BB-569A-4788-A276-FAA40BB923F0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ja_JP\Install.db
    Updating media info for: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeXMPPanelsAll\Install.db
    Updating media info for: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAPE3-mul\Install.db
    Updating media info for: {30221E3E-4C47-4560-A296-DD9ABB500C21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-mul\Install.db
    Updating media info for: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeSuiteSharedConfiguration-mul\Install.db
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRaw6.0All\Install.db
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorCommonSetCMYK3-mul\Install.db
    Updating media info for: {3BF96AC2-0CA1-11DF-B07B-459956D89593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeHelp\AIRInstallerRunner.exe
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRawProfile6.0All\Install.db
    Updating media info for: {40F95A03-885A-45fb-9A14-486BEFEDDF34}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlashPlayer10_plRel_mul\AdobeFlashPlayer10_plRel_mul.msi
    Updating media info for: {4423F304-2C6B-49FB-AB2C-6C7649A5ED21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-nl_NL\Install.db
    Updating media info for: {44F29300-6E52-496A-9B77-531A68E8508A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-zh_TW\Install.db
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorJA_ExtraSettings3-mul\Install.db
    Updating media info for: {56540320-C921-1029-83D9-FE864D1FC1DF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeReviewPanel2-mul\Install.db
    Updating media info for: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-mul\Install.db
    Updating media info for: {593B4750-2F16-4193-A3FA-40F49BD7A906}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ru_RU\Install.db
    Updating media info for: {597059F2-9EC9-46A5-9EA2-BDBDF354732B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ko_KR\Install.db
    Updating media info for: {5E08533A-2C1B-469D-AFD5-953C9D00031F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\BrowserLabCSLive-mul\Install.db
    Updating media info for: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRaw6.0All-x64\Install.db
    Updating media info for: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\iPhone_Flash11-mul\Install.db
    Updating media info for: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_MFC_x86\Microsoft_VC90_MFC_x86.msi
    Updating media info for: {66173EC7-974E-4652-9468-4A93D2481BF0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeStoryExtension-mul\Install.db
    Updating media info for: {68CEA5C9-2964-4ECB-84A4-D77C511332BC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AMECore5All_x64\Install.db
    Updating media info for: {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AMECore5All\Install.db
    Updating media info for: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeLinguisticsAll\Install.db
    Updating media info for: {6D96660C-1444-410E-9A84-681C0AFB8937}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFSettings10-mul\AdobePDFSettings10-mul.msi
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeDeviceCentral3-all\Install.db
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorEU_ExtraSettings3-mul\Install.db
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeTypeSupport10-mul\Install.db
    Updating media info for: {73083037-24CD-4F25-AE12-100EBE3B198D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-fr_FR\Install.db
    Updating media info for: {76BF7895-72EB-4DFC-8FF9-2007A8228D9C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-zh_TW\Install.db
    Updating media info for: {76F9EEBC-B28D-475B-921E-84271789649C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-tr_TR\Install.db
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorCommonSetRGB3-mul\Install.db
    Updating media info for: {7A33510F-1580-42C2-877E-8C5502566292}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAPE3_x64-mul\Install.db
    Updating media info for: {7B84FFBD-594D-4269-AC87-E19B44417B8F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-de_DE\Install.db
    Updating media info for: {7E5AA19B-0B85-4f44-BA26-728851489200}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlashPlayer10_axRel_mul\AdobeFlashPlayer10_axRel_mul.msi
    Updating media info for: {8557397C-A42D-486F-97B3-A2CBC2372593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_ATL_x86_x64\Microsoft_VC90_ATL_x86_x64.msi
    Updating media info for: {880E072B-D613-4D7A-BD22-55AD5D22C2A9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-zh_CN\Install.db
    Updating media info for: {8B28A565-4AAD-4803-8EE8-F1791E6AD4AC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-pl_PL\Install.db
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCSXSExtensions2-mul\Install.db
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeOutputModuleAll\Install.db
    Updating media info for: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_CRT_x86_x64\Microsoft_VC90_CRT_x86_x64.msi
    Updating media info for: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Updating media info for: {955EB78F-C938-4EA8-8470-C6EA71685834}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-en_US\Install.db
    Updating media info for: {95648BD5-9496-4BB7-BE93-303FDB5B6B72}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-pt_BR\Install.db
    Updating media info for: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCMaps3_x64-mul\Install.db
    Updating media info for: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeTypeSupport10_x64-mul\Install.db
    Updating media info for: {9D2819E4-C51E-4C89-8E28-673B9909A536}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-es_ES\Install.db
    Updating media info for: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_MFC_x86_x64\Microsoft_VC90_MFC_x86_x64.msi
    Updating media info for: {A8798E04-96FF-4564-9157-0D4C89CB794C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeDynamiclinkSupport5All\Install.db
    Updating media info for: {AE9B837F-D135-42FC-BE03-33545B5DCBDC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeWinSoftLinguisticsPluginAll\Install.db
    Updating media info for: {B2518294-C06E-44F2-8B1E-1002DD41A6B3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-fr_FR\Install.db
    Updating media info for: {B55FDCCB-8A45-4943-8D90-585C3490A032}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeWinSoftLinguisticsPluginAll_x64\Install.db
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorEU_Recommended3-mul\Install.db
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFL9.9-mul\Install.db
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCMaps3-mul\Install.db
    Updating media info for: {BD4CFD2A-02C1-4FBE-AF9E-863A9981421A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-sv_SE\Install.db
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorNA_ExtraSettings3-mul\Install.db
    Updating media info for: {C26277B5-5561-4C5C-85E9-D777E0386F6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ja_JP\Install.db
    Updating media info for: {C52DC2CA-7BEE-440A-8A0F-23EBA0D3A00D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-es_ES\Install.db
    Updating media info for: {C533676C-7A2F-4BCC-BA04-439C93C6DC0F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-pt_BR\Install.db
    Updating media info for: {C9A98E0C-B50E-472A-ADCC-2830F48EF91D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-nl_NL\Install.db
    Updating media info for: {CC62B471-53FE-4451-8867-F3AA43F3FA31}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-cs_CZ\Install.db
    Updating media info for: {CE0BF4F8-F592-4461-91AE-7C15AF19CFDF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ko_KR\Install.db
    Updating media info for: {CE8FB687-571B-4E4B-881B-445824993FC3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-de_DE\Install.db
    Updating media info for: {CFA46C39-C539-4BE9-9364-495003C714AD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\SwitchBoard2.0All\Install.db
    Updating media info for: {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlash11-mul\Install.db
    Updating media info for: {D1A19B02-817E-4296-A45B-07853FD74D57}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_MFC_x86\Microsoft_VC80_MFC_x86.msi
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorNA_Recommended3-mul\Install.db
    Updating media info for: {D343E9D0-DD59-45CD-8939-896660D70435}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-tr_TR\Install.db
    Updating media info for: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\aifsdk-win\Install.db
    Updating media info for: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_MFCLOC_x86\Microsoft_VC80_MFCLOC_x86.msi
    Updating media info for: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFSettings10-ja_JP\AdobePDFSettings10-ja_JP.msi
    Updating media info for: {E319B9F9-4DE6-462C-970B-77D06C7807EE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Players_Flash11-mul\Install.db
    Updating media info for: {E3354D9C-31B9-4391-8004-92B3FF074762}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ru_RU\Install.db
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeExtensionManager5.0All\Install.db
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorJA_Recommended3-mul\Install.db
    Updating media info for: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeJRECS5-mul\Install.db
    Updating media info for: {E796AA2F-D55C-47D6-887F-24B90AC5151B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-pl_PL\Install.db
    Updating media info for: {E995AC53-954A-48D2-A861-613B8D42A9BE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeExtendScriptToolkit3.5.0-mul\Install.db
    Updating media info for: {ECB4C6D6-54BF-40FD-96ED-80F36CFE11EA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-cs_CZ\Install.db
    Updating media info for: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\TLF_Flash11-mul\Install.db
    Updating media info for: {F6FA54C9-3E8F-4416-905C-DA5398DF9640}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAIR1.5.3-mul\AdobeAIRInstaller.exe
    Updating media info for: {F9E77304-0ACA-454A-AFD5-9B79CF94B184}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-it_IT\Install.db
    Updating media info for: {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-sv_SE\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,3.0.121.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [    4588] Tue Nov 09 14:49:50 2010  INFO
    ______ Verify Dependency Subscribers ______
    [    4588] Tue Nov 09 14:49:50 2010 ERROR
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Player for Embedding x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: Shared Technology
        ProductName: Photoshop Camera Raw (64 bit)
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeCMaps x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Linguistics CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobePDFL x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeTypeSupport x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    [    4588] Tue Nov 09 14:49:50 2010  WARN
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has recommended dependency on:
        Family: Adobe Web Suite CS5
        ProductName: Adobe Media Encoder CS5 X64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this payload from the dependency list.
    [    4588] Tue Nov 09 14:49:50 2010  INFO
    Setting property "INSTALLDIR" to: C:\Program Files\Adobe
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5
    Overwrite property "userASUPath" to: C:\Users\Owner\AppData\Local\Adobe\OOBE\PDApp\
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {D7BF3B76-EEF9-4868-9B2B-42ABF60B279A} Microsoft_VC80_CRT_x86 is: true
    Action string for  {D7BF3B76-EEF9-4868-9B2B-42ABF60B279A} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 is: true
    Action string for  {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 is: true
    Action string for  {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86  is none
    Value returned on lookup of payload: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86 is: true
    Action string for  {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86  is none
    Value returned on lookup of payload: {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86 is: true
    Action string for  {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86  is none
    Value returned on lookup of payload: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding is: true
    Action string for  {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding  is none
    Value returned on lookup of payload: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86 is: true
    Action string for  {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 is: true
    Action string for  {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86  is none
    Value returned on lookup of payload: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE is: true
    Action string for  {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer is: false
    Action string for  {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer  is none
    Value returned on lookup of payload: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86 is: true
    Action string for  {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86  is none
    Value returned on lookup of payload: {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 is: true
    Action string for  {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5  is none
    Value returned on lookup of payload: {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport is: false
    Action string for  {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport  is none
    Value returned on lookup of payload: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 is: true
    Action string for  {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5  is none
    Value returned on lookup of payload: {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp is: true
    Action string for  {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp  is none
    Value returned on lookup of payload: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 is: false
    Action string for  {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 is: false
    Action string for  {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5  is none
    Value returned on lookup of payload: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule is: false
    Action string for  {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 is: false
    Action string for  {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 is: false
    Action string for  {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw is: false
    Action string for  {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw  is none
    Value returned on lookup of payload: {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5 is: true
    Action string for  {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is: true
    Action string for  {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5  is none
    Value returned on lookup of payload: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 is: true
    Action string for  {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5  is none
    Value returned on lookup of payload: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit is: false
    Action string for  {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit  is none
    Value returned on lookup of payload: {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro is: false
    Action string for  {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro  is none
    Value returned on lookup of payload: {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN is: false
    Action string for  {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN  is none
    Payload {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT is: false
    Action string for  {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT  is none
    Payload {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU is: false
    Action string for  {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU  is none
    Payload {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP is: false
    Action string for  {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP  is none
    Payload {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW is: false
    Action string for  {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW  is none
    Payload {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL is: false
    Action string for  {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL  is none
    Payload {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is: false
    Action string for  {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US  is none
    Payload {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES is: false
    Action string for  {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES  is none
    Payload {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE is: false
    Action string for  {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE  is none
    Payload {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR is: false
    Action string for  {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR  is none
    Payload {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ is: false
    Action string for  {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ  is none
    Payload {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE is: false
    Action string for  {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE  is none
    Payload {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR is: false
    Action string for  {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR  is none
    Payload {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR is: false
    Action string for  {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR  is none
    Payload {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR is: false
    Action string for  {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR  is none
    Payload {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL is: false
    Action string for  {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL  is none
    Payload {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR is: true
    Action string for  {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR  is none
    Value returned on lookup of payload: {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live is: false
    Action string for  {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live  is none
    Value returned on lookup of payload: {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX is: false
    Action string for  {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX  is none
    Value returned on lookup of payload: {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin is: false
    Action string for  {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin  is none
    Value returned on lookup of payload: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player is: true
    Action string for  {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player  is none
    Value returned on lookup of payload: {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5 is: true
    Action string for  {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5  is none
    Value returned on lookup of payload: {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5 is: false
    Action string for  {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5  is none
    Value returned on lookup of payload: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK is: false
    Action string for  {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK  is none
    Value returned on lookup of payload: {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB is: false
    Action string for  {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB  is none
    Value returned on lookup of payload: {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 is: false
    Action string for  {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 is: false
    Action string for  {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 is: false
    Action string for  {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 is: false
    Action string for  {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 is: false
    Action string for  {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 is: false
    Action string for  {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension is: true
    Action string for  {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension  is none
    Value returned on lookup of payload: {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5 is: false
    Action string for  {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5  is none
    Value returned on lookup of payload: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5 is: false
    Action string for  {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5  is none
    Value returned on lookup of payload: {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro is: false
    Action string for  {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro  is none
    Value returned on lookup of payload: {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages is: true
    Action string for  {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages  is none
    Value returned on lookup of payload: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro is: false
    Action string for  {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro  is none
    Value returned on lookup of payload: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing is: false
    Action string for  {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing  is none
    Value returned on lookup of payload: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5 is: true
    Action string for  {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5  is none
    Value returned on lookup of payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 is: false
    Action string for  {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0  is none
    Value returned on lookup of payload: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral is: true
    Action string for  {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral  is none
    Value returned on lookup of payload: {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT is: false
    Action string for  {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT  is none
    Payload {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ is: false
    Action string for  {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ  is none
    Payload {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is: false
    Action string for  {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB  is none
    Payload {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE is: false
    Action string for  {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE  is none
    Payload {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR is: false
    Action string for  {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR  is none
    Payload {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI is: false
    Action string for  {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI  is none
    Payload {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES is: false
    Action string for  {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES  is none
    Payload {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8A1360-28A4-11DF-B5B3-0024E8692489} DeviceCentral_DeviceCentral3LP-es_MX is: false
    Action string for  {1D8A1360-28A4-11DF-B5B3-0024E8692489} DeviceCentral_DeviceCentral3LP-es_MX  is none
    Payload {1D8A1360-

  • CS5 Design Premium Windows Upgrade Install Failure

    Hi,
    I have been trying since receiving CS5 Design Premium upgrade (3 set DVD) for Windows yesterday to install it on my Windows 7 64 bit computer, without success. I have been on the phone several times for several hours with Adobe support with no successful solution. The support person has escalated the case to the next level, which I am told will take a few days to get to my case. Ugh!
    In the meanwhile, I have tried most possible solutions in these forum threads, none so far has succeeded.
    I've tried removing CS4 Design Premium first, tried to install from a downloaded trial version with and without using serial number. I've tried selective start-up, am the only user with administrative rights, but am right-clicking as administrator to launch anyway. I've installed the latest MS Visual C redistributable, used the CS 4 (when CS4 was removed) and CS5 clean scripts. Since the Adobe Install Advisor early on suggested fixing the color profiles (though this referred to CS4 which had been removed at that point), I followed that knowledge base guide. I extracted the trial download to the C drive and tried to install from there. All to no joy.
    From checking the install logs, a second error with an error return of 3 is
    Microsoft_VC90_ATL_x86: Install failed. This seems to be the only error return 3. This error was why I installed the latest VC redistributable and why I tried to extract and boot the trial download from the C drive instead of the desktop. Unfortunately, didn't help.
    One interesting note: when I have uninstalled CS4 (which was an upgrade to CS3 which is no longer installed), even with deactivating and checking the box to remove old serial numbers, the CS5 upgrade installer does not ask for a qualifying serial number, just the new upgrade's serial number. So, it must be finding something from CS4?
    I also read on this forum that someone succeeded by going to the downloaded trial version's payload folder and separately running each MS msi (install, repair, uninstall) which then fixed them. While the first 3 worked fine, what I found is that the fourth msi that I tried to run in the payload folder failed to fully run and install. So, there must be something broken in that msi. I didn't go to the fifth, but it is possible that a few of the msi installers in the payload are not working. I also went to the same msi in the installation DVD's payload folder: it also failed to run fully and rolled back. Same problem. The broken msi: Microsoft_VC80_CRT_x86_x64. Error message 1935:
    HRESULT: 0x80073712. Component: 844EFBA7-1C24-93B2-A01F-C8B3B9A1E18E
    I am not sure how to fix broken msi's? I checked permissions: the msi's have correct permissions. I have the Windows Installer 5 on my Windows 7 x 64 computer.
    At this point, I've run out of possible remedies.
    The error log follows. I am hoping someone can suggest a solution to get CS5 upgrade installed.
    Kind Regards,
    saratogacoach
    [     196] Thu May 06 10:31:13 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.0.122.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 install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 7009.49 miliseconds (7.00949 seconds) DTR = 7419.08 KBPS (7.2452 MBPS)
    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 10496.8 miliseconds (10.4968 seconds) DTR = 3444.87 KBPS (3.36413 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: E:\Adobe CS5
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCSXSInfrastructure2-mul\Install.db
    Updating media info for: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_ATL_x86\Microsoft_VC90_ATL_x86.msi
    Updating media info for: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeAMP1.8-mul\AdobeAIRInstaller.exe
    Updating media info for: {03EEF3DA-71F9-4FE5-92AD-D10142E26459}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\SiteCatalystNetAverages1-mul\Install.db
    Updating media info for: {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeLinguisticsAll_x64\Install.db
    Updating media info for: {08D2E121-7F6A-43EB-97FD-629B44903403}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_CRT_x86\Microsoft_VC90_CRT_x86.msi
    Updating media info for: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-Support\Install.db
    Updating media info for: {0A9AAB1E-0FEA-1033-851A-888C0B8E78B5}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7CommonLang-en_US\Install.db
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeBridge4-mul\Install.db
    Updating media info for: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_ATL_x86\Microsoft_VC80_ATL_x86.msi
    Updating media info for: {11C0657F-2BD4-4CBC-87F3-9455DC91886E}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFontsRecommended_x64-mul\Install.db
    Updating media info for: {14A2CC02-4638-405D-8190-ECD7BFD32D6E}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlash11-en_USLanguagePack\Install.db
    Updating media info for: {157D044B-C60D-1015-B0DB-A40823CC0F49}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeToolhints-mul\Install.db
    Updating media info for: {164965E8-4BB0-4EEB-AFBA-75785A2A2A7F}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFireworks11All\Install.db
    Updating media info for: {17C6080E-F475-4B49-A30C-EEB85673E999}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePDFL9.9_x64-mul\Install.db
    Updating media info for: {1D809D80-28A4-11DF-A816-0024E8692489}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\DeviceCentral3LP-en_US\Install.db
    Updating media info for: {1D830E80-28A4-11DF-A025-0024E8692489}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\DeviceCentral3LP-en_GB\Install.db
    Updating media info for: {1E9FC118-651D-4934-97BE-E53CAE5C7D45}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_MFCLOC_x86_x64\Microsoft_VC80_MFCLOC_x86_x64.msi
    Updating media info for: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeMobileExtension_Flash11-en_US\Install.db
    Updating media info for: {26B63C3A-0BFF-1033-B389-A7ACEC31657E}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7AppLang-en_GB\Install.db
    Updating media info for: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeXMPPanelsAll\Install.db
    Updating media info for: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeAPE3-mul\Install.db
    Updating media info for: {30221E3E-4C47-4560-A296-DD9ABB500C21}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AIR2_Flash11-mul\Install.db
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCameraRaw6.0All\Install.db
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    [     196] Thu May 06 10:31:14 2010  INFO
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorCommonSetCMYK3-mul\Install.db
    Updating media info for: {3A8C7CB3-2A2E-4EB9-99C9-DF08C324BA70}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFireworks11en_USLanguagePack\Install.db
    Updating media info for: {3BF96AC2-0CA1-11DF-B07B-459956D89593}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeHelp\AIRInstallerRunner.exe
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCameraRawProfile6.0All\Install.db
    Updating media info for: {3F6B5CAC-733F-1029-B5BD-C0F5E35809F0}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeBuzzword-mul\Install.db
    Updating media info for: {40F95A03-885A-45fb-9A14-486BEFEDDF34}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlashPlayer10_plRel_mul\AdobeFlashPlayer10_plRel_mul.msi
    Updating media info for: {4438C826-1FD0-4D04-A70B-24FE1580AB21}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeMiniBridge1-mul\Install.db
    Updating media info for: {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_CRT_x86_x64\Microsoft_VC80_CRT_x86_x64.msi
    Updating media info for: {4C08199E-0D93-4227-8325-F024E71CA7A1}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeSING3-mul\Install.db
    Updating media info for: {50A16F0B-47DA-4583-B4FE-E026719A2024}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-en_US_x64\Install.db
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorJA_ExtraSettings3-mul\Install.db
    Updating media info for: {56540320-C921-1029-83D9-FE864D1FC1DF}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeReviewPanel2-mul\Install.db
    Updating media info for: {5658F35F-15B9-1033-8337-97B78F2D0BE0}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7IconHandler64-mul\Install.db
    Updating media info for: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeMobileExtension_Flash11-mul\Install.db
    Updating media info for: {5E08533A-2C1B-469D-AFD5-953C9D00031F}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\BrowserLabCSLive-mul\Install.db
    Updating media info for: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCameraRaw6.0All-x64\Install.db
    Updating media info for: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\iPhone_Flash11-mul\Install.db
    Updating media info for: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_MFC_x86\Microsoft_VC90_MFC_x86.msi
    Updating media info for: {66173EC7-974E-4652-9468-4A93D2481BF0}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeStoryExtension-mul\Install.db
    Updating media info for: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-Core_x64\Install.db
    Updating media info for: {68CEA5C9-2964-4ECB-84A4-D77C511332BC}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AMECore5All_x64\Install.db
    Updating media info for: {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AMECore5All\Install.db
    Updating media info for: {69582206-7E5D-4476-A8F4-ECF90E9C8A69}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-en_US\Install.db
    Updating media info for: {6B485102-4593-43F6-BA45-F14D690B0C64}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeSuiteSharedConfiguration-mul\Install.db
    Updating media info for: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeLinguisticsAll\Install.db
    Updating media info for: {6D96660C-1444-410E-9A84-681C0AFB8937}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePDFSettings10-mul\AdobePDFSettings10-mul.msi
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeDeviceCentral3-all\Install.db
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorEU_ExtraSettings3-mul\Install.db
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeTypeSupport10-mul\Install.db
    Updating media info for: {73A4DC5E-226E-42BA-8ECA-2822592AC044}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeVideoProfilesCS3-mul\Install.db
    Updating media info for: {7745F18B-FD8A-4011-BE16-588900C503D0}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlashFonts1-mul\Install.db
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorCommonSetRGB3-mul\Install.db
    Updating media info for: {7A33510F-1580-42C2-877E-8C5502566292}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeAPE3_x64-mul\Install.db
    Updating media info for: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-Core\Install.db
    Updating media info for: {7E5AA19B-0B85-4f44-BA26-728851489200}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlashPlayer10_axRel_mul\AdobeFlashPlayer10_axRel_mul.msi
    Updating media info for: {7EB208EE-0C2B-1033-A6DC-E1BD0289A1F4}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7AppLang-en_US\Install.db
    Updating media info for: {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFontsRequired_x64-mul\Install.db
    Updating media info for: {805ABF27-1582-1033-B4AC-82A1DE0DD827}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7CommonBase-mul\Install.db
    Updating media info for: {8557397C-A42D-486F-97B3-A2CBC2372593}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_ATL_x86_x64\Microsoft_VC90_ATL_x86_x64.msi
    Updating media info for: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-en_GB\Install.db
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCSXSExtensions2-mul\Install.db
    Updating media info for: {925D058B-564A-443A-B4B2-7E90C6432E55}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_ATL_x86_x64\Microsoft_VC80_ATL_x86_x64.msi
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeOutputModuleAll\Install.db
    Updating media info for: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_CRT_x86_x64\Microsoft_VC90_CRT_x86_x64.msi
    Updating media info for: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Updating media info for: {955EB78F-C938-4EA8-8470-C6EA71685834}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AIR2_Flash11-en_US\Install.db
    Updating media info for: {966B69F2-0FBD-1033-B01C-D13C02FFF33F}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7CommonLang-en_GB\Install.db
    Updating media info for: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCMaps3_x64-mul\Install.db
    Updating media info for: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeTypeSupport10_x64-mul\Install.db
    Updating media info for: {9B97EC91-B3FD-4BFF-88FC-5345A26AC2E7}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeIllustrator15-mul\Install.db
    Updating media info for: {A1BC7068-C1BA-410F-8B9A-DB807C803DE2}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeDesignPremium5-mul\Install.db
    Updating media info for: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC90_MFC_x86_x64\Microsoft_VC90_MFC_x86_x64.msi
    Updating media info for: {A47C8AE9-D51B-4A58-A051-396158FC3012}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePhotoshop12-en_GB_x64\Install.db
    Updating media info for: {A8798E04-96FF-4564-9157-0D4C89CB794C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeDynamiclinkSupport5All\Install.db
    Updating media info for: {AE9B837F-D135-42FC-BE03-33545B5DCBDC}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeWinSoftLinguisticsPluginAll\Install.db
    Updating media info for: {B55FDCCB-8A45-4943-8D90-585C3490A032}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeWinSoftLinguisticsPluginAll_x64\Install.db
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorEU_Recommended3-mul\Install.db
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePDFL9.9-mul\Install.db
    Updating media info for: {BB024724-14D5-4AB6-B21C-74EDA63A0A39}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\HIL_Help_Search\Install.db
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeCMaps3-mul\Install.db
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorNA_ExtraSettings3-mul\Install.db
    Updating media info for: {C79312BD-3E76-4474-A10C-1435D1856A4B}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeDreamweaver11-mul\Install.db
    Updating media info for: {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_MFC_x86_x64\Microsoft_VC80_MFC_x86_x64.msi
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFontsRequired-mul\Install.db
    Updating media info for: {CFA46C39-C539-4BE9-9364-495003C714AD}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\SwitchBoard2.0All\Install.db
    Updating media info for: {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlash11-mul\Install.db
    Updating media info for: {D0DAEA50-AD52-4BF9-AD5F-3E09564A8692}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeIllustrator15en_GBLanguagePack\Install.db
    Updating media info for: {D1A19B02-817E-4296-A45B-07853FD74D57}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_MFC_x86\Microsoft_VC80_MFC_x86.msi
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorNA_Recommended3-mul\Install.db
    Updating media info for: {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorPhotoshop3-mul\Install.db
    Updating media info for: {D3A8C87E-ED6A-41DB-8B21-C29EDA65B154}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeIllustrator15en_USLanguagePack\Install.db
    Updating media info for: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\aifsdk-win\Install.db
    Updating media info for: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Microsoft_VC80_MFCLOC_x86\Microsoft_VC80_MFCLOC_x86.msi
    Updating media info for: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobePDFSettings10-ja_JP\AdobePDFSettings10-ja_JP.msi
    Updating media info for: {DEC9BB26-1381-1033-A965-E3BD5F2EF8BC}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7AppBase2-mul\Install.db
    Updating media info for: {E319B9F9-4DE6-462C-970B-77D06C7807EE}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\Players_Flash11-mul\Install.db
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFontsRecommended-mul\Install.db
    Updating media info for: {E3E040E8-4CCD-4C71-8BAF-80BB2AD5DA04}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeDreamweaver11en_USLanguagePack\Install.db
    Updating media info for: {E4CB336B-159D-1033-B84D-B9A01A0BE4A9}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7IconHandler-mul\Install.db
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeExtensionManager5.0All\Install.db
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeColorJA_Recommended3-mul\Install.db
    Updating media info for: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeJRECS5-mul\Install.db
    Updating media info for: {E8815668-95B0-443D-AC92-2BFD7DD8F16A}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFlashCatalyst-mul\Install.db
    Updating media info for: {E995AC53-954A-48D2-A861-613B8D42A9BE}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeExtendScriptToolkit3.5.0-mul\Install.db
    Updating media info for: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\TLF_Flash11-mul\Install.db
    Updating media info for: {F6CCA85F-7527-4AFF-82B6-26532A74A244}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeFireworks11en_GBLanguagePack\Install.db
    Updating media info for: {F6FA54C9-3E8F-4416-905C-DA5398DF9640}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeAIR1.5.3-mul\AdobeAIRInstaller.exe
    Updating media info for: {F9766AC1-1461-1033-B862-DF8FE1C033BE}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7AppBase-mul\Install.db
    Updating media info for: {FD5603A3-1375-1033-872D-8F09140FFDB2}
      Type: 1, Volume Order: 1, Media Name: CS5 Design Prem1
      Path: E:\Adobe CS5\payloads\AdobeInDesign7AppFSet-Roman\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,3.0.122.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [     196] Thu May 06 10:31:15 2010  INFO
    ______ Verify Dependency Subscribers ______
    Setting property "INSTALLDIR" to: C:\Program Files\Adobe
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: E:\Adobe CS5
    Overwrite property "userASUPath" to: C:\Users\Stephen\AppData\Local\Adobe\OOBE\PDApp\
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 is: false
    Action string for  {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86  is none
    Value returned on lookup of payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 is: false
    Action string for  {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86 is: false
    Action string for  {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86  is none
    Value returned on lookup of payload: {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86 is: false
    Action string for  {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86  is none
    Value returned on lookup of payload: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding is: false
    Action string for  {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 is: false
    Action string for  {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86  is none
    Value returned on lookup of payload: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86 is: false
    Action string for  {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86  is none
    Value returned on lookup of payload: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE is: false
    Action string for  {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer is: false
    Action string for  {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer  is none
    Value returned on lookup of payload: {6B485102-4593-43F6-BA45-F14D690B0C64} Suite Shared Configuration CS5 is: false
    Action string for  {6B485102-4593-43F6-BA45-F14D690B0C64} Suite Shared Configuration CS5  is none
    Value returned on lookup of payload: {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 is: false
    Action string for  {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 is: false
    Action string for  {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 is: false
    Action string for  {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5  is none
    Value returned on lookup of payload: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86 is: false
    Action string for  {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86  is none
    Value returned on lookup of payload: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule is: false
    Action string for  {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 is: false
    Action string for  {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5  is none
    Value returned on lookup of payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 is: false
    Action string for  {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0  is none
    Value returned on lookup of payload: {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport is: false
    Action string for  {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport  is none
    Value returned on lookup of payload: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26} Microsoft_VC90_CRT_x86_x64 is: false
    Action string for  {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26} Microsoft_VC90_CRT_x86_x64  is none
    Value returned on lookup of payload: {8557397C-A42D-486F-97B3-A2CBC2372593} Microsoft_VC90_ATL_x86_x64 is: false
    Action string for  {8557397C-A42D-486F-97B3-A2CBC2372593} Microsoft_VC90_ATL_x86_x64  is none
    Value returned on lookup of payload: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB} Microsoft_VC90_MFC_x86_x64 is: false
    Action string for  {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB} Microsoft_VC90_MFC_x86_x64  is none
    Value returned on lookup of payload: {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp is: false
    Action string for  {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is: false
    Action string for  {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5  is none
    Value returned on lookup of payload: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 is: false
    Action string for  {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5  is none
    Value returned on lookup of payload: {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5 is: false
    Action string for  {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw is: false
    Action string for  {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw  is none
    Value returned on lookup of payload: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 is: false
    Action string for  {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5  is none
    Value returned on lookup of payload: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK is: false
    Action string for  {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK  is none
    Value returned on lookup of payload: {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB is: false
    Action string for  {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB  is none
    Value returned on lookup of payload: {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 is: false
    Action string for  {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 is: false
    Action string for  {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 is: false
    Action string for  {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 is: false
    Action string for  {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 is: false
    Action string for  {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 is: false
    Action string for  {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5 is: false
    Action string for  {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5  is none
    Value returned on lookup of payload: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support is: false
    Action string for  {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support  is none
    Value returned on lookup of payload: {DEC9BB26-1381-1033-A965-E3BD5F2EF8BC} Adobe InDesign CS5 Application Base Files2 is: false
    Action string for  {DEC9BB26-1381-1033-A965-E3BD5F2EF8BC} Adobe InDesign CS5 Application Base Files2  is none
    Value returned on lookup of payload: {FD5603A3-1375-1033-872D-8F09140FFDB2} Adobe InDesign CS5 Application Feature Set Files is: false
    Action string for  {FD5603A3-1375-1033-872D-8F09140FFDB2} Adobe InDesign CS5 Application Feature Set Files  is none
    Value returned on lookup of payload: {805ABF27-1582-1033-B4AC-82A1DE0DD827} Adobe InDesign CS5 Common Base Files is: false
    Action string for  {805ABF27-1582-1033-B4AC-82A1DE0DD827} Adobe InDesign CS5 Common Base Files  is none
    Value returned on lookup of payload: {925D058B-564A-443A-B4B2-7E90C6432E55} Microsoft_VC80_ATL_x86_x64 is: false
    Action string for  {925D058B-564A-443A-B4B2-7E90C6432E55} Microsoft_VC80_ATL_x86_x64  is none
    Value returned on lookup of payload: {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1} Microsoft_VC80_CRT_x86_x64 is: false
    Action string for  {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1} Microsoft_VC80_CRT_x86_x64  is none
    Value returned on lookup of payload: {1E9FC118-651D-4934-97BE-E53CAE5C7D45} Microsoft_VC80_MFCLOC_x86_x64 is: false
    Action string for  {1E9FC118-651D-4934-97BE-E53CAE5C7D45} Microsoft_VC80_MFCLOC_x86_x64  is none
    Value returned on lookup of payload: {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3} Microsoft_VC80_MFC_x86_x64 is: false
    Action string for  {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3} Microsoft_VC80_MFC_x86_x64  is none
    Value returned on lookup of payload: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit is: false
    Action string for  {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit  is none
    Value returned on lookup of payload: {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR is: false
    Action string for  {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR  is none
    Value returned on lookup of payload: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player is: false
    Action string for  {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player  is none
    Value returned on lookup of payload: {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5 is: false
    Action string for  {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5  is none
    Value returned on lookup of payload: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral is: false
    Action string for  {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral  is none
    Value returned on lookup of payload: {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US is: false
    Action string for  {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US  is none
    Payload {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is: false
    Action string for  {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB  is none
    Payload {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5 is: false
    Action string for  {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5  is none
    Value returned on lookup of payload: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5 is: false
    Action string for  {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5  is none
    Value returned on lookup of payload: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5 is: false
    Action string for  {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5  is none
    Value returned on lookup of payload: {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 is: false
    Action string for  {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5  is none
    Value returned on lookup of payload: {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension is: false
    Action string for  {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension  is none
    Value returned on lookup of payload: {BB024724-14D5-4AB6-B21C-74EDA63A0A39} HIL Help Search is: false
    Action string for  {BB024724-14D5-4AB6-B21C-74EDA63A0A39} HIL Help Search  is none
    Value returned on lookup of payload: {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation is: false
    Action string for  {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation  is none
    Value returned on lookup of payload: {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation is: false
    Action string for  {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation  is none
    Value returned on lookup of payload: {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages is: false
    Action string for  {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages  is none
    Value returned on lookup of payload: {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live is: false
    Action string for  {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live  is none
    Value returned on lookup of payload: {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 is: false
    Action string for  {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5  is none
    Value returned on lookup of payload: {68CEA5C9-2964-4ECB-84A4-D77C511332BC} Adobe Media Encoder CS5 X64 is: false
    Action string for  {68CEA5C9-2964-4ECB-84A4-D77C511332BC} Adobe Media Encoder CS5 X64  is none
    Value returned on lookup of payload: {694213D7-1E0E-4C8F-B822-E2E3680C0FCE} Adobe Media Encoder CS5 is: false
    Action string for  {694213D7-1E0E-4C8F-B822-E2E3680C0FCE} Adobe Media Encoder CS5  is donotinstall
    Selection of payload {694213D7-1E0E-4C8F-B822-E2E3680C0FCE} Adobe Media Encoder CS5 is allowed but the user has marked it for not to install
    Value returned on lookup of payload: {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX is: false
    Action string for  {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX  is none
    Value returned on lookup of payload: {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin is: false
    Action string for  {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin  is none
    Value returned on lookup of payload: {7A33510F-1580-42C2-877E-8C5502566292} Adobe Player for Embedding x64 is: false
    Action string for  {7A33510F-1580-42C2-877E-8C5502566292} Adobe Player for Embedding x64  is none
    Value returned on lookup of payload: {B55FDCCB-8A45-4943-8D90-585C3490A032} Adobe WinSoft Linguistics Plugin CS5 x64 is: false
    Action string for  {B55FDCCB-8A45-4943-8D90-585C3490A032} Adobe WinSoft Linguistics Plugin CS5 x64  is none
    Value returned on lookup of payload: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15} AdobeCMaps x64 CS5 is: false
    Action string for  {98DD55B6-C58C-462F-B8A4-F0585BFEBB15} AdobeCMaps x64 CS5  is none
    Value returned on lookup of payload: {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 is: false
    Action string for  {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5  is none
    Value returned on lookup of payload: {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 is: false
    Action string for  {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5  is none
    Value returned on lookup of payload: {17C6080E-F475-4B49-A30C-EEB85673E999} AdobePDFL x64 CS5 is: false
    Action string for  {17C6080E-F475-4B49-A30C-EEB85673E999} AdobePDFL x64 CS5  is none
    Value returned on lookup of payload: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7} AdobeTypeSupport x64 CS5 is: false
    Action string for  {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7} AdobeTypeSupport x64 CS5  is none
    Value returned on lookup of payload: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit) is: false
    Action string for  {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit)  is none
    Value returned on lookup of payload: {0669F23C-1B69-41B4-A3ED-4F54A5986D66} Adobe Linguistics CS5 x64 is: false
    Action string for  {0669F23C-1B69-41B4-A3ED-4F54A5986D66} Adobe Linguistics CS5 x64  is none
    Value returned on lookup of payload: {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro is: false
    Action string for  {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro  is none
    Value returned on lookup of payload: {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is: false
    Action string for  {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US  is none
    Payload {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {3F6B5CAC-733F-1029-B5BD-C0F5E35809F0} Adobe Buzzword CS5 is: false
    Action string for  {3F6B5CAC-733F-1029-B5BD-C0F5E35809F0} Adobe Buzzword CS5  is none
    Value returned on lookup of payload: {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 is: false
    Action string for  {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1  is none
    Value returned on lookup of payload: {E4CB336B-159D-1033-B84D-B9A01A0BE4A9} Adobe InDesign CS5 Icon Handler is: false
    Action string for  {E4CB336B-159D-1033-B84D-B9A01A0BE4A9} Adobe InDesign CS5 Icon Handler  is none
    Value returned on lookup of payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 is: false
    Action string for  {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5  is none
    Value returned on lookup of payload: {157D044B-C60D-1015-B0DB-A40823CC0F49} Adobe Toolhints CS5 is: false
    Action string for  {157D044B-C60D-1015-B0DB-A40823CC0F49} Adobe Toolhints CS5  is none
    Value returned on lookup of payload: {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro is: false
    Action string for  {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro  is none
    Value returned on lookup of payload: {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64 is: false
    Action string for  {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64  is none
    Value returned on lookup of payload: {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64 is: false
    Action string for  {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64  is none
    Value returned on lookup of payload: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro is: false
    Action string for  {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro  is none
    Value returned on lookup of payload: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing is: false
    Action string for  {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing  is none
    Value returned on lookup of payload: {5658F35F-15B9-1033-8337-97B78F2D0BE0} Adobe InDesign CS5 Icon Handler x64 is: false
    Action string for  {5658F35F-15B9-1033-8337-97B78F2D0BE0} Adobe InDesign CS5 Icon Handler x64  is none
    Value returned on lookup of payload: {A1BC7068-C1BA-410F-8B9A-DB807C803DE2} Creative Suite 5 Design Premium is: false
    Action string for  {A1BC7068-C1BA-410F-8B9A-DB807C803DE2} Creative Suite 5 Design Premium  is install
    Value returned on lookup of payload: {C79312BD-3E76-4474-A10C-1435D1856A4B} Adobe Dreamweaver CS5 is: false
    Action string for  {C79312BD-3E76-4474-A10C-1435D1856A4B} Adobe Dreamweaver CS5  is install
    Value returned on lookup of payload: {E3E040E8-4CCD-4C71-8BAF-80BB2AD5DA04} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack is: false
    Action string for  {E3E040E8-4CCD-4C71-8BAF-80BB2AD5DA04} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack  is none
    Payload {E3E040E8-4CCD-4C71-8BAF-80BB2AD5DA04} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {E8815668-95B0-443D-AC92-2BFD7DD8F16A} Adobe Flash Catalyst CS5 is: false
    Action string for  {E8815668-95B0-443D-AC92-2BFD7DD8F16A} Adobe Flash Catalyst CS5  is install
    Value returned on lookup of payload: {164965E8-4BB0-4EEB-AFBA-75785A2A2A7F} Adobe Fireworks CS5 is: false
    Action string for  {164965E8-4BB0-4EEB-AFBA-75785A2A2A7F} Adobe Fireworks CS5  is install
    Value returned on lookup of payload: {3A8C7CB3-2A2E-4EB9-99C9-DF08C324BA70} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack is: false
    Action string for  {3A8C7CB3-2A2E-4EB9-99C9-DF08C324BA70} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack  is none
    Payload {3A8C7CB3-2A2E-4EB9-99C9-DF08C324BA70} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F6CCA85F-7527-4AFF-82B6-26532A74A244} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack is: false
    Action string for  {F6CCA85F-7527-4AFF-82B6-26532A74A244} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack  is none
    Payload {F6CCA85F-7527-4AFF-82B6-26532A74A244} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {9B97EC91-B3FD-4BFF-88FC-5345A26AC2E7} Adobe Illustrator CS5 is: false
    Action string for  {9B97EC91-B3FD-4BFF-88FC-5345A26AC2E7} Adobe Illustrator CS5  is install
    Value returned on lookup of payload: {D0DAEA50-AD52-4BF9-AD5F-3E09564A8692} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack is: false
    Action string for  {D0DAEA50-AD52-4BF9-AD5F-3E09564A8692} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack  is none
    Payload {D0DAEA50-AD52-4BF9-AD5F-3E09564A8692} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {D3A8C87E-ED6A-41DB-8B21-C29EDA65B154} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack is: false
    Action string for  {D3A8C87E-ED6A-41DB-8B21-C29EDA65B154} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack  is none
    Payload {D3A8C87E-ED6A-41DB-8B21-C29EDA65B154} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core is: false
    Action string for  {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core  is install
    Value returned on lookup of payload: {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US is: false
    Action string for  {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US  is none
    Payload {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B} Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB is: false
    Action string for  {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B} Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB  is none
    Payload {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B} Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84} Adobe Photoshop CS5 Core_x64 is: false
    Action string for  {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84} Adobe Photoshop CS5 Core_x64  is install
    Value returned on lookup of payload: {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64 is: false
    Action string for  {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64  is none
    Payload {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64 is: false
    Action string for  {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64  is none
    Payload {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F9766AC1-1461-1033-B862-DF8FE1C033BE} Adobe InDesign CS5 Application Base Files is: false
    Action string for  {F9766AC1-1461-1033-B862-DF8FE1C033BE} Adobe InDesign CS5 Application Base Files  is install
    Value returned on lookup of payload: {26B63C3A-0BFF-1033-B389-A7ACEC31657E} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_GB is: false
    Action string for  {26B63C3A-0BFF-1033-B389-A7ACEC31657E} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_GB  is none
    Payload {26B63C3A-0BFF-1033-B389-A7ACEC31657E} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {7EB208EE-0C2B-1033-A6DC-E1BD0289A1F4} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US is: false
    Action string for  {7EB208EE-0C2B-1033-A6DC-E1BD0289A1F4} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US  is none
    Payload {7EB208EE-0C2B-1033-A6DC-E1BD0289A1F4} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {0A9AAB1E-0FEA-1033-851A-888C0B8E78B5} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US is: false
    Action string for  {0A9AAB1E-0FEA-1033-851A-888C0B8E78B5} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US  is none
    Payload {0A9AAB1E-0FEA-1033-851A-888C0B8E78B5} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {966B69F2-0FBD-1033-B01C-D13C02FFF33F} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_GB is: false
    Action string for  {966B69F2-0FBD-1033-B01C-D13C02FFF33F} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_GB  is none
    Payload {966B69F2-0FBD-1033-B01C-D13C02FFF33F} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {CFC9F871-7C40-40B6-BE4A-B98A5B309716} Adobe Flash CS5 is: false
    Action string for  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} Adobe Flash CS5  is install
    Value returned on lookup of payload: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul is: false
    Action string for  {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul  is none
    Payload {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack is: false
    Action string for  {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack  is none
    Payload {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US is: false
    Action string for  {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US  is none
    Payload {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US is extension payload. Aligning its action according to parent.
    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 (x86)\Adobe
    [     196] Thu May 06 10:31:15 2010  WARN
    OS requirements not met for {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    OS requirements not met for {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    OS requirements not met for {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    OS requirements not met for {9B97EC91-B3FD-4BFF-88FC-5345A26AC2E7}
    OS requirements not met for {A1BC7068-C1BA-410F-8B9A-DB807C803DE2}
    OS requirements not met for {C79312BD-3E76-4474-A10C-1435D1856A4B}
    OS requirements not met for {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    OS requirements not met for {E8815668-95B0-443D-AC92-2BFD7DD8F16A}
    OS requirements not met for {F9766AC1-1461-1033-B862-DF8FE1C033BE}
    [     196] Thu May 06 10:31:16 2010  INFO
    ::START TIMER:: [System check :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}] took 9.50567 miliseconds (0.00950567 seconds)
    ::START TIMER:: [System check :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}] took 9.72894 miliseconds (0.00972894 seconds)
    ::START TIMER:: [System check :{0D067D13-C3D7-4EA6-B346-740CD91FD547}]
    CustomHooksTester -> In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{0D067D13-C3D7-4EA6-B346-740CD91FD547}] took 10.2948 miliseconds (0.0102948 seconds)
    ::START TIMER:: [System check :{E39A5ABD-516B-46F9-A042-694BBA6A4E08}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{E39A5ABD-516B-46F9-A042-694BBA6A4E08}] took 9.73895 miliseconds (0.00973895 seconds)
    [     196] Thu May 06 10:31:17 2010  INFO
    ::START TIMER:: [System check :{CBDD7465-CE11-4A58-9497-C370B65923F1}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{CBDD7465-CE11-4A58-9497-C370B65923F1}] took 8.83123 miliseconds (0.00883123 seconds)
    ::START TIMER:: [System check :{7745F18B-FD8A-4011-BE16-588900C503D0}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{7745F18B-FD8A-4011-BE16-588900C503D0}] took 11.9151 miliseconds (0.0119151 seconds)
    ::START TIMER:: [System check :{11C0657F-2BD4-4CBC-87F3-9455DC91886E}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{11C0657F-2BD4-4CBC-87F3-9455DC91886E}] took 11.9571 miliseconds (0.0119571 seconds)
    ::START TIMER:: [System check :{7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}] took 11.1852 miliseconds (0.0111852 seconds)
    ::START TIMER:: [System check :{E8815668-95B0-443D-AC92-2BFD7DD8F16A}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E8815668-95B0-443D-AC92-2BFD7DD8F16A}] took 9.48565 miliseconds (0.00948565 seconds)
    ::START TIMER:: [System check :{164965E8-4BB0-4EEB-AFBA-75785A2A2A7F}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{164965E8-4BB0-4EEB-AFBA-75785A2A2A7F}] took 11.9628 miliseconds (0.0119628 seconds)
    [     196] Thu May 06 10:31:23 2010  INFO
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    Calling the custom action code for pre-install for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    5888] Thu May 06 10:31:23 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: InstallThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installing third party payload
    Installing payload
    Attempting to install package from:E:\Adobe CS5\payloads\Microsoft_VC90_CRT_x86\Microsoft_VC90_CRT_x86.msi
    Command line arguments:
    [    5888] Thu

    @saratogacoach,
    The key log entry is the following:
    Feature: Microsoft_VC90_CRT_x86_
    Action 10:31:26: PublishProduct.  Publishing product information
    [    5888] Thu May 06 10:31:27 2010   INFO
    .An error occurred during the installation of assembly  component {43CC1B37-B20C-3EBC-9C04-F809989E4FD3}. HRESULT: 0x80073712.
    Action  ended 10:31:27: InstallFinalize. Return value 3.
    First, see if this hotfix maybe applicable to your system
    http://support.microsoft.com/kb/946927
    or this one:
    http://support.microsoft.com/kb/902330

Maybe you are looking for

  • Authenticating a user or getting a user's password

    I'm using Weblogic server 7. I need to authenticate a user against a domain: establish whether the user exists and if so, verify his password. Code samples would be most welcome.

  • Remove custom attribute labels

    Hi. Does anybody know how remove the custom attribute labels on a page. Thanks Portal version 9.0.2.6.18 and 9.0.4.0 (10g)

  • Presets in Lightroom

    How do I move presets from LR 2 to LR 4 ? Thank you, Penni

  • Podcasts not showing up on i-pod????pls help

    Hi I'm in much need! I have just synced my i-pod and all the podcasts that used to show up in the video podcast list arnt there now and only way to see them on my i pod is to look at recently added, but this function only lasts for a while. The podca

  • Javax.ejb.CreateException:

    Hello friends I have created an ejb module that contains all my business logic and deployed it,that module contains some entities.Each time I call any ejb method that handles any enity,I get this exception: Exception in thread "main" javax.ejb.EJBExc