Want a code to check & install JRE automaticallly without user intervention

hi
I am trying to run an applet on a machine that is not having JRE on it.
want a code that will check for such condition and install JRE automatically.
If JRE is already present then it should check for required version and enable it also.
please help in this regard.
thanks in advance
Santosh.

The ability to detect the jre at the update level, as well as the ability to install a specific version are only present if the DT plugins are installed.
These plugins only exist for windows and are only part of the 6u10 (1.6.0_10) versions of java.
The javascript you show uses an undefined minimumVersion variable.
also note, you cannot use the wildcard '1.5.0*' in the call to isWebStartInstalled (which takes minimumVersion arg)
if fixed, this code would still not work as you want, since clients with 1.6.0 or later would sail straight thru and launch.
I suggest replacing isWebStartInstalled() with deployJava.versionCheck('1.5.0*') .
then on systems with the plugin installed, if no 1.5.0* version is installed, the latest 1.5.0_XX will be installed before launching the app.
(assuming the app has also <j2se version=1.5/> or equiv.)
on systems w/o plugins installed, the latest version of java will be installed, and it will be up to javaws auto download to get 1.5.0* version.
this could still have problems, especially on platforms not supporting the plugins (non-windows) , since code keeps checking for '1.5.0*', and installing only latest, so you would want to wrap install with something to prevent repeated attempts to install:
if (deployJava.versionCheck('1.6.0+') && !deployJava.isPluginInstalled()) {
---- don't do any install here - ---
/Andy

Similar Messages

  • Wanted: example code authority check for material master (note 303483)

    Hi there,
    we are looking for a coding example for the function module Z_MATERIAL_AUTHORITY_CHECK mentioned in note 303483. We are almost sure that a lot of customers need this enhancement for a more sophisticated authory check when using a common material master for different companies.
    Thanks in advance!
    Regards,
    Frank

    Hi Leo,
    Thanks for the information. I did check the system entries for the same record using T-Code>SM13. Surprisingly, the entries are getting deletedI see an error message "Enqueques Deleted" for the entries.
    I would appreciate if you suggest further on the issue.
    Thanks and Regards
    Srinivas Bandi

  • Force Apple Software Updates to Install Without User Intervention?

    I have a Mac server (Yosemite 10.10.2) that pushes certain Apple software updates to my client iMacs (Mavericks 10.9.4).  For example I want to update the Apple Remote Desktop client on all of the clients.  Once I log into a client machine I see that the update is available and has been received from my Mac server.  The problem is that it is not installed.  It appears that I would have to visit each machine and log in and then click install to get this done.  I have to believe there is a way to get this done without having to visit every machine.  Any ideas would be appreciated.

    You might want to look at implementing Munki. Munki is mainly intended as a means of distributing both initial Application installs, but also updates for those applications, e.g. Microsoft Office. It can however also automate installing Apple Software Updates. Importantly it does not require the end user to ever enter any administrator details to allow these updates to be installed.
    See https://code.google.com/p/munki/wiki/AppleSoftwareUpdatesWithMunki
    (Munki is free.)

  • Need to install single app for multiple ids without user intervention to do a first time sign in.  Can we encrypt the login information in the install

    In old Volume license days, we just script the install with a single license key for CLP licensing.  Now it requires a different package for every single install with a different login id.  What if you have to do 10 or 100 with multiple ids

    Moving this discussion to the Enterprise Deployment for Creative Cloud, Creative Suite forum.

  • Updates Install without user intervention

    Hi All,
    I am currently using WSUS and GPO's to push updates to our Windows 2008 R2 Servers.  We just began doing this within the last couple of months and have created the GPO to "auto download updates and notify for install".  The only other
    relevant setting is "reschedule Automatic updates scheduled installations" is set to 15 minutes.  Based on our setting of "notify for install", I would not expect this setting to have any effect.
    Now twice in the last week, individual server administrators have been working on their servers, rebooted for whatever reason and then they report to me that Windows Updates are installing without their approval.  Anyone have any ideas how this could
    happen?
    Thanks

    "I'm absolutely sure they didn't either. That's my exact point. The user does not "initiate" an installation of downloaded updates when the system is shutdown/restarted from the Start Menu -- it happens automatically since Windows 7 SP1."
    If this is the case it explains what's happening and I have to stop this.  What settings then can I use to install the approved updates only if the sys admin initiates it?
    There are two ways to approach this:
    Configure the WUA to "Notify for Download" (AUOption='2'). As a result, the sysadmin will need to perform two tasks: [1] Download the updates (at which time the Install Updates and Shutdown consideration is in effect, and then [2] Install the updates when
    desired. This implies planning in advance to allow for the download time, and then planning for the installation event.
    Use the Command Prompt to reboot the server: SHUTDOWN /R /T which will completely avoid the installation of any updates already downloaded.
    Personally I would offer this argument for consideration: Why is a sysadmin rebooting a server without consideration for the fact that updates might be pending installation? Most organizations I know
    only restart servers as a function of installing updates, usually during scheduled maintenance windows. Any other activities that require a system restart are deferred until that scheduled maintenance window.
    A corollary to this is also: Why is a sysadmin unfamiliar with patch state of the system they're responsible for?
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Hi i want to execute 3 reports  at one click without user interaction

    hi Friends,
    Hi i want to execute 3 reports with one click ie  by putting radio button when we click on this this wants to execute all 3 reports with out user interaction pls try to understand and provide the solution pls
    Thanks & Regards
    Mohan  Reddy

    Hello,
    To achieve this you can use the SUBMIT command after an user action.
    Example
    The program report1 has a stand-alone selection screen with the screen number 1100. In the program report2, an internal table with row type RSPARAMS and a ranges table are filled for this selection screen. These are transferred at SUBMIT together with a single condition.
    Program accessed
    REPORT report1.
    DATA text TYPE c LENGTH 10.
    SELECTION-SCREEN BEGIN OF SCREEN 1100.
      SELECT-OPTIONS: selcrit1 FOR text,
                      selcrit2 FOR text.
    SELECTION-SCREEN END OF SCREEN 1100.
    Calling program
    REPORT report2.
    DATA: text       TYPE c LENGTH 10,
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
          range_tab  LIKE RANGE OF text,
          range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind    = 'S'.
    rspar_line-sign    = 'I'.
    rspar_line-option  = 'EQ'.
    rspar_line-low     = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
                   WITH SELECTION-TABLE rspar_tab
                   WITH selcrit2 BETWEEN 'H' AND 'K'
                   WITH selcrit2 IN range_tab
                   AND RETURN.
    Regards.

  • Automatic download/install JRE via JNLP

    Under Java Web Start Reference (http://java.sun.com/products/javawebstart/developers.html)
    "A MAIN feature of the ... JNLP... is the ability to automatically download and install JREs onto the user's machine".
    Many have taken this to mean "if the client doesn't have the necessary JRE it will be installed". Well, if the client doesn't have ANY JRE isn't that the same thing as not having the necessary JRE installed? Apparently not. It appears that it is similar to the old joke: How to be a millionaire: 1) First, get a million dollars. The documentation might be enhanced if this chicken/egg situation were mentioned. It seems that we have to write scripts, etc to either point to a JRE download site or somehow manage the install ourselves. I started to look into this but then realized YOU HAVE TO HAVE ADMIN RIGHTS to install the JRE on the client.
    This may all be self-evident to those who have been through this but it's a bitter lesson. If what I have written is not true would someone set me straight and tell me how to get around the admin rights problem? Oh, and does the admin rights problem persist if the the client has a JRE but JNLP needs to download/install a different version? This may be the mortal blow to three months' effort at getting J2EE/J2SE in the door at my company: all we want is to download and run a small Java app for the user to use regardless of which machine he or she is using.

    To change the Registry, Windows requires admin rights. This may (or may not be something you can achieve with Secondary Logon Rights - see http://support.microsoft.com/Default.aspx?kbid=225035 ) There is also a lot of information about this on the web, you should do some further research.
    To run applets and browser related programs requires that Java install the JRE, which uses Browser Helper Objects (BHO's) and that involves Registry entries.
    However, if you only need to run Java programs from the commandline, then the possibility exists to install the Java JDK without a public JRE. That could be done by a simple copy of the appropriate directory(s). This will give you a private JRE inside the JDK, and doesn't make any Registry entries. (Of course, then applets can't be run.) That JRE can then be accessed using a full path to the java.exe executable. (I don't know whether using Sun's downloaded installer will do this - it may still require admin privileges.)
    You're in an area where you'll probably have to do some experimentation. I would address the JNLP questions to the Java Web Start forum, there are some good people that monitor that forum.

  • How do i see what photos are stored in my icloud.  I cannot do this without installing 8.0 or above which i cannot do as i do not have enough space on my iphone.  I do not want to delete the pics to make enough room to install 8.0 without checking

    how do i see what photos are stored in my icloud.  I cannot do this without installing 8.0 or above which i cannot do as i do not have enough space on my iphone.  I do not want to delete the pics to make enough room to install 8.0 without checking first that the pics are saved.  Thanks

    Good day AMELIASARAH,
    One resolution to your issue would be to update your iPhone using iTunes on your computer rather than over the air. This requires much less space on the iPhone as most of the work is done by the computer. See this article for how to do it -
    If you need more space for an iOS update - Apple Support
    Thanks for using Apple Support Communities.
    Safe computing,
    Brett L 

  • "Host String" to check install

    Do I enter the SID into the host string to test install?
    On my server (Oracle 8i for Netware) in tnsnames.ora, I have a service variable and a SID. On my client (Oracle 8i for NT),in tnsnames.ora, I have a service variable and a
    Service Name variable.
    TIA. I am very new to this.

    The ability to detect the jre at the update level, as well as the ability to install a specific version are only present if the DT plugins are installed.
    These plugins only exist for windows and are only part of the 6u10 (1.6.0_10) versions of java.
    The javascript you show uses an undefined minimumVersion variable.
    also note, you cannot use the wildcard '1.5.0*' in the call to isWebStartInstalled (which takes minimumVersion arg)
    if fixed, this code would still not work as you want, since clients with 1.6.0 or later would sail straight thru and launch.
    I suggest replacing isWebStartInstalled() with deployJava.versionCheck('1.5.0*') .
    then on systems with the plugin installed, if no 1.5.0* version is installed, the latest 1.5.0_XX will be installed before launching the app.
    (assuming the app has also <j2se version=1.5/> or equiv.)
    on systems w/o plugins installed, the latest version of java will be installed, and it will be up to javaws auto download to get 1.5.0* version.
    this could still have problems, especially on platforms not supporting the plugins (non-windows) , since code keeps checking for '1.5.0*', and installing only latest, so you would want to wrap install with something to prevent repeated attempts to install:
    if (deployJava.versionCheck('1.6.0+') && !deployJava.isPluginInstalled()) {
    ---- don't do any install here - ---
    /Andy

  • Install JRE in silent mode using batch script

    hi,
    i hav developed a java application which i want to run on another pc where jre is not available. i want to install jre along with my java application by using batch script.
    please give the sample script code so that i can execute batch script on client machine.( i am currently using jre 1.6).
    Thanks in advance,
    Prashant.

    It is not supported at this time. I believe it will be around in 3.1... but that's out in the future. Von or Svetlana might be able to give more insight.
    CPO install is pretty quick, are you trying to do mass installs or something?

  • Have installed jre 7. Why can't I install firematcher?

    Dear Sirs,
    have firefox 3.4, want to install Firematcher (addon fpr plagiarism check). At least Jre 6u12 is required, although I installed Jre 7, I receice an error 'you have to install Jre 6u12min'.
    Why does this go wrong?
    Thanks in advance for reply,
    Yours sincerely,
    Tina

    My advice is to contact the developer of that extension for support. The website says it is a beta version, and the website was last updated on 03/01/2010; so I suspect it is a dead project which is unlikely to be developed any further.
    http://www.firematcher.com/download
    Feedback <br />
    We would like to encourage you to provide us with valuable feedback. Please send your suggestions to [email protected]

  • A sample code to check records of a system table?

    hi ABAP4 experts,
    We are pretty new at ABAP4.  We would be appreciated if you can provide a sample code to check how many records and calculate a total amount for a specific field, e.g., DMBTR in a system table, e.g., BSEG.  Note: there is no any selection for this table BSEG, we just want to get the total record count in this table and also the total amount for a specific field e.g. DMBTR in this table.
    Do we have to use an internal table to transfer all the records of BSEG into the internal table to get the result?
    We will give you reward points!

    Hi Kevin,
    Using SUM directly in SQL will NOT work for table BSEG because BSEG is pool table. You will get an ABAP error.
    "Aggregate functions and the addition DISTINCT are not supported in field lists for pooled and cluster tables".
    You need an internal table to transfer all data from BSEG and perform calculation for count and sum.
    Concerning about performance running perhaps you can code something like this.
    REPORT ZZFLTEST NO STANDARD PAGE HEADING.
    TABLES: BSEG.
    DATA: CURS          TYPE CURSOR,
          PACKAGE_SIZE  LIKE RMCS4-MC_CM_PSIZE VALUE '10000'.                                                                               
    DATA: BEGIN OF I_BSEG OCCURS 0,
            BELNR TYPE BSEG-BELNR,
            BURKS TYPE BSEG-BURKS,
            GJAHR TYPE BSEG-GJAHR,       
            BUZEI TYPE BSEG-BUZEI,       
            DMBTR TYPE BSEG-DMBTR,
            SHKZG TYPE BSEG-SHKZG.
    DATA: END OF I_BSEG.
    DATA: TOT_DMBTR TYPE BSEG-DMBTR,
          TOT_REC   TYPE I.
    SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS: P_SIZE LIKE RMCS4-MC_CM_PSIZE DEFAULT '10000'.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK B01.
    START-OF-SELECTION.
      PACKAGE_SIZE = P_SIZE.
      OPEN CURSOR WITH HOLD CURS FOR
      SELECT BELNR BURKS GJAHR BUZEI DMBTR SHKZG
      FROM BSEG
      WHERE BELNR <> SPACE
        AND BURKS <> SPACE
        AND GJAHR <> SPACE
        AND BUZEI <> SPACE.
    *Fetch internal table I_BSEG for every 10000 records.
      DO.
        FETCH NEXT CURSOR CURS
        INTO TABLE I_BSEG PACKAGE SIZE PACKAGE_SIZE.
        IF SY-SUBRC <> 0.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE CURSOR CURS.
      LOOP AT I_BSEG.
        TOT_REC = TOT_REC + 1.
        IF I_BSEG-SHKZG = 'S'.
          TOT_DMBTR = TOT_DMBRT + I_BSEG-DMBTR * -1.
        ELSE.
          TOT_DMBTR = TOT_DMBTR + I_BSEG-DMBTR.
        ENDIF.
      ENDLOOP.
      WRITE: / 'TOTAL BSEG-DMBTR:', TOT_DMBTR,
             / 'TOTAL RECORD:    ', TOT_REC.
    END-OF-SELECTION.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Error Code 6 when installing CS5 on Windows 7 64 bit Machine

    Like many others I am getting Error Code 6 when attempting to install Photoshop CS5 on a Windows 7 Home Premioum 64 bit machine. I have gotten as far as creating the log and displaying it but am not skilled enought to interpret it. Can anyone look at this log and tell me the solution to my issue. It is greatly appreciated.
    This is on a new machine with a new operating system and up to date. Lightroom 3 installed with no problem as did many other apps.
    Roger Smith
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.0.121.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 9431.89 miliseconds (9.43189 seconds) DTR = 5617.54 KBPS (5.48588 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 351.294 miliseconds (0.351294 seconds) DTR = 47493 KBPS (46.3799 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCSXSInfrastructure2-mul\Install.db
    Updating media info for: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_ATL_x86\Microsoft_VC90_ATL_x86.msi
    Updating media info for: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeAMP1.8-mul\AdobeAIRInstaller.exe
    Updating media info for: {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeLinguisticsAll_x64\Install.db
    Updating media info for: {08D2E121-7F6A-43EB-97FD-629B44903403}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_CRT_x86\Microsoft_VC90_CRT_x86.msi
    Updating media info for: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-Support\Install.db
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeBridge4-mul\Install.db
    Updating media info for: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_ATL_x86\Microsoft_VC80_ATL_x86.msi
    Updating media info for: {11C0657F-2BD4-4CBC-87F3-9455DC91886E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeFontsRecommended_x64-mul\Install.db
    Updating media info for: {15FEDA5F-141C-4127-8D7E-B962D1742728}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-Driver\Install.db
    Updating media info for: {17C6080E-F475-4B49-A30C-EEB85673E999}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePDFL9.9_x64-mul\Install.db
    Updating media info for: {1D809D80-28A4-11DF-A816-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\DeviceCentral3LP-en_US\Install.db
    Updating media info for: {1D830E80-28A4-11DF-A025-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\DeviceCentral3LP-en_GB\Install.db
    Updating media info for: {1E9FC118-651D-4934-97BE-E53CAE5C7D45}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_MFCLOC_x86_x64\Microsoft_VC80_MFCLOC_x86_x64.msi
    Updating media info for: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeXMPPanelsAll\Install.db
    Updating media info for: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeAPE3-mul\Install.db
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCameraRaw6.0All\Install.db
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorCommonSetCMYK3-mul\Install.db
    Updating media info for: {3BF96AC2-0CA1-11DF-B07B-459956D89593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeHelp\AIRInstallerRunner.exe
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCameraRawProfile6.0All\Install.db
    Updating media info for: {4438C826-1FD0-4D04-A70B-24FE1580AB21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeMiniBridge1-mul\Install.db
    Updating media info for: {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_CRT_x86_x64\Microsoft_VC80_CRT_x86_x64.msi
    Updating media info for: {50A16F0B-47DA-4583-B4FE-E026719A2024}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-en_US_x64\Install.db
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorJA_ExtraSettings3-mul\Install.db
    Updating media info for: {56540320-C921-1029-83D9-FE864D1FC1DF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeReviewPanel2-mul\Install.db
    Updating media info for: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCameraRaw6.0All-x64\Install.db
    Updating media info for: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_MFC_x86\Microsoft_VC90_MFC_x86.msi
    Updating media info for: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-Core_x64\Install.db
    Updating media info for: {69582206-7E5D-4476-A8F4-ECF90E9C8A69}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-en_US\Install.db
    Updating media info for: {6B485102-4593-43F6-BA45-F14D690B0C64}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeSuiteSharedConfiguration-mul\Install.db
    Updating media info for: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeLinguisticsAll\Install.db
    Updating media info for: {6D96660C-1444-410E-9A84-681C0AFB8937}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePDFSettings10-mul\AdobePDFSettings10-mul.msi
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeDeviceCentral3-all\Install.db
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorEU_ExtraSettings3-mul\Install.db
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeTypeSupport10-mul\Install.db
    Updating media info for: {73A4DC5E-226E-42BA-8ECA-2822592AC044}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeVideoProfilesCS3-mul\Install.db
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorCommonSetRGB3-mul\Install.db
    Updating media info for: {7A33510F-1580-42C2-877E-8C5502566292}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeAPE3_x64-mul\Install.db
    Updating media info for: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-Core\Install.db
    Updating media info for: {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeFontsRequired_x64-mul\Install.db
    Updating media info for: {8557397C-A42D-486F-97B3-A2CBC2372593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_ATL_x86_x64\Microsoft_VC90_ATL_x86_x64.msi
    Updating media info for: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-en_GB\Install.db
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCSXSExtensions2-mul\Install.db
    Updating media info for: {925D058B-564A-443A-B4B2-7E90C6432E55}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_ATL_x86_x64\Microsoft_VC80_ATL_x86_x64.msi
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeOutputModuleAll\Install.db
    Updating media info for: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_CRT_x86_x64\Microsoft_VC90_CRT_x86_x64.msi
    Updating media info for: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Updating media info for: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCMaps3_x64-mul\Install.db
    Updating media info for: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeTypeSupport10_x64-mul\Install.db
    Updating media info for: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC90_MFC_x86_x64\Microsoft_VC90_MFC_x86_x64.msi
    Updating media info for: {A47C8AE9-D51B-4A58-A051-396158FC3012}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePhotoshop12-en_GB_x64\Install.db
    Updating media info for: {AE9B837F-D135-42FC-BE03-33545B5DCBDC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeWinSoftLinguisticsPluginAll\Install.db
    Updating media info for: {B55FDCCB-8A45-4943-8D90-585C3490A032}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeWinSoftLinguisticsPluginAll_x64\Install.db
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorEU_Recommended3-mul\Install.db
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePDFL9.9-mul\Install.db
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeCMaps3-mul\Install.db
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorNA_ExtraSettings3-mul\Install.db
    Updating media info for: {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_MFC_x86_x64\Microsoft_VC80_MFC_x86_x64.msi
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeFontsRequired-mul\Install.db
    Updating media info for: {CFA46C39-C539-4BE9-9364-495003C714AD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\SwitchBoard2.0All\Install.db
    Updating media info for: {D1A19B02-817E-4296-A45B-07853FD74D57}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_MFC_x86\Microsoft_VC80_MFC_x86.msi
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorNA_Recommended3-mul\Install.db
    Updating media info for: {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorPhotoshop3-mul\Install.db
    Updating media info for: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_MFCLOC_x86\Microsoft_VC80_MFCLOC_x86.msi
    Updating media info for: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobePDFSettings10-ja_JP\AdobePDFSettings10-ja_JP.msi
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeFontsRecommended-mul\Install.db
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeExtensionManager5.0All\Install.db
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeColorJA_Recommended3-mul\Install.db
    Updating media info for: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeJRECS5-mul\Install.db
    Updating media info for: {E995AC53-954A-48D2-A861-613B8D42A9BE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeExtendScriptToolkit3.5.0-mul\Install.db
    Updating media info for: {F6FA54C9-3E8F-4416-905C-DA5398DF9640}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Photoshop CS5
      Path: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\AdobeAIR1.5.3-mul\AdobeAIRInstaller.exe
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,3.0.121.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    Setting property "INSTALLDIR" to: C:\Program Files\Adobe
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5
    Overwrite property "userASUPath" to: C:\Users\Ro\AppData\Local\Adobe\OOBE\PDApp\
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 is: false
    Action string for  {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 is: false
    Action string for  {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86  is none
    Value returned on lookup of payload: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86 is: false
    Action string for  {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86  is none
    Value returned on lookup of payload: {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86 is: false
    Action string for  {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86  is none
    Value returned on lookup of payload: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding is: false
    Action string for  {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding  is none
    Value returned on lookup of payload: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE is: false
    Action string for  {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE  is none
    Value returned on lookup of payload: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86 is: false
    Action string for  {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 is: false
    Action string for  {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86  is none
    Value returned on lookup of payload: {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: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 is: false
    Action string for  {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0  is none
    Value returned on lookup of payload: {6B485102-4593-43F6-BA45-F14D690B0C64} Suite Shared Configuration CS5 is: false
    Action string for  {6B485102-4593-43F6-BA45-F14D690B0C64} Suite Shared Configuration CS5  is none
    Value returned on lookup of payload: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26} Microsoft_VC90_CRT_x86_x64 is: false
    Action string for  {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26} Microsoft_VC90_CRT_x86_x64  is none
    Value returned on lookup of payload: {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp is: false
    Action string for  {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp  is none
    Value returned on lookup of payload: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 is: false
    Action string for  {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5  is none
    Value returned on lookup of payload: {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: {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: {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5 is: false
    Action string for  {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is: false
    Action string for  {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5  is none
    Value returned on lookup of payload: {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: {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: {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: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86 is: false
    Action string for  {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86  is none
    Value returned on lookup of payload: {925D058B-564A-443A-B4B2-7E90C6432E55} Microsoft_VC80_ATL_x86_x64 is: false
    Action string for  {925D058B-564A-443A-B4B2-7E90C6432E55} Microsoft_VC80_ATL_x86_x64  is none
    Value returned on lookup of payload: {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1} Microsoft_VC80_CRT_x86_x64 is: false
    Action string for  {4569AD91-47F4-4D9E-8FC9-717EC32D7AE1} Microsoft_VC80_CRT_x86_x64  is none
    Value returned on lookup of payload: {1E9FC118-651D-4934-97BE-E53CAE5C7D45} Microsoft_VC80_MFCLOC_x86_x64 is: false
    Action string for  {1E9FC118-651D-4934-97BE-E53CAE5C7D45} Microsoft_VC80_MFCLOC_x86_x64  is none
    Value returned on lookup of payload: {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3} Microsoft_VC80_MFC_x86_x64 is: false
    Action string for  {C8C1BAD5-54E6-4146-AD07-3A8AD36569C3} Microsoft_VC80_MFC_x86_x64  is none
    Value returned on lookup of payload: {8557397C-A42D-486F-97B3-A2CBC2372593} Microsoft_VC90_ATL_x86_x64 is: false
    Action string for  {8557397C-A42D-486F-97B3-A2CBC2372593} Microsoft_VC90_ATL_x86_x64  is none
    Value returned on lookup of payload: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB} Microsoft_VC90_MFC_x86_x64 is: false
    Action string for  {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB} Microsoft_VC90_MFC_x86_x64  is none
    Value returned on lookup of payload: {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR is: false
    Action string for  {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR  is none
    Value returned on lookup of payload: {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: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player is: false
    Action string for  {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player  is none
    Value returned on lookup of payload: {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5 is: false
    Action string for  {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5  is none
    Value returned on lookup of payload: {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: {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5 is: false
    Action string for  {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5  is none
    Value returned on lookup of payload: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5 is: false
    Action string for  {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5  is none
    Value returned on lookup of payload: {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 none
    Value returned on lookup of payload: {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is: false
    Action string for  {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB  is none
    Payload {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US is: false
    Action string for  {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US  is none
    Payload {1D809D80-28A4-11DF-A816-0024E8692489} DeviceCentral_DeviceCentral3LP-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {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: {7A33510F-1580-42C2-877E-8C5502566292} Adobe Player for Embedding x64 is: false
    Action string for  {7A33510F-1580-42C2-877E-8C5502566292} Adobe Player for Embedding x64  is none
    Value returned on lookup of payload: {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5 is: false
    Action string for  {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5  is none
    Value returned on lookup of payload: {B55FDCCB-8A45-4943-8D90-585C3490A032} Adobe WinSoft Linguistics Plugin CS5 x64 is: false
    Action string for  {B55FDCCB-8A45-4943-8D90-585C3490A032} Adobe WinSoft Linguistics Plugin CS5 x64  is none
    Value returned on lookup of payload: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15} AdobeCMaps x64 CS5 is: false
    Action string for  {98DD55B6-C58C-462F-B8A4-F0585BFEBB15} AdobeCMaps x64 CS5  is none
    Value returned on lookup of payload: {17C6080E-F475-4B49-A30C-EEB85673E999} AdobePDFL x64 CS5 is: false
    Action string for  {17C6080E-F475-4B49-A30C-EEB85673E999} AdobePDFL x64 CS5  is none
    Value returned on lookup of payload: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7} AdobeTypeSupport x64 CS5 is: false
    Action string for  {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7} AdobeTypeSupport x64 CS5  is none
    Value returned on lookup of payload: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit) is: false
    Action string for  {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit)  is none
    Value returned on lookup of payload: {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: {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64 is: false
    Action string for  {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64  is none
    Value returned on lookup of payload: {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: {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64 is: false
    Action string for  {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64  is none
    Value returned on lookup of payload: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5 is: false
    Action string for  {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5  is none
    Value returned on lookup of payload: {0669F23C-1B69-41B4-A3ED-4F54A5986D66} Adobe Linguistics CS5 x64 is: false
    Action string for  {0669F23C-1B69-41B4-A3ED-4F54A5986D66} Adobe Linguistics CS5 x64  is none
    Value returned on lookup of payload: {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.
    Value returned on lookup of payload: {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84} Adobe Photoshop CS5 Core_x64 is: false
    Action string for  {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84} Adobe Photoshop CS5 Core_x64  is install
    Value returned on lookup of payload: {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64 is: false
    Action string for  {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64  is none
    Payload {A47C8AE9-D51B-4A58-A051-396158FC3012} Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64 is: false
    Action string for  {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64  is none
    Payload {50A16F0B-47DA-4583-B4FE-E026719A2024} Adobe Photoshop CS5 English Language Pack_x64_AdobePhotoshop12-en_US_x64 is extension payload. Aligning its action according to parent.
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\Adobe
    [     908] Thu Nov 25 07:40:42 2010  WARN
    OS requirements not met for {667C8B6C-3EAF-4646-A8EC-D85CCC4D3D84}
    OS requirements not met for {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    [     908] Thu Nov 25 07:40:42 2010  INFO
    ::START TIMER:: [System check :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{02731921-5711-4E7A-A898-D6BCF0F2A1CD}] took 4.39322 miliseconds (0.00439322 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.96291 miliseconds (0.00196291 seconds)
    ::START TIMER:: [System check :{0D067D13-C3D7-4EA6-B346-740CD91FD547}]
    CustomHooksTester -> In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{0D067D13-C3D7-4EA6-B346-740CD91FD547}] took 2.44331 miliseconds (0.00244331 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 4.0161 miliseconds (0.0040161 seconds)
    ::START TIMER:: [System check :{11C0657F-2BD4-4CBC-87F3-9455DC91886E}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{11C0657F-2BD4-4CBC-87F3-9455DC91886E}] took 3.81088 miliseconds (0.00381088 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 3.67929 miliseconds (0.00367929 seconds)
    ::START TIMER:: [System check :{7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}]
    Font Installer: Fonts STI Custom Hook 1.6 Release
    Custom action return code: 0
    :: END TIMER :: [System check :{7F9C94CD-0BAC-4F8F-8990-6A5886F4D550}] took 3.81188 miliseconds (0.00381188 seconds)
    [     908] Thu Nov 25 07:40:44 2010  INFO
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    Calling the custom action code for pre-install for payload {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
    ::START TIMER:: [Payload Operation :{92D58719-BBC1-4CC3-A08B-56C9E884CC2C}]
    [     804] Thu Nov 25 07:40:44 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: InstallThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installing third party payload
    Installing payload
    Attempting to install package from:C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Command line arguments:
    1: 0 2: 1033 3: 1252
    1: 0 2: 1033 3: 1252
    === Logging started: 11/25/2010  7:40:44 ===
    Message type: 0, Argument: 1033
    Message type: 1, Argument: Microsoft_VC80_CRT_x86
    Action 7:40:44: INSTALL.
    Action start 7:40:44: INSTALL.
    Action 7:40:44: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action start 7:40:44: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action ended 7:40:44: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
    Action 7:40:44: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action start 7:40:44: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
    Action ended 7:40:44: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
    Action 7:40:44: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action start 7:40:44: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action ended 7:40:44: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
    Action 7:40:44: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action start 7:40:44: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
    Action ended 7:40:44: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
    Action 7:40:44: AppSearch. Searching for installed applications
    Action start 7:40:44: AppSearch.
    Action ended 7:40:44: AppSearch. Return value 0.
    Action 7:40:44: LaunchConditions. Evaluating launch conditions
    Action start 7:40:44: LaunchConditions.
    Action ended 7:40:44: LaunchConditions. Return value 0.
    Action 7:40:44: FindRelatedProducts. Searching for related applications
    Action start 7:40:44: FindRelatedProducts.
    Action ended 7:40:44: FindRelatedProducts. Return value 0.
    Action 7:40:44: ValidateProductID.
    Action start 7:40:44: ValidateProductID.
    Action ended 7:40:44: ValidateProductID. Return value 1.
    Action 7:40:44: CostInitialize. Computing space requirements
    Action start 7:40:44: CostInitialize.
    Action ended 7:40:44: CostInitialize. Return value 1.
    Action 7:40:44: FileCost. Computing space requirements
    Action start 7:40:44: FileCost.
    Action ended 7:40:44: FileCost. Return value 1.
    Action 7:40:44: IsolateComponents.
    Action start 7:40:44: IsolateComponents.
    Action ended 7:40:44: IsolateComponents. Return value 0.
    Action 7:40:44: CostFinalize. Computing space requirements
    Action start 7:40:44: CostFinalize.
    Error 1327.Invalid Drive: P:\
    Action ended 7:40:44: CostFinalize. Return value 3.
    Action ended 7:40:44: INSTALL. Return value 3.
    Property(S): DiskPrompt = [1]
    Property(S): UpgradeCode = {662366D8-8FF7-4EA3-92A8-C7FEA8AC8032}
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): OutOfDiskSpace = 0
    Property(S): CostingComplete = 0
    Property(S): ROOTDRIVE = C:\
    Property(S): ACTION = INSTALL
    Property(S): UILevel = 2
    Property(S): OriginalDatabase = C:\Users\Ro\Desktop\Adobe CS5\Photoshop\Adobe CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Property(S): DATABASE = C:\Windows\Installer\f2ff5.msi
    Property(S): Privileged = 1
    Property(S): MsiRunningElevated = 1
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiWin32AssemblySupport = 6.1.7600.16385
    Property(S): MsiNetAssemblySupport = 4.0.30319.1
    Property(S): Date = 11/25/2010
    Property(S): Time = 7:40:44
    Property(S): TTCSupport = 1
    Property(S): ColorBits = 32
    Property(S): TextInternalLeading = 3
    Property(S): TextHeight = 16
    Property(S): BorderSide = 1
    Property(S): BorderTop = 1
    Property(S): CaptionHeight = 22
    Property(S): ScreenY = 768
    Property(S): ScreenX = 1024
    Property(S): SystemLanguageID = 1033
    Property(S): ComputerName = RO-SYSTEMAX
    Property(S): UserLanguageID = 1033
    Property(S): UserSID = S-1-5-21-1496999340-3234442921-2977067504-1002
    Property(S): LogonUser = Ro
    Property(S): MsiTrueAdminUser = 1
    Property(S): AdminUser = 1
    Property(S): VirtualMemory = 22502
    Property(S): PhysicalMemory = 12279
    Property(S): Intel = 6
    Property(S): Msix64 = 6
    Property(S): MsiAMD64 = 6
    Property(S): ShellAdvtSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): GPTSupport = 1
    Property(S): VersionNT = 601
    Property(S): ProgramFilesFolder = C:\Program Files (x86)\
    Property(S): TARGETDIR = C:\
    Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
    Property(S): AppDataFolder = C:\Users\Ro\AppData\Roaming\
    Property(S): CommonAppDataFolder = C:\ProgramData\
    Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
    Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
    Property(S): DesktopFolder = C:\Users\Public\Desktop\
    Property(S): FavoritesFolder = C:\Users\Ro\Favorites\
    Property(S): FontsFolder = C:\Windows\Fonts\
    Property(S): LocalAppDataFolder = C:\Users\Ro\AppData\Local\
    Property(S): MyPicturesFolder = C:\Users\Ro\Pictures\
    Property(S): PersonalFolder = P:\Roger\
    Property(S): PrimaryVolumePath = C:\
    Property(S): ProgramFiles64Folder = C:\Program Files (x86)\
    Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): SendToFolder = C:\Users\Ro\AppData\Roaming\Microsoft\Windows\SendTo\
    Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
    Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
    Property(S): System16Folder = C:\
    Property(S): System64Folder = C:\Windows\SysWOW64\
    Property(S): SystemFolder = C:\Windows\SysWOW64\
    Property(S): TempFolder = C:\Users\Ro\AppData\Local\Temp\
    Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
    Property(S): USERPROFILE = C:\
    Property(S): WindowsFolder = C:\Windows\
    Property(S): WindowsVolume = C:\
    Property(S): WinSxsDirectory.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\
    Property(S): payload_ul.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d08d7da0442 a985d\
    Property(S): payload.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd\
    Property(S): WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\
    Property(S): SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
    Property(S): WinSxsManifests.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Manifests\
    Property(S): WinSxsPolicies.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\
    Property(S): policydir.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir_ul.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\
    Property(S): policydir.8.0.50727.89.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.94.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.4029.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.100.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.93.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.96.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.89.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.89_x-ww_0de46bd0\
    Property(S): policydir.8.0.50727.95.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.103.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.97.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.4027.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.94.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.94_x-ww_0de56c0a\
    Property(S): payload.8.0.50727.93.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.93_x-ww_0de56c09\
    Property(S): policydir.8.0.50727.98.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.99.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.95.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.95_x-ww_0de56c0b\
    Property(S): payload.8.0.50727.96.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.96_x-ww_0de56c0c\
    Property(S): policydir.8.0.50727.3044.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.193.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.97.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.97_x-ww_0de56c0d\
    Property(S): policydir.8.0.50727.101.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.98.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.98_x-ww_0de56c0e\
    Property(S): payload.8.0.50727.99.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.99_x-ww_0de56c0f\
    Property(S): policydir.8.0.50727.104.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): policydir.8.0.50727.3069.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.100.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.100_x-ww_6818287e\
    Property(S): policydir.8.0.50727.3051.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.101.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.101_x-ww_6818287f\
    Property(S): payload.8.0.50727.103.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.103_x-ww_68182881\
    Property(S): policydir.8.0.50727.238.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.104.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.104_x-ww_68182882\
    Property(S): payload.8.0.50727.193.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.193_x-ww_68212ab8\
    Property(S): policydir.8.0.50727.4028.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.238.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.238_x-ww_689938c4\
    Property(S): policydir.8.0.50727.1833.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.3044.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.3044_x-ww_b80ea88c\
    Property(S): policydir.8.0.50727.4053.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.3051.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.3051_x-ww_b80fa8c8\
    Property(S): policydir.8.0.50727.4045.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.3069.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.3069_x-ww_b810a90f\
    Property(S): payload.8.0.50727.1833.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1833_x-ww_5ef082d6\
    Property(S): payload.8.0.50727.4027.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4027_x-ww_e69378d0\
    Property(S): policydir.8.0.50727.4052.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_4428b63a\
    Property(S): payload.8.0.50727.4028.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4028_x-ww_e69378d1\
    Property(S): payload.8.0.50727.4029.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4029_x-ww_e69378d2\
    Property(S): payload.8.0.50727.4045.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4045_x-ww_e695794c\
    Property(S): payload.8.0.50727.4052.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4052_x-ww_e6967988\
    Property(S): payload.8.0.50727.4053.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989\
    Property(S): ALLUSERS = 1
    Property(S): WinSxsDirectory.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\
    Property(S): payload_ul.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4053_none_ 516e2e610f48bda6\
    Property(S): WinSxsPolicies.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\
    Property(S): policydir.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\
    Property(S): SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\SysWOW64\
    Property(S): WinSxsManifests.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Manifests\
    Property(S): payload.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_51 e427d4\
    Property(S): policydir.8.0.50727.103.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.96.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir_ul.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_ 2a9a3690\
    Property(S): policydir.8.0.50727.94.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.89.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.95.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.100.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.93.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.94.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.94_x-ww_51 e92911\
    Property(S): policydir.8.0.50727.193.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.98.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.89.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.89_x-ww_51 e828d7\
    Property(S): policydir.8.0.50727.104.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.93.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.93_x-ww_51 e92910\
    Property(S): policydir.8.0.50727.99.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.101.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.97.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): policydir.8.0.50727.4028.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.95.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.95_x-ww_51 e92912\
    Property(S): policydir.8.0.50727.3044.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.96.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.96_x-ww_51 e92913\
    Property(S): policydir.8.0.50727.238.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.97.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.97_x-ww_51 e92914\
    Property(S): policydir.8.0.50727.4052.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.98.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.98_x-ww_51 e92915\
    Property(S): policydir.8.0.50727.1833.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.99.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.99_x-ww_51 e92916\
    Property(S): policydir.8.0.50727.3051.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\Windows\winsxs\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c247 73\
    Property(S): payload.8.0.50727.100.63E949F6_03BC_5C40_FF1

    I discovered the cause of this problem. I had pointed my "My Documents" folder to a NAS drive that I had rather than my C drive. Apparently Photoshop was dependant on it being on the C dirve. When I  repointed this back to my C drive CS5 installed properly.

  • Install JRE error

    i get this error msg when i try to install OAS 10g:
    the JRE was not found at C:\Temp\OraInstall..... install JRE 1.3.1 and try again,
    i did all of this and i also read dozens of threads and still can't figure it out plzzzzzzzz help

    which is your operating system and what about 10g: R1 or R2?
    have you followed all the pre-installation check and do your system satisfy all the pre-installation requirements?
    regards,
    fabrizio

  • Error Code 8024200D while installing update KB3000850 for Windows 8.1

    Error Code 8024200D while installing update KB3000850 for Windows 8.1
    I have been prompted for the last 10 days to install the important update KB3000850 in my laptop, but the installation fails every time.
    Two days ago, on March the 12<sup>th</sup>, I installed 31 updates without any problem. What is wrong with this particular update?
    You will find below my dialogue with Microsoft Support Engineer, Mr Niranjan Manjhi, who referred me to you:
    Hi Michelle,
    Thank you for posting your query in Microsoft Community.
    I understand that you are unable to install the a specific update KB3000850. I will be happy to assist you with your query. Let me ask you;
    Is your computer connected to domain?
    Which security software is installed in the      computer?
    Do you remember making any specific change in the      computer prior to the issue?
    This November update rollup also includes all previous updates since the previous image update in April 2014 and this includes performance and reliability
    improvements.
    Cause:
    This issue occurs because a process keeps a file in the component store open. Therefore, the file cannot be deleted or overwritten. Let's try the methods below and
    check the status.
    Method 1: Depending on the architecture of your
    Windows 8.1 operating system, I would suggest you to install the following package first and then try installing the KB3000850.
    All supported x86-based versions of Windows 8.1: [link] Download the package now.
    All supported x64-based versions of Windows 8.1:
    [link] Download the package now. 
    Restart is required.
    Method 2:
    If the issue still persists, run the Windows Update Troubleshooter and check the status.
    Click to run
    [link] Windows Update Troubleshooter
    Also refer to:
    [link] Troubleshoot problems with installing updates
    Hope this information is helpful. Please feel free to reply in case you face any other issues with Windows in future.
    Regards,
    Niranjan Manjhi
    Dear Niranjan,
    Thank you for your answer.
    To answer your questions:
    1) Yes, my laptop is connected to the domain,
    2) My security software is McAfee Total Protection, the same I use for my PC running Windows 7 XP,
    3) I did not make any specific change to the laptop. It is true though that I run regularly McAfee´s QuickClean.
    In your answer, you suggested 2 methods for resolving the problem.
    I chose to apply first the second one, i.e. I ran once again the Windows Update Troubleshooter, which revealed again the following status:
    Potential Windows Update Database error detected Ox800F08F: Not fixed
    Windows Update components must be repaired: Fixed
    And a last information: Yesterday, McAfee´s Vulnerability Scanner was automatically activated, showing as "critical" the update in question ("important" according to Windows)!
    As for applying the first method you suggested, I will need the services of a professional, someone more IT literate than myself.
    Michelle
    Hi Michelle,
    Thank you for keeping us updated on the issue.
    Since the computer is connected to domain, I would request you to post your query in the TechNet forums as your question is beyond the scope of what
    is typically answered in this consumer forum and would be better suited for the IT Pro audience on TechNet.
    Please post your question in the link TechNet Forums.
    Regards,
    Niranjan Manjhi

    Hi there @Achintya-only
    Welcome to the HP Support Forums! It is a great place to find the help you need, both from other users, HP experts and other support personnel.
    I see that you are getting an error code, when you try to install Windows 8.1 from USB or DVD. I am happy to assist.
    Just to clarify, you are using a standalone Windows installation disk, you are not using a factory recovery image. Is that correct?
    Have you run the hardware diagnostics on your notebook? HP Notebook PCs - Testing for Hardware Failures (Windows 8)
    What operating system was on the system before, and have you made a set of recovery media, for your original factory installation?
    Please let me know what you find.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

Maybe you are looking for

  • How to Connect My Printer to The Network

    My printer is LaserJet M1212nf.  According to the brief introduction I should connect the printer to the network first in order to enable its e-printing function.  I'm working at home.  I don't share information with other computers.  Does "network"

  • Filename of Itunes library

    Since my earlier question went unanswered, can someone give me the name of the file where Itunes music files are physically located?

  • Age of Empire 1 and 2 don't run on P100-350

    I can't run Age Of Empire I or II on a P100-350 under Win XP. AOE I runs only in 640x480. AOE II does not run at all. I get a message about directX not loaded. Anyone already experienced that problem ?

  • AHT Error message - 4MOT/4/40000003: HDD - 1248

    Hi folks........ i'm looking for some help on a AHT error message? The error message is 4MOT /4/40000003: HDD - 1248 Has anyone any ideas what this is? Thanks Paul

  • Requirement for PP feilds

    HI Experts, I need to extract the data of 'Time Goods issued to Production ' and ''Time the Goods is Produced ' . For this I found the following feilds - IADD - Actual Input (Date) - IEAVD - Actual Finish Time Operation (Date) - IEDD - Actual Finish