Some code error-try catch problem

import java.io.*;
import java.sql.*;
public class login1 extends HttpServlet
public void doGet(HttpServletRequest req,HttpServletResponse res) throws IOException,ServletException
PrintWriter pw = res.getWriter();
res.setContentType("text/html");
String uid=(String)req.getParameter("formtext1");
String pass=(String)req.getParameter("formtext2");
Connection c;
Statement s;
ResultSet rs;
ResultSetMetaData meta;
try
Class.forName("org.gjt.mm.mysql.Driver");
c = DriverManager.getConnection("jdbc:mysql://localhost:3306/projectmanager?username=\"root\"&password=\"\"", "", "");
s = c.createStatement();
s.execute("select * from login order by userid ");
rs = s.getResultSet();
while(rs.next())
if(uid.equals(rs.getString(1)) && pass.equals(rs.getString(2)))
     HttpSession ses=req.getSession(true);
ses.putValue("a",uid);
res.sendRedirect("welcome");
catch(Exception e){
{pw.println(e);}
     res.sendRedirect("login");}
this page on getting exception is not directing to login again...could any1 help me out plzz.....

What is it doing otherwise? Try putting a "return;" after the sendRedirect(). Also for future posts, put your code inside the "code" tags so its easier to read.

Similar Messages

  • Compile time errors for large code in try-catch blocks

    Hi, Has anyone ever faced this problem of a compile time error, where the Java compiler returns with the following error that Code is too large for try block.
    I have about 5000 thousand lines in my try-catch block and am facing this problem. Please suggest possible solutions

    1) Are you sure that your try/catch blocks contain 5 million lines?! I seriously don't believe this.Sounds like generated code. The generator needs to be a bit cleverer. In particular, it seems to be generating repeated blocks of code that ought to be stuffed into methods somewhere.

  • Return statement and Try Catch problem

    Hi!!
    I've got the next code:
    public ResultSet DBSelectTeam(String query) {
    try {
    Statement s = con.createStatement();
    ResultSet rs = s.executeQuery(query);
    return rs;
    } catch (Exception err) {
    JOptionPane.showMessageDialog(null, "ERROR: " + err);
    But I need a return statement in the catch-block, but I don't know what's the best option.
    Help...
    Many thanks.

    The error message is: "missing return statement", Yes, I know.
    You have to either return from the catch statement, or throw from the catch statement, or return or throw after the catch statement.
    The only ways your method is allowed to complete is by returning a value or throwing an exception. As it stands, if an exception is thrown, you catch it, but then you don't throw anything and you don't return a value.
    So, like I said: What would you return from within or after catch? There's no good value to return. The only remotely reasonable choice would be null, but that sucks because now the caller has to explicitly check for it.
    So we conclude that catch shouldn't return anything. So catch must throw something. But what? You could wrap the SQLE in your own exception, but since the caller is dealing with JDBC constructs anyway (he has to handle the RS and close it and the Statement), there's no point in abstracting JDBC away. Plus he has to deal with SQLE anyway in his use of the RS and Statement. So you might as well just throw SQLE.
    So since you're going to just throw SQLE anyway, just get rid of the try/catch altogether and declare your method throws SQLException

  • Try  Catch problem CS6

    All my try catch scripts don't work on CS6
    $.strict = false;
    function myGetScriptPath() {
    try{
    return app.activeScript;
    catch(myError){
    return File(myError.fileName);
    myGetScriptPath()
    Can anyone tell me the problem?
    Thanks
    Trevor

    Thanks for trying Pickory,
    I have Windows 7, with both indesign CS5 and creative cloud CS6 installed
    After experimenting I found that the script works fine on the machine with just CS5 on it.
    But on the one that has both doesn't work when called from either version of the ESTK but does from either version of indesign.
    When I try run the script from the CS5 ESTK It automatically opens and runs from the CS6 ESTK.
    I am not keen on uninstalling the CS5 ESTK as I don't know how long I'll keep creative cloud.
    Bellow is a alternative try catch script because the above one will not invoke an error if run from indesign so it won't call the catch.
    cs = app.activeDocument.characterStyles.item("myCharacterStyleName");
    try {alert ("Try $.strict = " +$.strict); myCharacterStyle.name}
    catch (myError) { alert ("Catch $.strict = " +$.strict + "\r" + myError)}
    I'm quite desperate for an answer.

  • Plugin and try/catch problem

    I have a plug-in that was working perfectly until I added an FileOutputStream and its corresponding try/catch block. Now when I try to run my plugin, the popup menu come up corrctly but when I click to run my code it tells me the operation is not available. If I delete those three line it works fine again.
    Instead or try/catch I could do run() throws XYZException, but that gives an error. Any ideas how I can get this fixed? Thanks

    turns out that was not really what was causing the error. I was using the iText library, and I had added it to the classpath of the plugin but I didnt add it to the runtime classpath, so my 'new' eclipse windows was not working properly. Thanks anyways

  • A try catch problem....

    public class trycatch{
    public static void main(String[] adsf){
    int i;
    try{i = 5;}
    catch(Exception e){}
    System.out.println("hello"+i);
    }at compile time, the compiler says i might not have been initialised, but why?
    I have done it in try catch block.

    do you people have any better idea rather than put
    all the codes in one try catch block?Yes.
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.InputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.FileNotFoundException;
    public class Test{
           public static void main(String[] param){
                  if(param.length!=4)
                  System.out.println("please provide 4 attributes: protocol, host, port, and file");
                  URL resource = null;
                  try{resource = new URL(param[0], param[1], Integer.parseInt(param[2]), param[3]);}
                  catch(MalformedURLException murle){System.out.println("an murle occurs");return;}
                  InputStream openResource = null;
                  try{openResource = resource.openStream();}
                  catch(IOException ioe){System.out.println("an ioe occurs");return;}
                  FileOutputStream toFile = null;
                  try{toFile = new FileOutputStream(param[3]);}
                  catch(FileNotFoundException fnfe){System.out.println("an fnfe occurs");return;}
                  try{
                  for(int i = openResource.read(); i!=-1; i = openResource.read())
                  toFile.write(i);
                  catch(IOException ioe){System.out.println("an ioe occurs");}
    }Notice the initialization. That will now at least compile. And before you get your knickers in a knot the return statements are there for terminiating execution of the method (in this case program) when an error occurs.

  • Try catch problem in a while loop

    I have computerGuess set to -1 and that starts the while loop.
    but I need to catch exceptions that the user doesnt enter a string or anything other than a number between 1 and 1000.
    but computerGuess is an int so that the while loop will start and I wanted to reset computerGuess from the user input using nextInt().
    The problem is if I want to catch exceptions I have to take a string and parse it.
    import java.util.Scanner;
    public class Game {
         //initiate variables
         String computerStart = "yes";
         String correct = "correct";
         String playerStart = "no";
         int computerGuess = 500;
    public void Start()
         //setup scanner
         Scanner input = new Scanner(System.in);
         int number = (int)(Math.random()*1001);
         System.out.println(welcome());
         String firstAnswer = input.nextLine();
         if(firstAnswer.equalsIgnoreCase(computerStart)== true)
              System.out.println(computerGuess());
              //while (userAnswer.equalsIgnoreCase(correct) == false){
                   System.out.println();
         if(firstAnswer.equalsIgnoreCase(playerStart) == true)
              long startTime = System.currentTimeMillis();
              int currentGuess = -1;
              while (currentGuess != number){
              System.out.println(playerGuess());
              String guess = input.next();
              //currentGuess = Integer.parseInt(guess);
              if (currentGuess < number)
                   System.out.println("too low");
              if (currentGuess > number)
                   System.out.println("too high");
              if (currentGuess == number)
                   long endTime = System.currentTimeMillis();
                   System.out.println("Well done, the number is " + number);
              int i = -1;
              try {
                i = Integer.parseInt(guess);
                   } catch (NumberFormatException nfe) {
                        //System.out.println("Incorrect input, please try again.");
              if ( i < 0 || i > 1000 ) {
                   System.out.println("Incorrect input, please try again.");
         private String computerGuess()
               String comGuess = ("The computer will guess your number.\n" +
                        "Please enter \"too high\", \"too low\" or \"correct\" accordingly.");
               return comGuess;
         private String welcome()
              String gameWelcome = "Welcome to the guessing game \n" +
                                        "The objective is to guess a number between 1 and 1000.\n" +
                                        "You can guess the computer's number or it can guess your's.\n" +
                                        "You may enter \"quit\" at any time to exit.\n" +
                                        "Would you like the computer to do the guessing?";
              return gameWelcome;
         private String playerGuess()
              String playerWillGuess = "Guess a number between 1 and 1000.";
              return playerWillGuess;
    }The catch works , but because computerGuess is int -1 so that the while loop will run, I cannot use the input to change computerGuess because it is a string.

    the i was a mistake. and i commented on the other code, because it wasnt working at that moment. I need help understanding the try catch method.
    I want to catch any input that isn't an integer , and I would also like to catch any input that isn't a string at other parts of my program.

  • Try catch problem

    Here's my code:
    import javax.swing.*;
    import java.io.*;
    public class Customer
         try
              public RandomAccessFile file = new RandomAccessFile("customer.txt", "rw");
         catch(FileNotFoundException fnfe)
         public static void readCustomer(String telp)
         public static void writeCustomer(String telp, String name, String add1, String add2)
    and here's the error msg:
    C:\TEMP\Tar\TestOrder\Customer.java:7: illegal start of type
         try
    ^
    C:\TEMP\Tar\TestOrder\Customer.java:20: <identifier> expected
    ^
    2 errors
    Tool completed with exit code 1
    Can anyone pls tell what i did wrong? btw, i used TextPad to compile it
    Thanks
    Daffy

    hi,
    try and catch should be in a method.
    try this
    public class Customer
    public RandomAccessFile {
         try
    file = new RandomAccessFile("customer.txt", "rw");
         catch(FileNotFoundException fnfe)

  • Some code error, don't know how to fix...

    my xml is here:
    http://homework.cbsd.googlepages.com/podcast.xml
    and i need help with these errors:
    Sorry
    This feed does not validate.
    guid values must not be duplicated within a feed: E3E98228-E7F2-99DF-392B5305E37F61F1 [help]
    <guid isPermaLink="false">E3E98228-E7F2-99DF-392B5305E37F61F1</guid> ^
    In addition, this feed has an issue that may cause problems for some users. We recommend fixing this issue.
    Feeds should not be served with the "application/octet-stream" media type [help]
    Source: http://homework.cbsd.googlepages.com/podcast.xml

    GUID stands for Globally Unique IDentifier. It's something used to keep track of items say in a database.
    Each of your episodes are contained in an <item> tag in your feed's XML. Each episode should have a <GUID> which is unique to that particular episode. The most common thing to do is just copy the link to that episodes enclosure file into a <guid> tag.
    For example:
    <enclosure url="http://example.com/podcasts/everything/AllAboutEverythingEpisode2.mp3" length="5650889" type="audio/mpeg" />
    <guid>http://example.com/podcasts/everything/AllAboutEverythingEpisode2.mp3</guid>
    Make sense?
    Erik

  • Error when using try catch inside oledb command to run stored procedure

    Hi,
    i'm using the below command to run some jobs  using OLEDB Command
    exec sp_start_job @job_name =?
    and it runs successfully
    when i put this code inside try catch block as below , it generates error and don't accept it
    begin try
    exec sp_start_job @job_name =?
    end try
    begin catch
    end catch
    the error message is "Syntax error, PErmission vaiolation or other nonspecific error"
    do you know is there any problem using TRY catch insdie OLEDB command ?
    Thanks ,
    Ahmed Salah

    Hi Ahmed,
    According to your description, if an error raised that fails the package, then you want the package to continue execute.
    To achieve this requirement, we can use Integration Services (SSIS) Event Handlers that we can create custom event handlers for an OnError event when an error occurs to continue processing rest of the package. For more details, please refer
    to the following blog:
    http://visakhm.blogspot.in/2013/03/error-handling-in-ssis-loops.html
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Update: Photoshop CC Install failed. Code: "error U44M1P7"

    Photoshop CC Install failed. Code: "error U44M1P7"
    Another problem here. Everything was working until I started updating. Plus now certain features are not available in PSCC. For instance the "save image for web" is disabled. Additionally, PS will not open an .png file. Here we go again. I am still trying to solve an open issue with DW crashing. What is going on back a Adobe. Come on Adobe people, please quit guessing and wasting our time with answers that take hours to complete and don't work. Please reply with a real answer.
    I just can't believe you suggest uninstalling, run cleaner tool and reinstall everything. That's a day or two of work lost. Besides, many people did just that with no resolution. It makes me thing that the people a Adobe don't know the answer - so just through out a generic answer.
    Please forward me an email to forwarg error logs.... Time is a wasting....
    A list of what did'nt work:
    http://forums.adobe.com/message/5286437#5286437
    http://forums.adobe.com/message/5981598
    http://forums.adobe.com/message/6003161#6003161
    http://helpx.adobe.com/photoshop/kb/photoshop-cs6-updates-dont-install.html
    http://acrobatninja.blogspot.com/2013/07/fixing-csxs-infrastructure-update.html
    Tried everything. Renaming, reinstalling....
    WIndows 8 version 6.2 (build 9200)
    64-bit Operating System x64-based processor.
    4th generation Intel® Core™ i7-4700MQ Processor
    16GB DDR3 System Memory (2 Dimm)
    NVIDIA GeForce GT 740M Graphics with 2048MB of dedicated video
    1TB 5400 rpm Hard Drive
    Adobe Photoshop Version: 14.1.1 (14.1.1 20130910.r.414 2013/09/10:23:00:00) x64
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:12, Stepping:3 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2394 MHz
    Built-in memory: 16159 MB
    Free memory: 11222 MB
    Memory available to Photoshop: 14472 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    Display: 1
    Display Bounds: top=0, left=0, bottom=768, right=1366
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    No GPU information available
    Serial number: 90970010899826454365
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\David\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 904.8G, 489.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/07/14-12:09:50   79.543790   79.543790
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1786  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/07/14-12:09:50   79.543790   79.543790
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/07/14-12:09:50   79.543790   79.543790
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/07/14-12:09:50   79.543790   79.543790
       BIBUtils.dll   BIBUtils 2013/07/14-12:09:50   79.543790   79.543790
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30929   2.1.6.30929
       CITThreading.dll   Adobe CITThreading   2.1.6.30929   2.1.6.30929
       CoolType.dll   CoolType 2013/07/14-12:09:50   79.543790   79.543790
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1785  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 2013/06/11-12:08:08   79.542390   79.542390
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       Camera Raw 8.3
       Camera Raw Filter 8.3
    Optional and third party plug-ins:
       CUR (Windows Cursor) NO VERSION
       CUR (Windows Cursor) NO VERSION
       ICO (Windows Icon) NO VERSION
       ICO (Windows Icon) NO VERSION
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE
    ERRORS in log file.
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | START - Installer Session
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | RIBS version: 7.0.0.108
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Win OS version: 6.2.0.0 64 bit Type: 1
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | ::START TIMER:: [Total Timer]
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | CHECK: Single instance running
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | CHECK : Credentials
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Load Deployment File
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | deploymentFile option not given
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | CHECK : Another Native OS installer already running
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Create Required Folders
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Assuming install mode
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Looking up install source path
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Sync Media DB ...
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | ::START TIMER:: [Sync Media DB]
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Pre check media db sync
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | End of Pre check media db sync. Exit code: 0
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | :: END TIMER :: [Sync Media DB] took 44871.6 milliseconds (44.8716 seconds) DTR = 11.4103 KBPS (0.0111429 MBPS)
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ready to initialize session to start with ...
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | ::START TIMER:: [CreatePayloadSession]
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updated source path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {03FEDC54-2B83-4273-8E61-F015AED1FF8A}
    02/12/14 10:08:13:086 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-zh_TW-111213042019\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {06385F1A-686B-4F9A-A288-B14DA88CD362}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-es_ES_x64-111213044929\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {0A140625-D36E-44F9-BB74-81F77F2330B4}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-pl_PL_x64-111213050320\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {0DF6A9DB-3952-4043-A568-BEB8945E4BBF}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_IL-111213051823\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {0E9F14B7-4D10-4032-BA87-C40ACD392D44}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_GB-111213041200\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {141333F9-FC47-4A39-B8FE-D275392F6789}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_CA_x64-111213044353\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {17B0D899-8128-4B48-AF89-7225FC4190EF}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-da_DK-111213043119\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {1B1D7D01-D57A-4178-94E2-85C72F9F62A4}
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-tr_TR-111213050441\Install.db
    02/12/14 10:08:13:087 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {1EA79689-EF55-4C4D-8D1F-277BE6FAF7D5}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ru_RU_x64-111213050849\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {2769566D-3013-4A92-B734-41CEAC204D3D}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-pt_BR-111213042833\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {2938A8F6-FEFF-4FC0-BDB1-BAFC93206A13}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-nb_NO-111213045627\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {2B8BEA0E-6822-478A-B6FB-B7728728B63B}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ja_JP_x64-111213041618\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {3639A0A1-715C-41C9-8C08-3A2F273C1BDB}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-hu_HU-111213051254\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {39B0B410-3751-47CA-8A38-FF9C063AC592}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-de_DE_x64-111213042709\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {3BB385AE-949B-41C2-AC74-0E8C4BAF6C3D}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-uk_UA-111213051011\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {3E6FC41B-21B9-43B0-9A06-1566FBCAB39C}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_MA_x64-111213052231\Install.db
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {41C7F331-50D0-4F5A-BCEF-C9598DE72962}
    02/12/14 10:08:13:088 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-Core-111213052454\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {457FFF62-2725-47EB-941E-8F1648B89E5F}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-hu_HU_x64-111213051417\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {495275FD-CD40-49CD-95DC-17584DCB2951}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_FR_x64-111213044106\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {4956BE59-3D19-42DF-BEA9-3D7C9AE30770}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-sv_SE_x64-111213045215\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {5CFC342C-63E5-490E-8624-434F996022DF}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-de_DE-111213042545\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {60A50B47-39EC-4EAF-9B5A-EDC61C04171B}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-nb_NO_x64-111213045750\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {6717CE34-EE50-4BCA-A333-76F86716B337}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_FR-111213043940\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {7267D396-7C67-42E7-A111-5A5D93733BEA}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fi_FI_x64-111213045502\Install.db
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {7871F75D-70BC-436E-91FE-F7AA962C6099}
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:089 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-it_IT-111213043406\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {78D1FDA4-5455-4328-A63E-7E124FBC999A}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-uk_UA_x64-111213051133\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {7CB740EA-D43D-4A85-AFCB-68C5044077C8}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_AE_x64-111213051701\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {7F00EFCF-A196-46CE-9D57-46BD22ED5372}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_AE-111213051538\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {868DDE13-8E83-48BF-8D47-8CB67DFD1563}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-da_DK_x64-111213043244\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {8850A634-F3F5-466A-B40F-3725EAED3B2D}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-nl_NL-111213043654\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {94641229-A06A-4D09-AFAB-8EA00426EC9D}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ru_RU-111213050726\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {95A91199-F7A7-4F6F-A32A-E5F18C6C8C29}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fi_FI-111213045338\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {978BA6B7-8D8E-48B1-95CD-1539D596019F}
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_GB_x64-111213041331\Install.db
    02/12/14 10:08:13:090 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {9D0915F3-B498-4E0E-8E34-0B478C28CEE2}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-Support-111213054118\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {9E78FE46-A73E-4319-9326-4C0AD08FF1C0}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ko_KR-111213041738\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {A8E776FA-7678-4C30-9911-81BD86E84EA9}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-it_IT_x64-111213043532\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {B04260F0-494D-4A51-95B9-688297494D69}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-zh_TW_x64-111213042141\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {C82D0FE1-B79B-44DD-8D32-8BCD93199A9B}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-zh_CN_x64-111213042424\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {CC1CA059-56F9-4929-A3D5-9515CBDE3677}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-tr_TR_x64-111213050605\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {CD386FA9-9BEC-4274-B148-BBD97B2DD2AA}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-es_MX-111213044518\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {DF338053-7DF2-478A-B21A-FE7A38A54471}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-Core_x64-111213053247\Install.db
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {DF761250-54A2-4AC8-A61C-7879E320BC60}
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:091 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-zh_CN-111213042303\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {E01E47B3-E99D-479A-A8C3-F2FBC939E7B5}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ja_JP-111213041456\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {E4338613-16EB-4A96-ACA5-8D8B3A39B03A}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_MA-111213052108\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {EAF2814F-68AF-4493-9DE7-9441C90CF4EC}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-pt_BR_x64-111213042957\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {EBE64FE5-E3F1-4C52-9117-8D4534C8F511}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-fr_CA-111213044230\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {EC10B2E6-EA07-4C4A-B3A9-2F3E5B12A398}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-cs_CZ_x64-111213050035\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F0A1C79F-5E84-4622-A1B4-E9D30CDF68E8}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-pl_PL-111213050157\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F0FCB457-85AB-42A5-A9D0-36E16DE670C3}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-cs_CZ-111213045913\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F3FC1C53-227E-4C58-A2D2-01B7F1EB9244}
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-nl_NL_x64-111213043818\Install.db
    02/12/14 10:08:13:092 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F70E7F96-7605-40A5-B211-DC3B159D68BB}
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-ko_KR_x64-111213041859\Install.db
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F808F849-4140-4EBC-B8D3-0CE0585F3962}
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-en_IL_x64-111213051946\Install.db
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F88A6F4C-1282-4BD0-B52F-FB564AA05D6A}
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-es_MX_x64-111213044641\Install.db
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F91A91DB-DB5E-4353-9E15-0435E38C045C}
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-sv_SE-111213045051\Install.db
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Updating media info for: {F9AA6442-69D9-4879-B0BC-A25A26CC8CD9}
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Ignoring original data since install source is local
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 |   Type: 0, Volume Order: 1, Media Name: Photoshop CC
      Path: C:\Users\David\AppData\Local\Temp\Adobe\AAMUpdater\AdobePhotoshopCCSupport-14.0\14.2\setu p\payloads\AdobePhotoshop14-es_ES-111213044804\Install.db
    02/12/14 10:08:13:093 | [INFO] |  | OOBE | DE |  |  |  | 10132 | --------------------  END  - Updating Media Sources -  END  --------------------
    02/12/14 10:08:13:125 | [INFO] |  | OOBE | DE |  |  |  | 10132 | Supported RIBS version range: [0.0.0.0,7.0.0.108]
    02/12/14 10:08:13:125 | [INFO] |  | OOBE | DE |  |  |  | 10132 | ----------------- CreatePayloadSession: machine is x64 ---------------
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | ______ Verify Dependency Subscribers ______
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Chinese (traditional) Language Pack_14.2_AdobePhotoshop14-zh_TW 14.2.0.0 {03FEDC54-2B83-4273-8E61-F015AED1FF8A} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Chinese (traditional) Language Pack_AdobePhotoshop14-zh_TW
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Spanish Language Pack_x64_14.2_AdobePhotoshop14-es_ES_x64 14.2.0.0 {06385F1A-686B-4F9A-A288-B14DA88CD362} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Spanish Language Pack_x64_AdobePhotoshop14-es_ES_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Polish Language Pack_x64_14.2_AdobePhotoshop14-pl_PL_x64 14.2.0.0 {0A140625-D36E-44F9-BB74-81F77F2330B4} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Polish Language Pack_x64_AdobePhotoshop14-pl_PL_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC IL English Language Pack_14.2_AdobePhotoshop14-en_IL 14.2.0.0 {0DF6A9DB-3952-4043-A568-BEB8945E4BBF} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC IL English Language Pack_AdobePhotoshop14-en_IL
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:632 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC International English Language Pack_14.2_AdobePhotoshop14-en_GB 14.2.0.0 {0E9F14B7-4D10-4032-BA87-C40ACD392D44} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC International English Language Pack_AdobePhotoshop14-en_GB
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Canadian French Language Pack_x64_14.2_AdobePhotoshop14-fr_CA_x64 14.2.0.0 {141333F9-FC47-4A39-B8FE-D275392F6789} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Canadian French Language Pack_x64_AdobePhotoshop14-fr_CA_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Danish Language Pack_14.2_AdobePhotoshop14-da_DK 14.2.0.0 {17B0D899-8128-4B48-AF89-7225FC4190EF} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Danish Language Pack_AdobePhotoshop14-da_DK
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Turkish Language Pack_14.2_AdobePhotoshop14-tr_TR 14.2.0.0 {1B1D7D01-D57A-4178-94E2-85C72F9F62A4} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Turkish Language Pack_AdobePhotoshop14-tr_TR
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Russian Language Pack_x64_14.2_AdobePhotoshop14-ru_RU_x64 14.2.0.0 {1EA79689-EF55-4C4D-8D1F-277BE6FAF7D5} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Russian Language Pack_x64_AdobePhotoshop14-ru_RU_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Brazilian Portugese Language Pack_14.2_AdobePhotoshop14-pt_BR 14.2.0.0 {2769566D-3013-4A92-B734-41CEAC204D3D} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Brazilian Portugese Language Pack_AdobePhotoshop14-pt_BR
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Norwegian Language Pack_14.2_AdobePhotoshop14-nb_NO 14.2.0.0 {2938A8F6-FEFF-4FC0-BDB1-BAFC93206A13} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Norwegian Language Pack_AdobePhotoshop14-nb_NO
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Japanese Language Pack_x64_14.2_AdobePhotoshop14-ja_JP_x64 14.2.0.0 {2B8BEA0E-6822-478A-B6FB-B7728728B63B} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Japanese Language Pack_x64_AdobePhotoshop14-ja_JP_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Hungarian Language Pack_14.2_AdobePhotoshop14-hu_HU 14.2.0.0 {3639A0A1-715C-41C9-8C08-3A2F273C1BDB} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Hungarian Language Pack_AdobePhotoshop14-hu_HU
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC German Language Pack_x64_14.2_AdobePhotoshop14-de_DE_x64 14.2.0.0 {39B0B410-3751-47CA-8A38-FF9C063AC592} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC German Language Pack_x64_AdobePhotoshop14-de_DE_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Ukrainian Language Pack_14.2_AdobePhotoshop14-uk_UA 14.2.0.0 {3BB385AE-949B-41C2-AC74-0E8C4BAF6C3D} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Ukrainian Language Pack_AdobePhotoshop14-uk_UA
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC MA French Language Pack_x64_14.2_AdobePhotoshop14-fr_MA_x64 14.2.0.0 {3E6FC41B-21B9-43B0-9A06-1566FBCAB39C} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC MA French Language Pack_x64_AdobePhotoshop14-fr_MA_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Hungarian Language Pack_x64_14.2_AdobePhotoshop14-hu_HU_x64 14.2.0.0 {457FFF62-2725-47EB-941E-8F1648B89E5F} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Hungarian Language Pack_x64_AdobePhotoshop14-hu_HU_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC French Language Pack_x64_14.2_AdobePhotoshop14-fr_FR_x64 14.2.0.0 {495275FD-CD40-49CD-95DC-17584DCB2951} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC French Language Pack_x64_AdobePhotoshop14-fr_FR_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Swedish Language Pack_x64_14.2_AdobePhotoshop14-sv_SE_x64 14.2.0.0 {4956BE59-3D19-42DF-BEA9-3D7C9AE30770} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Swedish Language Pack_x64_AdobePhotoshop14-sv_SE_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC German Language Pack_14.2_AdobePhotoshop14-de_DE 14.2.0.0 {5CFC342C-63E5-490E-8624-434F996022DF} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC German Language Pack_AdobePhotoshop14-de_DE
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Norwegian Language Pack_x64_14.2_AdobePhotoshop14-nb_NO_x64 14.2.0.0 {60A50B47-39EC-4EAF-9B5A-EDC61C04171B} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Norwegian Language Pack_x64_AdobePhotoshop14-nb_NO_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC French Language Pack_14.2_AdobePhotoshop14-fr_FR 14.2.0.0 {6717CE34-EE50-4BCA-A333-76F86716B337} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC French Language Pack_AdobePhotoshop14-fr_FR
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Finnish Language Pack_x64_14.2_AdobePhotoshop14-fi_FI_x64 14.2.0.0 {7267D396-7C67-42E7-A111-5A5D93733BEA} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Finnish Language Pack_x64_AdobePhotoshop14-fi_FI_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Italian Language Pack_14.2_AdobePhotoshop14-it_IT 14.2.0.0 {7871F75D-70BC-436E-91FE-F7AA962C6099} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Italian Language Pack_AdobePhotoshop14-it_IT
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Ukrainian Language Pack_x64_14.2_AdobePhotoshop14-uk_UA_x64 14.2.0.0 {78D1FDA4-5455-4328-A63E-7E124FBC999A} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Ukrainian Language Pack_x64_AdobePhotoshop14-uk_UA_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC AE English Language Pack_x64_14.2_AdobePhotoshop14-en_AE_x64 14.2.0.0 {7CB740EA-D43D-4A85-AFCB-68C5044077C8} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC AE English Language Pack_x64_AdobePhotoshop14-en_AE_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC AE English Language Pack_14.2_AdobePhotoshop14-en_AE 14.2.0.0 {7F00EFCF-A196-46CE-9D57-46BD22ED5372} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC AE English Language Pack_AdobePhotoshop14-en_AE
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Danish Language Pack_x64_14.2_AdobePhotoshop14-da_DK_x64 14.2.0.0 {868DDE13-8E83-48BF-8D47-8CB67DFD1563} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Danish Language Pack_x64_AdobePhotoshop14-da_DK_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:633 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Dutch Language Pack_14.2_AdobePhotoshop14-nl_NL 14.2.0.0 {8850A634-F3F5-466A-B40F-3725EAED3B2D} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Dutch Language Pack_AdobePhotoshop14-nl_NL
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:634 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Russian Language Pack_14.2_AdobePhotoshop14-ru_RU 14.2.0.0 {94641229-A06A-4D09-AFAB-8EA00426EC9D} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Russian Language Pack_AdobePhotoshop14-ru_RU
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:634 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Finnish Language Pack_14.2_AdobePhotoshop14-fi_FI 14.2.0.0 {95A91199-F7A7-4F6F-A32A-E5F18C6C8C29} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Finnish Language Pack_AdobePhotoshop14-fi_FI
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    02/12/14 10:08:13:634 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe

    Batteryboy1 the first errors I came across in your log file is as follows:
    02/12/14 10:09:54:697 | [ERROR] |  | OOBE | DE |  |  |  | 9756 | DF045: File corruption detected. Re-install the product & then apply the patch again. (Can not repair file "C:\Program Files (x86)\Common Files\Adobe\Adobe Photoshop CC\32 bit Photoshop dlls\AlignmentLib.dll")(Seq 3)
    02/12/14 10:09:54:697 | [WARN] |  | OOBE | DE |  |  |  | 9756 | DW063: Command ARKPatchCommand failed.(Seq 3)
    For this error I would recommend removing and reinstalling Photoshop CC.  It appears your current installation have become compromised.  There are several additional instances of this error within the log file you have posted.
    If you find that after reinstalling you experience similar errors in the future then please review any system optimizer/utility software which may be affecting the installations of your Adobe software.
    I also see additional information that the language files have been removed from your installation.  This is based off information in the log such as the following:
    02/12/14 10:08:13:634 | [INFO] |  | OOBE | DE |  |  |  | 10132 | DW023: The extension payload: Adobe Photoshop CC Chinese (traditional) Language Pack_x64_14.2_AdobePhotoshop14-zh_TW_x64 14.2.0.0 {B04260F0-494D-4A51-95B9-688297494D69} requires a parent with following specification:
         Family: Photoshop
         ProductName: Adobe Photoshop CC Chinese (traditional) Language Pack_x64_AdobePhotoshop14-zh_TW_x64
         MinVersion: 0.0.0.0
         This parent relationship is not satisfied, because this payload is not present in this session.
         This payload will be ignored in this session.
    This would also seem to support that a system optimization utility may have been utilized to remove the additional language files.  Previously the removal of these language files alone would prevent updates from being applied.

  • TRY CATCH in SAP 4.6C

    Dear all,
    Can any body clear me what is code for try catch in SAP 4.6C? I tried the below code but the object type is doesn't exist.  ( cx_root or x_sy_native_sql_error)
    DATA: exc_ref TYPE REF TO cx_root, " cx_sy_native_sql_error,
          error_text TYPE string.
        LOOP AT it_sqlupdate.
         try.
          EXEC SQL.
                                                                                    insert into TBLSVBALSAP
            ( CoCode, SAPDocNo, PostDate, DocHdrTxt, GLAccount,
              Amount, Text, RevDoc, CreationDate, CreationTime ) values
    ( :it_sqlupdate-c_code, :it_sqlupdate-sap_docno, :it_sqlupdate-p_date,
      :it_sqlupdate-h_text, :it_sqlupdate-gl_acc,    :it_sqlupdate-amt,
      :it_sqlupdate-i_text, :it_sqlupdate-r_docno,   :it_sqlupdate-c_date,
      :it_sqlupdate-c_time )
                                                                                    ENDEXEC.
                                                                                    catch cx_sy_native_sql_error into exc_ref.
            error_text = exc_ref->get_text( ).
            MESSAGE error_text type 'I'.
            endtry.
        ENDLOOP.
    Thanks.

    Hi,
    I think, TRY CATCH Exception concept was not there in 4.6C, alternatively you can try with
    CATCH SYSTEM-EXCEPTIONS.
    Check the link below
    http://help.sap.com/abapdocu/en/ABAPCATCH_SYS.htm
    regards
    Mahesh

  • Creative Cloud : How to install page error "We are currently experiencing some issues, please try again later. If the problem persists, contact customer support."

    I recently purchase a full membership student yearly plan. I was prompted to this page after my payment was confirmed - https://creative.adobe.com/products/download/creative-cloud
    However I continue to receive the error "We are currently experiencing some issues, please try again later. If the problem persists, contact customer support."
    What is going on here?
    Is there another way to access Creative Cloud download and installation?
    Thanks.
    Robert.

    Robertdaw and MyName LOL! please utilize a different web browser.  If you continue to face difficulties then I would recommend beginning the installation process through the Creative Cloud Desktop directly.  You can find details at Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • This message keeps popping up "theres an error saying "We are currently experiencing some issues, please try again later. If the problem persists, contact customer support."

    theres an error saying "We are currently experiencing some issues, please try again later. If the problem persists, contact customer support."  im trying to download photoshop on my ubuntu os

    Make sure you have cookies enabled.  If it continues to fail, try using a different browser.

  • How to simulate a dml error in order to test try-catch code block inside a stored procedure

    Hi,
    What would be the easiest way to simulate a dml error in order to test a try catch block.
    I would like to do it with a simple command from outside the stored procedure if possible.
    I tried dropping the table that was updated but it hangs
    Thanks,
    Dani

    Dropping the table that is the target of the procedure will give you an unpleasant surprise: the CATCH block will not fire. To wit, errors like missing tables can only be caught in outer scopes, but not in the procedure where the error occurs.
    But you would add a fake constraint to a table which causes the update to fail. You need to do this in advance, not while running the procedure.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • Slow Mavericks and problem system launch daemons

    Like some other users here I've experienced a big slowdown since installing Mavericks. I ran EtreCheck (good app!) and I see that I have several failed Apple daemons. I don't know what they do but I guess this is not a good thing.  Can anybody shed a

  • Replacing the Logic Board on an iMac G4 (flat panel)

    Hi all A friend of mine has a G4 Flat Panel iMac, and apparently, though I've not seen it for myself yet, her Logic Board died on her. She has since bought an iMac G5. But I've been trying to find where one can get a replacement logic board from, tha

  • Problem in external XML reading

    Hi, I am trying to develop a birthday application.The aim of the application is to populate all the birthday dates in datechooser and display the appropriate photograph of the person when the highlighted date is clicked. When I am trying to access {x

  • Problem replying to posts on craigslist, mailto puts to much info in address

    When I try to reply to an add through Craigslist using yahoo mail. the mailto is set to yahoo mail opens fine, but in the recipient address (to:) to much information is place in there for example: "mailto:[email protected]?subject=_____2oo5 Buick Lac

  • Static file Download Losing File Name

    Hi, <br><br> I have a problem with downloading a static file. When i download a file from the application's static files i lose the file's name. The file name that i get on download is : wwv_flow_file_mgr.get_file - not very nice! <br><br> Here is my