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 )

Similar Messages

  • I get an error message saying 'An error has caused Photoshop to stop working correctly. Windows will close the programme and notify you if a solution is available'. I have had no notification. My old Photoshop CS5 works fine, but as I'm paying for CC2014

    I get an error message saying 'An error has caused Photoshop to stop working correctly. Windows will close the programme and notify you if a solution is available'. I have had no notification. My old Photoshop CS5 works fine, but as I'm paying for CC2014 I would like to use it. I have tried renaming the 'sniffer' file to 'snifferold' as bobmiller4002 suggested but the problem is not resolved. Lightroom works fine.

    Hi Nancy,
                 I'm not sure I have the answers to all your questions. Although I use Photoshop and Lightroom extensively, I'm not a 'techy'.
    My system;
    Packard bell imedia S2885
    1TB hard drive
    500G RAM
    Windows 8.1   64- bit
    Intel core i5 4440
    If I open Photoshop cc14 without opening any image, I still get an error message that reads: 'Photoshop has encountered a problem with the display driver, and has temporarily disabled enhancements which use the graphics hardware'.
    There is also a link to the Adobe help site, but I'm not sure exactly what I should be downloading from there.  
             Thanks,
                        Dan.

  • I have problems with photoshop CS5, it is not executed, it remains looking for plugi

    I have problems with photoshop CS5, it is not executed, it remains looking for plugin

    Please read these and proceed accordingly (restoring Preferences after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved might be of special interest):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325

  • Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address

    Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address when I use a "send this" link on a webpage/news article. The email window opens and automatically inserts my old Hotmail address instead of the Yahoo address I've used for a long time. (The drop-down won't let me change it or delete it.) Thanks.

    Do you get a drop down list with suggestions if you clear that "from" field and click elsewhere on that page to move the focus off that field and then double-click again in that field or start typing the first letters of that unwanted email address?
    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *Form History Control: https://addons.mozilla.org/firefox/addon/form-history-control/
    *Tahoe Data Manager: https://addons.mozilla.org/firefox/addon/data-manager/

  • Lightroom 3: Edit in Photoshop CS5 no longer saves a copy as TIFF for editing

    Hi,
    I have Lightroom 3 (LR3) and Photoshop CS5 (non Extended) and Snow  Leopard on OSX.  Both LR3 and CS5 are filly updated.  CS5 updated with  Camera Raw 6.1.
    On one day, when I tell LR3 to "Edit in Photoshop" it would save a copy  of the NEF with current LR3 settings as a TIFF and I can edit it in  Photoshop as a TIFF.  I would see a progress indicator in LR3 that show  it saving a copy as a TIFF.
    The next day, this stopped working.  It goes directly to Photoshop and  opens the NEF itself.   It's is completely ignoring the LR3 settings in  External Handling tab.
    Strangely, when I "save" this NEF in Photoshop, a TIFF is created back in LR3.  That threw me off completely from LR2.7
    Has anybody encountered this?  Does LR3 skip telling you if you want to save as TIFF now if you have the latest LR and CS?
    Thank you.

    What you describe as abnormal is how things are supposed to work:
    If the RAW engines match (where LR3 and ACR 6.1 do), then LR just tells PS what the "conversion recipe" is and PS tells ACR to silently open it with that "recipe" so it doesn't have to be rendered to TIF or PSD on the way into PS. 
    If the RAW engine of PS (ACR's version) is too odl to understand all the LR adjustments then LR knows this and will render to an intermediate file on the way into PS.  This also happens if you use some other third-party photo-editor that can't use ACR to open the file.
    On Windows, at least, there is a way to make LR render to TIF/PSD on the way into Photoshop, I fyou create a duplicate copy of the EXE and rename it to PhotoshopX.exe or some other name that LR doesn't recognize as Photoshop, then LR thinks it is a third-party editor and renders an intermediate file.
    What might have happened is that you updated to ACR 6.1 or maybe PS 12.0.1 which caused LR to re-evaluate the Photoshop compatibility and it determined it was fully compatible and didn't render to an intermediate file on the way in.
    Since Photoshop is a bitmap editor, it has to save as something other than the RAW file on the way out, and LR will see that Save occur and import it automatically.
    Does that all make sense?

  • Moderator q? - re searching forum for 'XMLParserV2' - results not found

    Didn't know where else to post this so delete the thread if not appropriate here.
    Why can't this thread be found by searching the forum for 'xmlparser', 'XMLParserv2' or any other combination that should find it?
    Error with XMLParserV2.jar and LocaleMapper
    This is the title
    >
    Error with XMLParserV2.jar and LocaleMapper
    >
    And there are several references in the thread to that jar file.
    A search for 'xmlparser' won't even find this thread I just posted and it mentions that word several times.
    There have been other times when I can't find threads I know I have replied to but this example is so clear cut I can't understand if it is me or something about the search mechanism behind the forum software.
    If this is really a bug how do I report it?

    jgarry wrote:
    Check out the other thread he posted. At first I thought he had a legitimate complaint about rp, but then I realized rp called it spot-on in his first reply.Joel,
    +1 (this is that thread right?)
    Which exam has higher value?
    Regards
    Aman....

  • Roxio keeps trying to install, have searched forums for answer, need help

    Hello,
    About a month ago I bought an 8300 series Curve.  That night I tried installing Desktop Manager with Roxio, had lots of problems, read the forums, and decided against using Roxio.  I unintalled everything (so I thought), and reinstalled Desktop Manager without Roxio.  Everything was fine until this week.  The computer was on but not used for a couple days while I was out of town: upon my return I saw that Roxio was trying to install itself again.  I'm assuming an update was pushed out.  Now, I can't get rid of it.  I have uninstalled Blackberry Desktop software.  I have deleted everything from my computer that has 'Roxio' or 'Sonic' in its name.  I have run my registry tools in System Mechanic Professional.  It still keeps trying to install.  I even tried system restore.  I disabled Windows Installer in msconfig, now it just keeps popping the installer window up and closing it.  I can't download and install the Microsft Installer Cleanup utility mentioned on some forums because either a) I have disabled my installer, or b) when the installer is enabled, I get an error message telling me that another installation (aka the Roxio installation) is already in progress.
    Surely, there must be some line in some code somewhere that I can get to and change so I can stop this thing from triggering Roxio to install.  And, how do I clean it off and ban Roxio from ever trying to install anything on my system again?  It's literally like some kind of virus.
    Thanks.

    This is an addendum to my previous post:
    I somehow was able to sneak in an install of the Microsoft Installer Cleanup utility.  But when I went to run it, Roxio or anything related was not listed at all.   So, that was not a good solution.
    I tediously went through the entire registry and deleted all references to Roxio.  I re-enabled my Windows Installer.  Now, something keeps trying to install, but never references Roxio anymore.  The Windows Installer window pops up, then disappears.  This happens in spurts now: the window pops up about 3 to 5 times, then stops popping up for a minute or two, then starts again.  There's obviously one more registry reference that doesn't have 'Roxio' in the name.  If anyone knows it and can point me to it, I'd be grateful.
    In the meantime, I now have to figure out how to fix the resolution on my monitor.  Obviously deleting some Roxio shared thing affected that, and I can't seem to find the right settings again.  I feel like suing Roxio for the time I wasted today!

  • PhotoShop CS5 12.0.3 update failed

    Greetings,
    U have the CS CS5 Masters edition and an update for PhotoShop CS5 12.0.3 came down the pipe three days ago. When I tried to update the software, it downloaded but failed during the install. There was no error code or any form of additional details other than a link to contact support which led me to download some kind of support software. It was useless probably because I don't know how it works.
    Anyway, this is the first time ever I have had a problem updating anything on CS5 (as well as CS4, CS3 and CS2 for that matter).
    I am running Windows 7 Ultimate 64bit edition on a Dell Precesion Workstation Laptop M6400 with 8GB RAM and two 500GB drives in a RAID 0 config with an nVidia FX3700 videi card.
    Anyone else having this problem? Is Adobe aware of this problem? Is a fix in the works? If not, how do I fix this - and reinstalling is not a proper solution!
    Thanks! And Happy Holidays.

    Anshum, I just tried your 1, 2 options. My Patch Folder is present so I tried adding the file"ribs3debug" with no extention. To be sure, I added it to the Windows/Temp, C:\Temp and username/appdata/local/temp to cover all temp locations that the system may use,and the update still failed.
    Here is the latest log file:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.5.15.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
    deploymentFile option not given
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 1311.21 milliseconds (1.31121 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup
    Updating media info for: {010B3947-C8F7-4F18-BF03-49A8662CC4A9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Support-141210131221\Install.db
    Updating media info for: {5733850A-FF54-431F-A935-71A96AE80F95}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Core-141210130650\Install.db
    Updating media info for: {FA5686B7-A305-4A41-93CD-48BAC929C313}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Core_x64-141210130924\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    [    7496] Tue Jan 11 03:18:24 2011 DEBUG
    InstallerSession.CreatePayloadSession: Checking for unsupported payloads
    [    7496] Tue Jan 11 03:18:24 2011  INFO
    Supported RIBS version range: [0.0.66.0,3.5.15.0]
    [    7496] Tue Jan 11 03:18:24 2011 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking session payloads ______
    [    7496] Tue Jan 11 03:18:24 2011  INFO
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    7496] Tue Jan 11 03:18:24 2011 DEBUG
    InstallerSession.CreatePayloadSession: Load PDB
    [    7496] Tue Jan 11 03:18:41 2011 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking incompatible payloads ______
    ______ GetIncompatiblePayloadBuildsInstalled ______
    ______ InstallerSession.CreatePayloadSession: Checking already installed payloads ______
    {0061DED1-0204-44C5-B6E0-FAD6AA00E320} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll
    {01367616-4132-4311-911F-49D2EA82F7C2} Adobe OnLocation CS5 Royalty Content Wrapper
    {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5
    {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86
    {03AA8100-8A65-11DF-9F66-0013724DD917} DeviceCentral_3.0.1_AdobeDeviceCentral3-all
    {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player
    {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages
    {04D84E18-23ED-46EA-9B41-789433E34D03} Firefox Plugin CS5
    {0669F23C-1B69-41B4-A3ED-4F54A5986D66} Adobe Linguistics CS5 x64
    {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86
    {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support
    {0A9AAB1E-0FEA-1033-851A-888C0B8E78B5} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US
    {0B754B55-6F63-461E-BB75-E8C883BDF88F} Adobe Premiere Pro CS5
    {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5
    {0E3C6C75-872D-4B0D-B0B2-31C717250691} Adobe Encore CS5 Third Party Royalty Content
    {0E659C1D-7686-4322-A501-58E3FEB4E743} Adobe After Effects CS5
    {0EDAD58E-71F3-4D0E-9D32-A205533FC0E9} KoreanSpeechAnalysisModels
    {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86
    {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64
    {123ABCFA-AE86-4B1C-A4D8-A732BEF9C86B} Adobe Bridge CS5_4.0.4_AdobeBridge4-mul
    {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack
    {157D044B-C60D-1015-B0DB-A40823CC0F49} Adobe Toolhints CS5
    {164965E8-4BB0-4EEB-AFBA-75785A2A2A7F} Adobe Fireworks CS5
    {177E1CA1-14CC-4398-AB15-A5746EFE8F22} Adobe Flash Builder
    {177E1CA1-14CC-4398-AB15-A5746EFE8F23} Adobe Flash Builder_4.0.1_AdobeFlashBuilder-mul
    {17C6080E-F475-4B49-A30C-EEB85673E999} AdobePDFL x64 CS5
    {187A7A38-6DD4-4549-AECD-22BA6BC2F002} Adobe ExtendScript Toolkit CS5_3.5.0_AdobeExtendScriptToolkit3.5.0-mul
    {1A48007B-34D2-44BD-8708-B570F5339C14} Adobe Encore CS5 Royalty Codecs Installer Wrapper
    {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US
    {1E9FC118-651D-4934-97BE-E53CAE5C7D45} Microsoft_VC80_MFCLOC_x86_x64
    {20F72893-AEC7-4954-9EAA-F07FD6184781} Adobe After Effects CS5 Third Party RoyaltyContent Wrapper
    {22C1290B-8DC3-4C8B-93E2-4373B9AAB1CC} TLF For Adobe Flash Pro_1.0.1_TLF_Flash11-mul
    {22F41D72-2E97-46AE-B8C4-EF66876C7838} Adobe Premiere Pro CS5 Third Party Content Wrapper
    {234A555C-70F5-48FB-A7E2-32410EB5AF64} ItalianSpeechAnalysisModels
    {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US
    {28AE9069-B8E0-4E45-879B-4EEB6680036B} Adobe Flash CS5_11.0.1_AdobeFlash11-mul
    {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5
    {2F02E440-B7BF-4018-8CB5-977257350EAB} Adobe After Effects CS5 Third Party Royalty Content_10.0.1_AdobeAfterEffects10RoyaltyAll
    {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding
    {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro
    {32841ECE-EC28-42CD-A4DD-6CE832A7EA8D} Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64
    {34F82E6B-8096-45CA-B604-ACACAC22E553} Adobe Premiere Pro CS5_AdobePremierePro5en_USLanguagePack
    {36D02DA9-35F2-4686-A2FE-EF3014D2E226} SpanishSpeechAnalysisModels
    {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw
    {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK
    {3A8C7CB3-2A2E-4EB9-99C9-DF08C324BA70} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack
    {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp
    {3DFC5420-18D3-1027-A1C1-9F4CF983F2B8} Adobe InDesign CS5 Application Language Files_7.0.3.535_AdobeInDesign7AppLang-en_US
    {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer
    {3F6B5CAC-733F-1029-B5BD-C0F5E35809F0} Adobe Buzzword CS5
    {3FE9B5F2-1ABD-1027-89E7-AA1204825831} Adobe InDesign CS5 Application Base Files2_7.0.3.535_AdobeInDesign7AppBase2-mul
    {406D22BD-7910-479B-96AA-0DB8A36C694B} Adobe After Effects CS5 Third Party Content Wrapper
    {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin
    {414BDCF9-DE14-4083-BE96-2F4193CE8BBA} Adobe Contribute CS5_AdobeContribute6en_USLanguagePack
    {4355EE3F-2FDD-4EF4-83EA-2465FBF95B16} GermanSpeechAnalysisModels
    {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5
    {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1} Microsoft_VC80_CRT_x86_x64
    {479C08E9-FACF-4190-A37A-81D65B4C8D4E} IE Plugin CS5
    {4BD0D94C-C5CA-41CA-879B-928E55ADA18F} Adobe Premiere Pro CS5 Third Party Royalty Content_5.0.3_AdobePremierePro5RoyaltyAll
    {4BE1791F-1D8A-4B8E-B803-D97C5D7CB245} Adobe Soundbooth CS5 Codecs Wrapper
    {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5
    {4FC4B869-AD0D-4A56-B626-2926EB2C48D0} Adobe Dreamweaver CS5_11.0.3_AdobeDreamweaver11-mul
    {5056CCD0-DDD6-47D1-9D46-612FA03FF82E} Adobe Media Encoder CS5 PCI WRAPPER X64_5.0.1_AMEPCIWrapper5All_x64
    {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64
    {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5
    {55516693-25E2-4620-BF94-6BA66B00419F} Adobe Player for Embedding_3.1_AdobeAPE3-mul
    {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5
    {5658F35F-15B9-1033-8337-97B78F2D0BE0} Adobe InDesign CS5 Icon Handler x64
    {565DE707-5798-4FC3-8DF6-0F58A348A9B0} Adobe Premiere Pro CS5 Third Party Royalty Content
    {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul
    {5AF84E15-9A23-4295-8508-F2901A923E83} Adobe OnLocation CS5 Royalty Content_5.0.1_AdobeOnLocation5RoyaltyAll
    {5C6A2D6E-4C4B-40AC-998A-B09B24DB631F} Adobe Media Encoder CS5 Dolby WRAPPER X64_5.0.1_AMEDolbyWrapper5All_x64
    {5DDABB74-A879-4BE7-A4C6-FD41793942DB} Adobe Media Encoder CS5 Dolby X64
    {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live
    {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit)
    {62466A6D-1130-4D66-9D65-ED3E1A988E12} iPhone Publishing_1.0.1_iPhone_Flash11-mul
    {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing
    {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86
    {64C19EC0-24A3-4F6F-A0AD-C701C8C48700} Adobe OnLocation CS5_5.0.1_AdobeOnLocation5All
    {64D991B0-4E64-47AC-8A35-291DA2E7D02F} Adobe After Effects CS5 Support
    {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension
    {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84} Adobe Photoshop CS5 Core_x64
    {68CEA5C9-2964-4ECB-84A4-D77C511332BC} Adobe Media Encoder CS5 X64
    {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US
    {6ACDB89B-63FB-4C7D-8490-7528E248F25B} Adobe After Effects CS5_AdobeAfterEffects10en_USLanguagePack
    {6B485102-4593-43F6-BA45-F14D690B0C64} Suite Shared Configuration CS5
    {6BA6F6D7-1D30-482A-B9B8-20E79D6DB4F9} Adobe Premiere Pro CS5 Third Party Royalty Content Wrapper
    {6C6D990F-FC88-4F07-912C-DA37468D9A3C} Adobe OnLocation CS5 Royalty Content Wrapper_5.0.1_AdobeOnLocation5RoyaltyWrapperAll
    {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5
    {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5
    {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral
    {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5
    {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5
    {70CAC073-3CDD-498C-80F7-79B76A61D7E6} Adobe Flash CS5_11.0.2_AdobeFlash11-mul
    {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5
    {771C9F59-3F22-4610-A23E-321A98ECA264} Adobe OnLocation CS5_AdobeOnLocation5en_USLanguagePack
    {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1
    {7816FDDE-40D4-482D-AD7D-97858985DB3E} Adobe OnLocation CS5 Royalty Content
    {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB
    {7A33510F-1580-42C2-877E-8C5502566292} Adobe Player for Embedding x64
    {7B7DE224-2ACA-41E2-A94D-5A6C6D75106D} Office Plugin CS5
    {7D446C8E-2FAF-4C5D-8FC6-7A4433A34FD4} Adobe After Effects CS5 Third Party Content_10.0.1_AdobeAfterEffects10ProtectedAll
    {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core
    {7E0C3ACA-19FA-1027-8580-84E7230B548F} Adobe InDesign CS5 Application Base Files_7.0.3.535_AdobeInDesign7AppBase-mul
    {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX
    {7EB208EE-0C2B-1033-A6DC-E1BD0289A1F4} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US
    {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64
    {805ABF27-1582-1033-B4AC-82A1DE0DD827} Adobe InDesign CS5 Common Base Files
    {8557397C-A42D-486F-97B3-A2CBC2372593} Microsoft_VC90_ATL_x86_x64
    {88BE801D-C8EC-46A4-92AC-06CE56FE0E0A} AIR2 For Adobe Flash Pro_2.0.1_AIR2_Flash11-mul
    {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5
    {925D058B-564A-443A-B4B2-7E90C6432E55} Microsoft_VC80_ATL_x86_x64
    {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule
    {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26} Microsoft_VC90_CRT_x86_x64
    {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86
    {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US
    {98DD55B6-C58C-462F-B8A4-F0585BFEBB15} AdobeCMaps x64 CS5
    {9A26E0C2-AC3B-498C-A16B-7CE76BC4E0E2} Adobe Media Encoder CS5 PCI X64_5.0.1_AMEPCI5All_x64
    {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7} AdobeTypeSupport x64 CS5
    {9B97EC91-B3FD-4BFF-88FC-5345A26AC2E7} Adobe Illustrator CS5
    {A013B68A-B1D9-470F-BB0F-816752F096A3} Adobe Media Encoder CS5 PCI WRAPPER X64
    {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All
    {A1CABA8D-CF84-402F-8948-D2567915D40C} Pixel Bender Toolkit_2.5_aifsdk-win
    {A1E0C87F-BFE5-490A-898E-05BD4DD2BADF} InternationalEnglishSpeechAnalysisModels
    {A32910E5-4084-4A0E-9FFF-D2E9C1B1C134} Adobe Encore CS5 Library
    {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB} Microsoft_VC90_MFC_x86_x64
    {A5A8E72E-1B9D-4F99-ADED-F3595CB3D03E} AdobeColorVideoProfilesAE CS5
    {A69CC698-119E-450F-9AEC-2F377C03B33B} AIR2 For Adobe Flash Pro_2.0.1_AIR2_Flash11-en_US
    {A8573435-DB08-4E7E-8E19-D16BD9A04736} Adobe After Effects CS5 Third Party RoyaltyContent Wrapper_10.0.1_AdobeAfterEffects10RoyaltyWrapperAll
    {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport
    {AAA45CA1-CEF2-45A9-9162-6774CFFF8260} Adobe Premiere Pro CS5 Third Party Content Wrapper_5.0.3_AdobePremierePro5ProtectedWrapperAll
    {AAC33035-8CD9-4089-900B-10F4350AE81E} Adobe After Effects CS5 Third Party Content Wrapper_10.0.1_AdobeAfterEffects10ProtectedWrapperAll
    {ABDC1F61-2C50-4BB1-ACDA-66D412D72582} Adobe OnLocation CS5
    {ADAF6949-4547-4B3D-97C5-6FB4D0C08A1E} Adobe Soundbooth CS5 Royalty Codecs Wrapper
    {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5
    {B55FDCCB-8A45-4943-8D90-585C3490A032} Adobe WinSoft Linguistics Plugin CS5 x64
    {B61DD7DA-4942-40A2-AF16-14957DFFEF09} Adobe Premiere Pro CS5_5.0.3_AdobePremierePro5en_USLanguagePack
    {B842A584-A0BF-4870-A850-9C0E52FD6A20} Adobe Encore CS5_AdobeEncore5en_USLanguagePack
    {B8D286BC-A68D-4E74-9F68-8756A49896D8} Adobe Premiere Pro CS5 Third Party Content
    {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5
    {BB024724-14D5-4AB6-B21C-74EDA63A0A39} HIL Help Search
    {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5
    {BE62C4BD-59F3-498D-822B-12D63D2234CE} Adobe Media Encoder CS5 Dolby X64_5.0.1_AMEDolby5All_x64
    {C0AA232E-BD1B-40B5-A176-A2BEB67FFAE1} Adobe After Effects CS5 Third Party Content
    {C79312BD-3E76-4474-A10C-1435D1856A4B} Adobe Dreamweaver CS5
    {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3} Microsoft_VC80_MFC_x86_x64
    {C925A34A-01B9-42C3-BB88-C7A78835F0EC} ph
    {CB8BB160-EC13-4D89-8990-F15F01E74961} Adobe Premiere Pro CS5 Third Party Royalty Content Wrapper_5.0.3_AdobePremierePro5RoyaltyWrapperAll
    {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation
    {CBE4F6C3-788E-4CAC-BA25-26FE39A3BC8C} Adobe Soundbooth
    {CC0EF75D-9336-4E4F-B4A2-99E2E60E161F} Adobe After Effects CS5 Presets
    {CD29B5CA-4727-4114-9AD9-25CCCE6E4014} Adobe After Effects CS5 Third Party Royalty Content
    {CD693E49-C5EF-4FA6-9037-9B636931C02B} AmericanEnglishSpeechAnalysisModels
    {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0
    {CFC9F871-7C40-40B6-BE4A-B98A5B309716} Adobe Flash CS5
    {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86
    {D20D27DB-B598-4142-8B7E-BE1342BA77C9} Adobe After Effects CS5_10.0.1_AdobeAfterEffects10AllRetail
    {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5
    {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5
    {D3A8C87E-ED6A-41DB-8B21-C29EDA65B154} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack
    {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit
    {D5E7D8B9-9B8F-4DA0-9B2C-167DC889B0E1} Adobe After Effects CS5 Template Projects & Footage
    {D8465547-5D5B-4856-A93A-8AC0A05C5D4D} Adobe Encore CS5
    {D8676884-2C59-41BB-B315-486D98A20867} Adobe Media Encoder CS5 X64_5.0.1_AMECore5All_x64
    {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86
    {DE5DE662-2ECB-4D93-967B-221FBCC8A736} Adobe Soundbooth CS5 Codecs
    {DE60F0DE-469A-42DC-A678-978313210057} Adobe Contribute CS5
    {DEC9BB26-1381-1033-A965-E3BD5F2EF8BC} Adobe InDesign CS5 Application Base Files2
    {DF2B2B91-F938-1051-88C6-AE7C8C5B3B23} Adobe Buzzword CS5_1.0_AdobeBuzzword-mul
    {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro
    {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation
    {E3E040E8-4CCD-4C71-8BAF-80BB2AD5DA04} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack
    {E4CB336B-159D-1033-B84D-B9A01A0BE4A9} Adobe InDesign CS5 Icon Handler
    {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5
    {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE
    {E6F68811-F702-492C-A7DA-D22CA670BC22} Adobe Soundbooth_AdobeSoundbooth3en_USLanguagePack
    {E7F2C606-8529-4028-B26E-8407DB43DD45} FrenchSpeechAnalysisModels
    {E8815668-95B0-443D-AC92-2BFD7DD8F16A} Adobe Flash Catalyst CS5
    {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5
    {EA4B7009-6FAC-41b1-BBB6-E76680C924DC} Adobe Illustrator CS5_15.0.2_AdobeIllustrator15-mul
    {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro
    {F19DAA62-588A-46D3-A092-C808F565D633} Adobe Dreamweaver CS5_11.0.3_AdobeDreamweaver11en_USLanguagePack
    {F319804F-E3A4-4C02-8AEC-CB39A4F6447E} Adobe Soundbooth CS5 Royalty Codecs
    {F3ECF5C7-9A9D-460A-B3D6-C7E4C1DFD040} AdobeMotionPicture CS5
    {F46A4C18-2EAD-49F0-A244-994226F93B39} JapaneseSpeechAnalysisModels
    {F4EC52C6-1223-4EA9-8C48-F4E6AB2EEC19} Adobe Premiere Pro CS5 Functional Content
    {F637969B-336C-4533-9D4D-D0163A39C42F} Adobe Flash CS5_11.0.2_AdobeFlash11-en_USLanguagePack
    {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR
    {F77882B9-A94F-44F4-A739-8370749255B6} Adobe Premiere Pro CS5 Support
    {F8F0792D-8A6B-44F6-B2AF-AD1A40DF1BFD} Adobe Media Encoder CS5 Dolby WRAPPER X64
    {F9766AC1-1461-1033-B862-DF8FE1C033BE} Adobe InDesign CS5 Application Base Files
    {F9997A85-B21A-48E4-9C8A-7E1352AB1C62} Adobe Player for Embedding x64_3.1_AdobeAPE3_x64-mul
    {F9C71630-0EE3-475C-9E2B-ED95AE197DBD} Adobe Media Encoder CS5 PCI X64
    {FA2A2592-3F40-456D-ACEC-166CB79D4F98} Adobe CSXS Infrastructure CS5_2.0.1_AdobeCSXSInfrastructure2-mul
    {FBB02B04-C034-4382-A3F6-57416E2752C4} Creative Suite 5 Master Collection
    {FD5603A3-1375-1033-872D-8F09140FFDB2} Adobe InDesign CS5 Application Feature Set Files
    {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All
    {FDE4CB87-FDB7-40CE-A6D9-189E09FCABE8} Adobe Premiere Pro CS5_5.0.3_AdobePremierePro5AllRetail
    [    7496] Tue Jan 11 03:18:42 2011  INFO
    ______ Verify Dependency Subscribers ______
    [    7496] Tue Jan 11 03:18:42 2011 DEBUG
    ______ Verifying payload integrity ______
    Checking for payloads having same family and product names but different adobe codes
    ______ Verifying payload integrity : Passed ______
    Operation order summary:
    When distributing payloads across media, the following order must be preserved, except that
    adjacent payloads with the same mediaGroup can be re-ordered across media boundaries without introducing
    extraneous media swaps for the user.
    [    7496] Tue Jan 11 03:18:42 2011  INFO
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: 0 (0,0)
      {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: 0 (0,0)
      {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    [    7496] Tue Jan 11 03:18:42 2011 DEBUG
    :: END TIMER :: [CreatePayloadSession] took 17763 milliseconds (17.763 seconds) DTR = 0.225187 KBPS (0.000219909 MBPS)
    *** Checking patch payload : {010B3947-C8F7-4F18-BF03-49A8662CC4A9}
    installDBPath : C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Support-141210131221\Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
    Parent Installation directory : C:\Program Files (x86)\Adobe
    *** Checking patch payload : {5733850A-FF54-431F-A935-71A96AE80F95}
    installDBPath : C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Core-141210130650\Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    Parent Installation directory : C:\Program Files (x86)\Adobe
    [    7496] Tue Jan 11 03:18:45 2011 DEBUG
    *** Checking patch payload : {FA5686B7-A305-4A41-93CD-48BAC929C313}
    installDBPath : C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Core_x64-141210130924\Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    Parent Installation directory : C:\Program Files\Adobe
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    [    7496] Tue Jan 11 03:18:51 2011 DEBUG
    Requested action "install" for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    Requested action "install" for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    Requested action "install" for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    Using installer mode 0
    ::START TIMER:: [Setting Payload Actions]
    PayloadPolicyInit: BEGIN Updating installstate for payloads
    PayloadPolicyInit: END Updating installstate for payloads
    PayloadPolicyInit: BEGIN Creating policyNodes
    PayloadPolicyInit: END Creating policyNodes
    PayloadPolicyInit: BEGIN Calculating initial graph
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 2 12, Y for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    PayloadPolicyNode._SetPayloadAction: install for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    PayloadPolicyNode._SetPayloadAction: install for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    PayloadPolicyNode.SetAction: IY->IY for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    PayloadPolicyNode._SetPayloadAction: install for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    PayloadPolicyNode.SetAction: FN->FY for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    PayloadPolicyNode._SetPayloadAction: install for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    PayloadPolicyNode.SetAction: FN->FY for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    PayloadPolicyInit: END Calculating initial graph
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support is: false
    Action string for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support  is install
    [    7496] Tue Jan 11 03:18:51 2011 DEBUG
    Setting action for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support per deployment file.
    PayloadPolicyNode._SetPayloadAction: install for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    PayloadPolicyNode.SetAction: IY->IY for {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    Value returned on lookup of payload: {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core is: false
    Action string for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core  is install
    [    7496] Tue Jan 11 03:18:51 2011 DEBUG
    Setting action for {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core per deployment file.
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    Selection of payload {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core is forbidden by the policy.
    Value returned on lookup of payload: {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 is: false
    Action string for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64  is install
    [    7496] Tue Jan 11 03:18:51 2011 DEBUG
    Setting action for {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 per deployment file.
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    Selection of payload {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 is forbidden by the policy.
    END Setting requested payload actions
    [    7496] Tue Jan 11 03:18:51 2011 DEBUG
    :: END TIMER :: [Setting Payload Actions] took 141.202 milliseconds (0.141202 seconds) DTR = 56.6564 KBPS (0.0553285 MBPS)
    [    7496] Tue Jan 11 03:18:51 2011  INFO
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\Adobe
    [    7496] Tue Jan 11 03:18:53 2011 DEBUG
    ::START TIMER:: [SimulatePayloadOperations]
    [    7496] Tue Jan 11 03:18:53 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support with operation install
      {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core with operation install
      {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support with operation install
      {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core with operation install
      {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 with operation install
    END InstallOperationsQueue Ordered operations
    [    7496] Tue Jan 11 03:18:53 2011 DEBUG
    Creating instruction for payload {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:53 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:53 2011 DEBUG
    Operation can be attempted
    Creating instruction for payload {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    [    7496] Tue Jan 11 03:18:53 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:53 2011 DEBUG
    Operation can be attempted
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    Creating instruction for payload {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    Operation can be attempted
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    Payloads passed preflight validation.
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    :: END TIMER :: [SimulatePayloadOperations] took 347.943 milliseconds (0.347943 seconds)
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support with operation install
      {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core with operation install
      {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support with operation install
      {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core with operation install
      {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 with operation install
    END InstallOperationsQueue Ordered operations
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    Opened installation queue
    Creating instruction for payload {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    Operation can be attempted
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    Calling the custom action code for pre-install for payload {010B3947-C8F7-4F18-BF03-49A8662CC4A9}
    [    7496] Tue Jan 11 03:18:54 2011 DEBUG
    Custom action code for pre- install for payload {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support returned : 0
    [    7496] Tue Jan 11 03:18:54 2011  INFO
    ::START TIMER:: [Payload Operation :{010B3947-C8F7-4F18-BF03-49A8662CC4A9}]
    [    4752] Tue Jan 11 03:18:54 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Request to install payload
    [    4752] Tue Jan 11 03:18:54 2011 DEBUG
    Setting determined properties...
    [    4752] Tue Jan 11 03:18:54 2011  INFO
    Extracting assets...
    Extracting assets complete. Number assets: 2
    CustomizedPatch property not found in database
    Beginning installation for payload at C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Support-141210131221\Install.db
    [    4752] Tue Jan 11 03:18:54 2011 DEBUG
    1 Creating directory at "C:\Program Files (x86)\Adobe\Adobe\AdobePatchFiles\{010B3947-C8F7-4F18-BF03-49A8662CC4A9}
    1 Created
    2 Moved
    3 Can not repair file "C:\Program Files (x86)\Common Files\Adobe\Adobe Photoshop CS5\patcher_trigger\patchTrigger"
    [    4752] Tue Jan 11 03:18:54 2011 ERROR
    3 Command ARKPatchCommand failed.
    [    4752] Tue Jan 11 03:18:54 2011  INFO
    Completing installation for payload at C:\Users\Ricky Leon Murphy\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCS5Support-12.0\12.0.3\Setup\pay loads\AdobePhotoshop12-Support-141210131221\Install.db
    [    4752] Tue Jan 11 03:18:54 2011 DEBUG
    Rolling back prior actions...
    3 Can not repair file "C:\Program Files (x86)\Common Files\Adobe\Adobe Photoshop CS5\patcher_trigger\patchTrigger"
    [    4752] Tue Jan 11 03:18:54 2011 ERROR
    3 Error rolling back command ARKPatchCommand
    [    4752] Tue Jan 11 03:18:54 2011 DEBUG
    2 Deleting file copy at "C:\Program Files (x86)\Adobe\Adobe\AdobePatchFiles\{010B3947-C8F7-4F18-BF03-49A8662CC4A9}\0fe7da7a6046fac4 62db8204f35516e5.rtp"
    2 Deleted
    1 Deleting directory "C:\Program Files (x86)\Adobe\Adobe\AdobePatchFiles\{010B3947-C8F7-4F18-BF03-49A8662CC4A9}" Non-Recursive
    1 Deleted
    InstallPayload failed.
    [    7496] Tue Jan 11 03:18:55 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{010B3947-C8F7-4F18-BF03-49A8662CC4A9}] took 1035.87 milliseconds (1.03587 seconds)
    User specified overrideFile:
    Calling the ROLLBACK custom action code for pre-install for payload {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:55 2011 DEBUG
    Creating instruction for payload {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core
    [    7496] Tue Jan 11 03:18:55 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:55 2011 DEBUG
    Payload cannot be installed due to driver payload failure
    [    7496] Tue Jan 11 03:18:55 2011  INFO
    Skipping payload {5733850A-FF54-431F-A935-71A96AE80F95} Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core as payload is not cached
    [    7496] Tue Jan 11 03:18:55 2011 DEBUG
    Creating instruction for payload {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64
    [    7496] Tue Jan 11 03:18:55 2011  INFO
    EMPTY SET Dependent operations for DRIVER {010B3947-C8F7-4F18-BF03-49A8662CC4A9} Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support
    [    7496] Tue Jan 11 03:18:55 2011 DEBUG
    Payload cannot be installed due to driver payload failure
    [    7496] Tue Jan 11 03:18:55 2011  INFO
    Skipping payload {FA5686B7-A305-4A41-93CD-48BAC929C313} Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64 as payload is not cached
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    7496] Tue Jan 11 03:18:57 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [    7496] Tue Jan 11 03:18:57 2011 ERROR
    The following payload errors were found during install:
    - Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: Install failed
    - Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: Install failed
    - Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: Install failed
    [    7496] Tue Jan 11 03:18:57 2011  INFO
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 34278.6 milliseconds (34.2786 seconds) DTR = 30.3396 KBPS (0.0296285 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 6 error(s), 0 warning(s)
    ERROR: 3 Command ARKPatchCommand failed.
    ERROR: 3 Error rolling back command ARKPatchCommand
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Photoshop CS5 Support_12.0.3_AdobePhotoshop12-Support: Install failed
    ERROR:  - Adobe Photoshop CS5 Core_12.0.3_AdobePhotoshop12-Core: Install failed
    ERROR:  - Adobe Photoshop CS5 Core_x64_12.0.3_AdobePhotoshop12-Core_x64: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    Exit Code: 7 - Unable to complete Silent workflow.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Resizing multiple images in photoshop cs5

    Hi all I am new to the forum and looking for some advice. I need to resize about 500 images down to fit inside in a square of 600px X 600px. The images are all different sizes just now plus they are all a different shape ie. some are more square and some are more rectangle. If picture was square it would need to resize to 600px by 600px but if it was retangle it would have to resize to something like 400px by 600px so it would fit inside the 600px by 600px square.
    I am running Windows 7 64bit and using Photoshop CS5. I have had a search on the net but could only find info on how to do this when all the images are the same shape to start with.
    Any advice would be appreciated.

    You can use File->Scripts->Image Processor for that
    Convert files with the Image Processor:
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7426a.h tml

  • Install Problems Photoshop cs5 Mac

    Hi, I just downloaded the trial of photoshop Cs5 and ones the install comes end I get this messege:
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 7 error(s), 1 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: 3254 Unable to create directory "/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents" with mode 775
    ERROR: 3254 Command ARKCreateDirectoryCommand failed.
    ERROR: 3254 Unable to get permissions of "/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents"
    ERROR: 3254 Error rolling back command ARKCreateDirectoryCommand
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US: Install failed
    ERROR:  - Adobe Photoshop CS5 Core: Failed due to Language Pack installation failure
    and so it says that the photoshop did not install. I restart computer and tried to install with no other programs working and so on, and still got the messege.
    I have Intel Mac with Mac Os X 10.6.3 Intel 2.5ghz 4gb ram.
    Any help???
    Thank you

    Anshum Arora wrote:
    CS5 is supported on 10.5.7 , can you share crash logs ?
    Any idea of what could be happening with mine?
    This is the installer log from Ps:
    [       0] Fri Apr 30 19:21:06 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    RIBS version: 3.0.122.0
    OSX version: 10.5.7
    ::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 2799 miliseconds (2.799 seconds) DTR = 2.85816 KBPS (0.00279118 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 407 miliseconds (0.407 seconds) DTR = 31587.2 KBPS (30.8469 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5
    Updating media info for: {007A2A28-D6A8-4D91-9A2B-568FF8052215}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeWinSoftLinguisticsPluginAll/AdobeWinSoftLinguisticsPluginAll. dmg
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeCSXSInfrastructure2-mul/AdobeCSXSInfrastructure2-mul.dmg
    Updating media info for: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePhotoshop12-Support/AdobePhotoshop12-Support.dmg
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeBridge4-mul/AdobeBridge4-mul.dmg
    Updating media info for: {15FEDA5F-141C-4127-8D7E-B962D1742728}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePhotoshop12-Driver/AdobePhotoshop12-Driver.dmg
    Updating media info for: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeHelp/InstallAdobeHelp
    Updating media info for: {2C8C0585-5083-4032-94B8-A9AD04ED0716}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeAIR1.5.3-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeSuiteSharedConfiguration-mul/AdobeSuiteSharedConfiguration-mu l.dmg
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeCameraRaw6.0All/AdobeCameraRaw6.0All.dmg
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorCommonSetCMYK3-mul/AdobeColorCommonSetCMYK3-mul.dmg
    Updating media info for: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/DeviceCentral3LP-en_US/DeviceCentral3LP-en_US.dmg
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeCameraRawProfile6.0All/AdobeCameraRawProfile6.0All.dmg
    Updating media info for: {41372141-B568-4B5A-80DD-649980B825AC}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/DeviceCentral3LP-en_GB/DeviceCentral3LP-en_GB.dmg
    Updating media info for: {4438C826-1FD0-4D04-A70B-24FE1580AB21}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeMiniBridge1-mul/AdobeMiniBridge1-mul.dmg
    Updating media info for: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeAMP1.8-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {4687A306-D716-4D7A-B0AA-EAB65D17F149}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeAPE3-mul/AdobeAPE3-mul.dmg
    Updating media info for: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/SwitchBoard2.0All/SwitchBoard2.0All.dmg
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorJA_ExtraSettings3-mul/AdobeColorJA_ExtraSettings3-mul.dm g
    Updating media info for: {5A60CD44-B38B-47CD-BE38-219C81AE3345}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeExtendScriptToolkit3.5.0-mul/AdobeExtendScriptToolkit3.5.0-mu l.dmg
    Updating media info for: {69582206-7E5D-4476-A8F4-ECF90E9C8A69}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePhotoshop12-en_US/AdobePhotoshop12-en_US.dmg
    Updating media info for: {6A2E619B-E4AC-433B-A648-D458CE543A96}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAll.dmg
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeDeviceCentral3-all/AdobeDeviceCentral3-all.dmg
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorEU_ExtraSettings3-mul/AdobeColorEU_ExtraSettings3-mul.dm g
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeTypeSupport10-mul/AdobeTypeSupport10-mul.dmg
    Updating media info for: {73A4DC5E-226E-42BA-8ECA-2822592AC044}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeVideoProfilesCS3-mul/AdobeVideoProfilesCS3-mul.dmg
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorCommonSetRGB3-mul/AdobeColorCommonSetRGB3-mul.dmg
    Updating media info for: {796659A8-114A-4E16-9994-14DF6A1B1683}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeUtilities3-mul/AdobeUtilities3-mul.dmg
    Updating media info for: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePhotoshop12-Core/AdobePhotoshop12-Core.dmg
    Updating media info for: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePhotoshop12-en_GB/AdobePhotoshop12-en_GB.dmg
    Updating media info for: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePDFSettings10-ja_JP/AdobePDFSettings10-ja_JP.dmg
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeCSXSExtensions2-mul/AdobeCSXSExtensions2-mul.dmg
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeOutputModuleAll/AdobeOutputModuleAll.dmg
    Updating media info for: {A2502D10-2D75-4620-8A8B-73F39D5C1243}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePDFSettings10-mul/AdobePDFSettings10-mul.dmg
    Updating media info for: {A44863BF-8DB8-4D22-88DB-5A02BE319840}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeLinguisticsAll/AdobeLinguisticsAll.dmg
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorEU_Recommended3-mul/AdobeColorEU_Recommended3-mul.dmg
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobePDFL9.9-mul/AdobePDFL9.9-mul.dmg
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeCMaps3-mul/AdobeCMaps3-mul.dmg
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorNA_ExtraSettings3-mul/AdobeColorNA_ExtraSettings3-mul.dm g
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeFontsRequired-mul/AdobeFontsRequired-mul.dmg
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorNA_Recommended3-mul/AdobeColorNA_Recommended3-mul.dmg
    Updating media info for: {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorPhotoshop3-mul/AdobeColorPhotoshop3-mul.dmg
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeFontsRecommended-mul/AdobeFontsRecommended-mul.dmg
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeExtensionManager5.0All/AdobeExtensionManager5.0All.dmg
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeColorJA_Recommended3-mul/AdobeColorJA_Recommended3-mul.dmg
    Updating media info for: {FFEDE6AE-3052-11DF-89B7-E7102C404F28}
      Type: 1, Volume Order: 1, Media Name: Adobe Photoshop CS5
      Path: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeReviewPanel2-mul/AdobeReviewPanel2-mul.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,3.0.122.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    Setting property "INSTALLDIR" to: /Applications
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5
    Overwrite property "userASUPath" to: /Users/Caco/Applications/Adobe/OOBE/PDApp
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding is: false
    Action string for  {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding  is none
    Value returned on lookup of payload: {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 is: false
    Action string for  {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5  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: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 is: false
    Action string for  {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0  is none
    Value returned on lookup of payload: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 is: false
    Action string for  {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5  is none
    Value returned on lookup of payload: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp is: false
    Action string for  {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp  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: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is: false
    Action string for  {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5  is donotinstall
    Selection of payload {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is allowed but the user has marked it for not to install
    Value returned on lookup of payload: {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 is: false
    Action string for  {6A2E619B-E4AC-433B-A648-D458CE543A96} 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: {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 is: false
    Action string for  {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5  is donotinstall
    Selection of payload {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 is allowed but the user has marked it for not to install
    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: {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR is: false
    Action string for  {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR  is donotinstall
    Selection of payload {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR is allowed but the user has marked it for not to install
    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: {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 is: false
    Action string for  {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5  is none
    Value returned on lookup of payload: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player is: false
    Action string for  {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player  is donotinstall
    Selection of payload {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player is allowed but the user has marked it for not to install
    Value returned on lookup of payload: {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 is: false
    Action string for  {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5  is none
    Value returned on lookup of payload: {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 is: false
    Action string for  {007A2A28-D6A8-4D91-9A2B-568FF8052215} 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: {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: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 is: false
    Action string for  {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5  is none
    Value returned on lookup of payload: {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 is: false
    Action string for  {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5  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: {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: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral is: false
    Action string for  {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral  is donotinstall
    Selection of payload {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral is allowed but the user has marked it for not to install
    Value returned on lookup of payload: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US is: false
    Action string for  {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US  is none
    Payload {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB is: false
    Action string for  {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB  is none
    Payload {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB is extension payload. Aligning its action according to parent.
    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: {15FEDA5F-141C-4127-8D7E-B962D1742728} Adobe Photoshop CS5 is: false
    Action string for  {15FEDA5F-141C-4127-8D7E-B962D1742728} Adobe Photoshop CS5  is install
    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: {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: {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.
    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: /Applications
    ::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 1 miliseconds (0.001 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 1 miliseconds (0.001 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 20 miliseconds (0.02 seconds)
    ::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 18 miliseconds (0.018 seconds) DTR = 222.222 KBPS (0.217014 MBPS)
    [       0] Fri Apr 30 19:21:07 2010  INFO
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    Calling the custom action code for pre-install for payload {4687A306-D716-4D7A-B0AA-EAB65D17F149}
    ::START TIMER:: [Payload Operation :{4687A306-D716-4D7A-B0AA-EAB65D17F149}]
    [       1] Fri Apr 30 19:21:07 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:21:08 2010  INFO
    Beginning installation for payload at /tmp/.tempdir5YQQ0NGo/Install.db
    [       1] Fri Apr 30 19:21:11 2010  INFO
    Completing installation for payload at /tmp/.tempdir5YQQ0NGo/Install.db
    [       1] Fri Apr 30 19:21:12 2010  INFO
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{4687A306-D716-4D7A-B0AA-EAB65D17F149}.db
    [       0] Fri Apr 30 19:21:12 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{4687A306-D716-4D7A-B0AA-EAB65D17F149}] took 5002 miliseconds (5.002 seconds) DTR = 32.7869 KBPS (0.0320184 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    Calling the custom action code for post-install for payload {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding
    Calling the custom action code for pre-install for payload {796659A8-114A-4E16-9994-14DF6A1B1683}
    ::START TIMER:: [Payload Operation :{796659A8-114A-4E16-9994-14DF6A1B1683}]
    [       1] Fri Apr 30 19:21:12 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:21:13 2010  INFO
    Beginning installation for payload at /tmp/.tempdirHohwNqV3/Install.db
    Completing installation for payload at /tmp/.tempdirHohwNqV3/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{796659A8-114A-4E16-9994-14DF6A1B1683}.db
    [       0] Fri Apr 30 19:21:13 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{796659A8-114A-4E16-9994-14DF6A1B1683}] took 1001 miliseconds (1.001 seconds) DTR = 211.788 KBPS (0.206824 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5
    Calling the custom action code for pre-install for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    ::START TIMER:: [Payload Operation :{3F023875-4A52-4605-9DB6-A88D4A813E8D}]
    [       1] Fri Apr 30 19:21:13 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:21:14 2010  INFO
    Beginning installation for payload at /tmp/.tempdir6p8fPCGW/Install.db
    [       1] Fri Apr 30 19:21:29 2010  INFO
    Completing installation for payload at /tmp/.tempdir6p8fPCGW/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{3F023875-4A52-4605-9DB6-A88D4A813E8D}.db
    [       0] Fri Apr 30 19:21:30 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{3F023875-4A52-4605-9DB6-A88D4A813E8D}] took 17003 miliseconds (17.003 seconds) DTR = 38.3462 KBPS (0.0374474 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer
    Calling the custom action code for pre-install for payload {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
    ::START TIMER:: [Payload Operation :{4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}]
    [       1] Fri Apr 30 19:21:30 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:21:31 2010  INFO
    Beginning installation for payload at /tmp/.tempdirf0AuIJMz/Install.db
    Evaluating condition# 1
    Condition failed
    Evaluating condition# 1
    Condition failed
    Completing installation for payload at /tmp/.tempdirf0AuIJMz/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}.db
    [       0] Fri Apr 30 19:21:32 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}] took 2002 miliseconds (2.002 seconds) DTR = 35.964 KBPS (0.0351211 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0
    Calling the custom action code for pre-install for payload {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
    ::START TIMER:: [Payload Operation :{3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}]
    [       1] Fri Apr 30 19:21:32 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:21:33 2010  INFO
    Beginning installation for payload at /tmp/.tempdirjUVmqFtn/Install.db
    [       1] Fri Apr 30 19:21:34 2010  INFO
    Completing installation for payload at /tmp/.tempdirjUVmqFtn/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}.db
    [       0] Fri Apr 30 19:21:34 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}] took 2001 miliseconds (2.001 seconds) DTR = 61.969 KBPS (0.0605166 MBPS)
    [       0] Fri Apr 30 19:21:35 2010  INFO
    User specified overrideFile:
    Calling the custom action code for post-install for payload {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5
    Calling the custom action code for pre-install for payload {298CF0B0-8B47-46DF-B726-8E4BFAD5432E}
    ::START TIMER:: [Payload Operation :{298CF0B0-8B47-46DF-B726-8E4BFAD5432E}]
    [       1] Fri Apr 30 19:21:35 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: InstallThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installing third party payload
    Running the application : /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeHelp/InstallAdobeHelp
    command line arguments in order are : /Volumes/Adobe Photoshop CS5/Adobe Photoshop CS5/payloads/AdobeHelp/InstallAdobeHelp
    [       1] Fri Apr 30 19:21:59 2010  INFO
    Third party application output: done
    Third party payload succeded.  Testing return code: 0
    [       0] Fri Apr 30 19:22:00 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{298CF0B0-8B47-46DF-B726-8E4BFAD5432E}] took 25004 miliseconds (25.004 seconds) DTR = 4930.25 KBPS (4.8147 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp
    Calling the custom action code for pre-install for payload {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    ::START TIMER:: [Pre payload :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}] took 0 miliseconds (0 seconds) DTR = inf KBPS (inf MBPS)
    ::START TIMER:: [Payload Operation :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}]
    [       1] Fri Apr 30 19:22:00 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdir2ox5W0oq/Install.db
    [       1] Fri Apr 30 19:22:01 2010  INFO
    Completing installation for payload at /tmp/.tempdir2ox5W0oq/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{02731921-5711-4E7A-A898-D6BCF0F2A1CD}.db
    [       0] Fri Apr 30 19:22:02 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}] took 2001 miliseconds (2.001 seconds) DTR = 55.972 KBPS (0.0546602 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5
    ::START TIMER:: [Post payload :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}]
    In PostPayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}] took 0 miliseconds (0 seconds)
    Calling the custom action code for pre-install for payload {6A2E619B-E4AC-433B-A648-D458CE543A96}
    ::START TIMER:: [Payload Operation :{6A2E619B-E4AC-433B-A648-D458CE543A96}]
    [       1] Fri Apr 30 19:22:02 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdirny3eZ2s5/Install.db
    [       1] Fri Apr 30 19:22:03 2010  INFO
    Completing installation for payload at /tmp/.tempdirny3eZ2s5/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{6A2E619B-E4AC-433B-A648-D458CE543A96}.db
    [       0] Fri Apr 30 19:22:05 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6A2E619B-E4AC-433B-A648-D458CE543A96}] took 3002 miliseconds (3.002 seconds) DTR = 118.588 KBPS (0.115808 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5
    Calling the custom action code for pre-install for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [       1] Fri Apr 30 19:22:05 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:06 2010  INFO
    Beginning installation for payload at /tmp/.tempdirOFKjsfqf/Install.db
    Completing installation for payload at /tmp/.tempdirOFKjsfqf/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    [       0] Fri Apr 30 19:22:07 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 2001 miliseconds (2.001 seconds) DTR = 71.964 KBPS (0.0702774 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5
    Calling the custom action code for pre-install for payload {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    ::START TIMER:: [Payload Operation :{925ED7E4-E1B6-4544-8141-1C98A18D2E2E}]
    [       1] Fri Apr 30 19:22:07 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:08 2010  INFO
    Beginning installation for payload at /tmp/.tempdirfFUTUZdQ/Install.db
    Evaluating condition# 1
    Condition failed
    Evaluating condition# 1
    Condition failed
    Completing installation for payload at /tmp/.tempdirfFUTUZdQ/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{925ED7E4-E1B6-4544-8141-1C98A18D2E2E}.db
    [       0] Fri Apr 30 19:22:09 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{925ED7E4-E1B6-4544-8141-1C98A18D2E2E}] took 2001 miliseconds (2.001 seconds) DTR = 101.949 KBPS (0.0995596 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule
    Calling the custom action code for pre-install for payload {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    ::START TIMER:: [Payload Operation :{BAE5212B-6651-4AD8-B26A-1B284D2665C6}]
    [       1] Fri Apr 30 19:22:09 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:10 2010  INFO
    Beginning installation for payload at /tmp/.tempdirRszmyzA9/Install.db
    [       1] Fri Apr 30 19:22:15 2010  INFO
    Completing installation for payload at /tmp/.tempdirRszmyzA9/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{BAE5212B-6651-4AD8-B26A-1B284D2665C6}.db
    [       0] Fri Apr 30 19:22:15 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BAE5212B-6651-4AD8-B26A-1B284D2665C6}] took 6002 miliseconds (6.002 seconds) DTR = 17.3276 KBPS (0.0169214 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5
    Calling the custom action code for pre-install for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [       1] Fri Apr 30 19:22:15 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:16 2010  INFO
    Beginning installation for payload at /tmp/.tempdirw1aFa8Ac/Install.db
    [       1] Fri Apr 30 19:22:17 2010  INFO
    Completing installation for payload at /tmp/.tempdirw1aFa8Ac/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    [       0] Fri Apr 30 19:22:17 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 2002 miliseconds (2.002 seconds) DTR = 39.96 KBPS (0.0390235 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5
    Calling the custom action code for pre-install for payload {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    ::START TIMER:: [Payload Operation :{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}]
    [       1] Fri Apr 30 19:22:17 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:18 2010  INFO
    Beginning installation for payload at /tmp/.tempdir3Kaj7Tlp/Install.db
    Evaluating condition# 1
    Condition failed
    [       1] Fri Apr 30 19:22:19 2010  INFO
    Completing installation for payload at /tmp/.tempdir3Kaj7Tlp/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}.db
    [       0] Fri Apr 30 19:22:20 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}] took 3002 miliseconds (3.002 seconds) DTR = 30.6462 KBPS (0.029928 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw
    Calling the custom action code for pre-install for payload {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
    ::START TIMER:: [Payload Operation :{0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}]
    [       1] Fri Apr 30 19:22:20 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:21 2010  INFO
    Beginning installation for payload at /tmp/.tempdir4HDJtZwQ/Install.db
    Completing installation for payload at /tmp/.tempdir4HDJtZwQ/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}.db
    [       0] Fri Apr 30 19:22:21 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}] took 1002 miliseconds (1.002 seconds) DTR = 399.202 KBPS (0.389845 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support
    Calling the custom action code for pre-install for payload {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    ::START TIMER:: [Pre payload :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}] took 0 miliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}]
    [       1] Fri Apr 30 19:22:21 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:22 2010  INFO
    Beginning installation for payload at /tmp/.tempdirmWE3LxAT/Install.db
    [       1] Fri Apr 30 19:22:23 2010  INFO
    Completing installation for payload at /tmp/.tempdirmWE3LxAT/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}.db
    [       0] Fri Apr 30 19:22:23 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}] took 2002 miliseconds (2.002 seconds) DTR = 57.9421 KBPS (0.056584 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5
    ::START TIMER:: [Post payload :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}]
    In PostPayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}] took 0 miliseconds (0 seconds)
    Calling the custom action code for pre-install for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    ::START TIMER:: [Payload Operation :{A44863BF-8DB8-4D22-88DB-5A02BE319840}]
    [       1] Fri Apr 30 19:22:24 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdirmHAYToRc/Install.db
    [       1] Fri Apr 30 19:22:30 2010  INFO
    Completing installation for payload at /tmp/.tempdirmHAYToRc/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{A44863BF-8DB8-4D22-88DB-5A02BE319840}.db
    [       0] Fri Apr 30 19:22:31 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{A44863BF-8DB8-4D22-88DB-5A02BE319840}] took 7002 miliseconds (7.002 seconds) DTR = 29.1345 KBPS (0.0284517 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5
    Calling the custom action code for pre-install for payload {FFEDE6AE-3052-11DF-89B7-E7102C404F28}
    ::START TIMER:: [Payload Operation :{FFEDE6AE-3052-11DF-89B7-E7102C404F28}]
    [       1] Fri Apr 30 19:22:31 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:32 2010  INFO
    Beginning installation for payload at /tmp/.tempdirU6iggQo5/Install.db
    Completing installation for payload at /tmp/.tempdirU6iggQo5/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{FFEDE6AE-3052-11DF-89B7-E7102C404F28}.db
    [       0] Fri Apr 30 19:22:33 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{FFEDE6AE-3052-11DF-89B7-E7102C404F28}] took 2001 miliseconds (2.001 seconds) DTR = 41.979 KBPS (0.0409951 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5
    Calling the custom action code for pre-install for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    ::START TIMER:: [Payload Operation :{007A2A28-D6A8-4D91-9A2B-568FF8052215}]
    [       1] Fri Apr 30 19:22:33 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdirClcA4nsl/Install.db
    [       1] Fri Apr 30 19:22:34 2010  INFO
    Completing installation for payload at /tmp/.tempdirClcA4nsl/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{007A2A28-D6A8-4D91-9A2B-568FF8052215}.db
    [       0] Fri Apr 30 19:22:35 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{007A2A28-D6A8-4D91-9A2B-568FF8052215}] took 2001 miliseconds (2.001 seconds) DTR = 45.977 KBPS (0.0448994 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5
    Calling the custom action code for pre-install for payload {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    ::START TIMER:: [Payload Operation :{39CB2E53-5326-4939-8B5A-0402C6EFBFE3}]
    [       1] Fri Apr 30 19:22:35 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdir6nnvTkys/Install.db
    [       1] Fri Apr 30 19:22:36 2010  INFO
    Completing installation for payload at /tmp/.tempdir6nnvTkys/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{39CB2E53-5326-4939-8B5A-0402C6EFBFE3}.db
    [       0] Fri Apr 30 19:22:37 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{39CB2E53-5326-4939-8B5A-0402C6EFBFE3}] took 2001 miliseconds (2.001 seconds) DTR = 49.975 KBPS (0.0488037 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK
    Calling the custom action code for pre-install for payload {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    ::START TIMER:: [Payload Operation :{78A53622-CDBA-49D1-A3D0-D563FB398D0C}]
    [       1] Fri Apr 30 19:22:37 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdiruJyqOl7B/Install.db
    1 Successfully added payload {AB8E4534-C573-4CC9-BA6A-76DD14055510} to collection adbeadbeadbeadbeadbeadbeadbeadb
    1 Successfully set payload installState for payload {AB8E4534-C573-4CC9-BA6A-76DD14055510}
    Completing installation for payload at /tmp/.tempdiruJyqOl7B/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{78A53622-CDBA-49D1-A3D0-D563FB398D0C}.db
    [       0] Fri Apr 30 19:22:38 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{78A53622-CDBA-49D1-A3D0-D563FB398D0C}] took 1001 miliseconds (1.001 seconds) DTR = 99.9001 KBPS (0.0975587 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB
    Calling the custom action code for pre-install for payload {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    ::START TIMER:: [Payload Operation :{6F29BE46-E5F3-4146-8A84-20301E5C985A}]
    [       1] Fri Apr 30 19:22:38 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    Beginning installation for payload at /tmp/.tempdir6moSgTWD/Install.db
    [       1] Fri Apr 30 19:22:39 2010  INFO
    Completing installation for payload at /tmp/.tempdir6moSgTWD/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{6F29BE46-E5F3-4146-8A84-20301E5C985A}.db
    [       0] Fri Apr 30 19:22:39 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F29BE46-E5F3-4146-8A84-20301E5C985A}] took 1001 miliseconds (1.001 seconds) DTR = 67.9321 KBPS (0.0663399 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5
    Calling the custom action code for pre-install for payload {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    ::START TIMER:: [Payload Operation :{54F4466A-091A-46DA-B697-43D55CEF9DF6}]
    [       1] Fri Apr 30 19:22:39 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:40 2010  INFO
    Beginning installation for payload at /tmp/.tempdir3hF6s2s0/Install.db
    Completing installation for payload at /tmp/.tempdir3hF6s2s0/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{54F4466A-091A-46DA-B697-43D55CEF9DF6}.db
    [       0] Fri Apr 30 19:22:41 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{54F4466A-091A-46DA-B697-43D55CEF9DF6}] took 2002 miliseconds (2.002 seconds) DTR = 33.966 KBPS (0.03317 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5
    Calling the custom action code for pre-install for payload {D26EEF95-420A-4726-B85D-AFBE752EF526}
    ::START TIMER:: [Payload Operation :{D26EEF95-420A-4726-B85D-AFBE752EF526}]
    [       1] Fri Apr 30 19:22:41 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:42 2010  INFO
    Beginning installation for payload at /tmp/.tempdirXhueVBYG/Install.db
    Completing installation for payload at /tmp/.tempdirXhueVBYG/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{D26EEF95-420A-4726-B85D-AFBE752EF526}.db
    [       0] Fri Apr 30 19:22:42 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{D26EEF95-420A-4726-B85D-AFBE752EF526}] took 1001 miliseconds (1.001 seconds) DTR = 91.9081 KBPS (0.089754 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5
    Calling the custom action code for pre-install for payload {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
    ::START TIMER:: [Payload Operation :{D31D91FE-F0E8-4DF1-812C-9400BE92A386}]
    [       1] Fri Apr 30 19:22:42 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:43 2010  INFO
    Beginning installation for payload at /tmp/.tempdirQGI5nzpb/Install.db
    Completing installation for payload at /tmp/.tempdirQGI5nzpb/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{D31D91FE-F0E8-4DF1-812C-9400BE92A386}.db
    [       0] Fri Apr 30 19:22:43 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{D31D91FE-F0E8-4DF1-812C-9400BE92A386}] took 1001 miliseconds (1.001 seconds) DTR = 67.9321 KBPS (0.0663399 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5
    Calling the custom action code for pre-install for payload {73A4DC5E-226E-42BA-8ECA-2822592AC044}
    ::START TIMER:: [Payload Operation :{73A4DC5E-226E-42BA-8ECA-2822592AC044}]
    [       1] Fri Apr 30 19:22:43 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:44 2010  INFO
    Beginning installation for payload at /tmp/.tempdirv7hDZBSP/Install.db
    1 Collection adbeadbeadbeadbeadbeadbeadbeadb already exists
    1 Successfully added payload {4F3CE025-D60B-4E6B-8D39-B04CD3769008} to collection adbeadbeadbeadbeadbeadbeadbeadb
    1 Successfully set payload installState for payload {4F3CE025-D60B-4E6B-8D39-B04CD3769008}
    Completing installation for payload at /tmp/.tempdirv7hDZBSP/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{73A4DC5E-226E-42BA-8ECA-2822592AC044}.db
    [       0] Fri Apr 30 19:22:44 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{73A4DC5E-226E-42BA-8ECA-2822592AC044}] took 1001 miliseconds (1.001 seconds) DTR = 67.9321 KBPS (0.0663399 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5
    Calling the custom action code for pre-install for payload {A2502D10-2D75-4620-8A8B-73F39D5C1243}
    ::START TIMER:: [Payload Operation :{A2502D10-2D75-4620-8A8B-73F39D5C1243}]
    [       1] Fri Apr 30 19:22:44 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Request to install payload
    [       1] Fri Apr 30 19:22:45 2010  INFO
    Beginning installation for payload at /tmp/.tempdirNvIymLB4/Install.db
    [       1] Fri Apr 30 19:22:47 2010  INFO
    Completing installation for payload at /tmp/.tempdirNvIymLB4/Install.db
    UninstallDBPath=/Library/Application Support/Adobe/Uninstall/{A2502D10-2D75-4620-8A8B-73F39D5C1243}.db
    [       0] Fri Apr 30 19:22:47 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{A2502D10-2D75-4620-8A8B-73F39D5C1243}] took 3002 miliseconds (3.002 seconds) DTR = 39.9734 KBPS (0.0390365 MBPS)
    User specified overrideFile:
    Calling the custom action code for post-install for payload {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5
    Calling the custom action code for pre-install for payload {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
    ::START TIMER:: [Pre payload :{E39A5ABD-516B-46F9-A042-694BBA6A4E08}]
    Font Installer: Using [AdobeCommon] path: /Library/Application Support/Adobe
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E39A5ABD-516B-46F9-A042-694BBA6A4E08}] took 0 miliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E39A5ABD-516B-46F9-A042-694BBA6A4E08}]
    [       1] Fri Apr 30 19:22:47 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= *=*=*
    Installer Operation: PayloadInstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=

  • Is there a way to install just the 32 bit version of Photoshop CS5 on a Windows 7 64 bit machine?

    I have a custom built Java 6 application that doesn't like Photoshop CS5 64 bit edition.  The program copies over a file from the network to the local machine and then opens it in Photoshop.  The user manipulates the image and saves the changes.  The user then completes the image and the application copies the image back to the server.  The problem we're having is: When we use Photoshop CS5 64-bit, it takes about 2 minutes for Photoshop to open the image.  The file is copied over within 2 seconds and the Photoshop icon on the windows taskbar starts flashing.  But then you spend a few minutes waiting for it to open.
    Some things that I have tried to isolate the problem:
    - I found you can copy the file somewhere else, double click on it and the image will open in Photoshop before the script is able to open the file.
    - I tried uninstalling Photoshop and reinstalling just the 64 bit edition without the 32 bit installation.  The script just stops working in this situation.
    - I tried uninstalling CS5 and installing CS3.  The image opens as soon as the file is copied over.
    What I would like to try next is to install just the CS5 32 bit version.  But the installer is being uncooperative and will only allow either the 64 bit version or both the 64 and 32 bit versions.  So, back to my question: Is there a way to install just the 32 bit version of Photoshop CS5 on a Windows 7 64 bit machine?

    Do you mean schroot?  If so I'm not sure exactly how well that will work out, because the part that depends on python is a deamon that handles communication between the USB dongle and the Tux Droid which may mean hacking the deamon a bit so ether way this does not seem like it will be a easy task.

  • How do i plug in camera raw nikon d610  to photoshop cs5?

    I have Nikon D610 and want to work in camera raw. How do I plug in to Photoshop CS5?

    Thanks for your help. Complicated but it works
    Från: c.pfaffenbichler
    Skickat: den 9 juli 2014 15:35
    Till: Hillevi Björlund
    Ämne:  How do i plug in camera raw nikon d610  to photoshop cs5?
    How do i plug in camera raw nikon d610  to photoshop cs5?
    created by c.pfaffenbichler <https://forums.adobe.com/people/c.pfaffenbichler>  in Photoshop General Discussion - View the full discussion <https://forums.adobe.com/message/6535528#6535528>

  • Reinstalling Photoshop CS5?

    I have been using Photoshop CS5 since June 2010 and two days ago for some reason it stopped opening any jpg or psd files and would crash. I am on a Mac with OSX 10.7.4.
    I have now uninstalled CS5 ( and kept my preferences and kept my activation).
    I want to reinstall it again still on the same computer. I can't remember if I had a disc or got it as a download, but anyway I do not have an original disc. I do have my  serial number  from the Adobe My Products list and the date I registered it on this computer.
    Where and how can I get a re-download for my Photoshop CS5 so I can put my serial number in and get back to work?
    Would appreciate urgent help.
    Many thanks

    Hi jeff,
    Since contacting Adobe regarding reinstalling Photoshop CS5 from a download, I have found my original install disc.
    I had uninstalled Photoshop CS5 and now reinstalled it via the install disc and have run all the updates.
    However, Photoshop is still crashing out every time I either try to open a file ( jpg, psd doesn't matter) or create a new document. I have done this so many times and it is still the same.
    I have once again uninstalled and reinstalled from disc as before and same thing happens.
    I have tried switching over to 32 bit and same thing happens.
    Have run diagnostics on all 4 hard drives and all are ok and healthy.
    I have  allocated RAM 70% to Photoshop 1470mb
    I have upgraded to OSX 10.7.4 last month and been using Photoshop every day till Wednesday this week when it stopped working.
    Are there any known issues with Lion and  CS5?
    Do you suspect a hardware issue?
    Many thanks for your prompt  response.

  • Multiple object is not exported while clicking Edit Object in "Acrobat  X Pro to Photoshop CS5"

    Can you help someone to get multiple object using "Edit Objects" from "Acrobat X Pro" to "Photoshop CS5"? Refer below:
    Selecting the multi object (Acrobat X Pro):
    Click Edit Objects => Displays below option, click OK:
    Opened only one object instead of above multiple selected - in Photoshop CS5
    Thanks in advance,
    Pasumalai J

    Dear Mylenium,
    Thanks for your respond on this. However the same scenario is working perfectly in "Acrobat 6" to "Photoshop CS". Could you please clarify?
    Pasumalai

  • Cannot find a link to download Photoshop CS5

    I bought the disk version for £400+ but it's for Mac, I no longer have Mac and therefore want to install it on my PC. What I thought would be a simple download is turning into a nightmare. I cannot even find just a trial version. I don't want to download CS6, because I don't have the money to waste to purchase the whole set again. Could you please direct me to  link where I can download Photoshop CS5.
    Or will the serial code work for CS6?

    Direct Download Links for Adobe Software
    And like it or not, you will have to upgrade to CS6. Serials are different across platforms and versions:
    Order an Adobe product platform swap or language swap
    Mylenium

Maybe you are looking for