REPOST: White Rectangle Before Splash Screen

I reposted this topic because the last one got too long and full of code without any progress towards a solution. I'm trying to show a splash screen without the white rectangle flashing first. I tried placing the setVisible(true) statement at the end of my splash screen code, no luck. There has got to be some way to stop the white screen from appearing until the image has loaded!! By the way, my image is only 5 KB! If that's too big, something is definitely wrong.
I believe the problem lies in the following code...
public void start()
Thread thread = new Thread()
public void run()
Runnable run = new Runnable()
public void run()
try
Thread.sleep(3000);
catch(Exception e)
dispose();
setVisible(true);
SwingUtilities.invokeLater(run);
thread.start();
Previous posting...
http://forums.java.sun.com/thread.jsp?forum=57&thread=268231

Hey mtnkid420,
If you had to painfully concede to the white screen that flashes up, I empathise with you. I have the solution for you now, albeit 3 years late - posting also for those who are currently mythed by the pre-splash white screen.
It was the suggestion, although rebutted, that loading larger images causes the problem. If the diagnosis was correct, the usual solution would be to load and draw the image off-screen i.e. to a BufferedImage... and you know what, it worked.
Here is a code snippet if required:
     private Splash(int displayTime, Class application)
     throws IllegalArgumentException, SecurityException, IllegalAccessException,
     NoSuchFieldException, IOException, InterruptedException
          this.displayTime = displayTime;
          splashPath = String.valueOf(application.getField("SPLASH_PATH").get(null));
          URL splashURL = application.getClassLoader().getResource(splashPath);
          Image img = ImageIO.read(splashURL);
          MediaTracker tracker = new MediaTracker(this);
          tracker.addImage(img, 1);
          tracker.waitForID(1);
          splashImage = new BufferedImage(500, 300, BufferedImage.TYPE_INT_ARGB);
          Graphics g = splashImage.getGraphics();
          g.drawImage(img, 0, 0, 500, 300, this);
          setSize(500, 300);
          setLocationRelativeTo(null);
          splash();
     } // end primary constructor
     public void paint(Graphics g)
          g.drawImage(splashImage, 0, 0, this);
     } // end paintThis code will not compile as is, but it serves the purpose to illustrate BufferedImage usage.
Warm regards,
Darren B

Similar Messages

  • White Rectangle Before Splash Screen

    I'm trying to show a splash screen without the white rectangle flashing first. I've explored the forums and found a lot of information on the subject but no solutions posted. Any ideas??

    by the way this is how iam using to display my splash
    private static void splash()
    th.start(); // I sleep to let the thread startup and display the window
    while (splash3.getWindow() == null || !splash3.getWindow().isShowing())
    try {
    Thread.sleep(2000);
    catch (InterruptedException e){}
    }splash3 is an instance of my class file containing this code
    import javax.swing.*;
    import java.awt.*;
    public class Splash implements Runnable, mainInterface{
    private String initMsg;
    public Splash(String initMsg) {
    this.initMsg = initMsg;
    public void run() {
    splashWindow.getContentPane().add(l, BorderLayout.CENTER);
    splashWindow.pack();
    splashWindow.setSize(splashWindow.getSize().width, splashWindow.getSize().height);
    splashWindow.setLocation(dim.width/2 - splashWindow.getWidth() /2,dim.height/2 -
    splashWindow.getHeight()/2);
    splashWindow.toFront();
    splashWindow.show(); }
    public JWindow getWindow()
    return splashWindow;
    }hope this is of some help
    asrar

  • MacBook Pro 13", late 2013. At First a translucent White rectangle  appeared on screen. One day later the entire screen became white and I can't see anything else.ô

    MAcBook-Pro, 13", 2013 with OS X 10.10 (Yosemite).. At first a translucent white rectangle appeared on the screen. One day latter tthe entire screen turns white and nothing else can be seen.

      Reset PRAM.   http://support.apple.com/kb/PH18761
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
      Start up in Safe Mode.  http://support.apple.com/en-us/HT1564
    Best.

  • Main program start before splash screen, help

    hi:
    below is the splash screen code:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.PrintStream;
    import java.util.Random;
    class Splash extends JWindow {
         public Splash(String filename, Frame f, int waitTime) {
              super(f);
              JLabel l = new JLabel(new ImageIcon(filename));
              getContentPane().add(l, BorderLayout.CENTER);
              pack();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Dimension labelSize = l.getPreferredSize();
              setLocation(screenSize.width / 2 - (labelSize.width / 2), screenSize.height / 2 - (labelSize.height / 2));
              addMouseListener(new MouseAdapter() {
                   public void mousePressed(MouseEvent e) {
                        setVisible(false);
                        dispose();
              final int pause = waitTime;
              final Runnable closerRunner = new Runnable() {
                   public void run() {
                        setVisible(false);
                        dispose();
              Runnable waitRunner = new Runnable() {
                   public void run() {
                        try {
                             Thread.sleep(pause);
                             SwingUtilities.invokeAndWait(closerRunner);
                        } catch (Exception e) {
                             e.printStackTrace();
                             // can catch InvocationTargetException
                             // can catch InterruptedException
              setVisible(true);
              Thread splashThread = new Thread(waitRunner, "SplashThread");
              splashThread.start();
    below is the constructor that started the splash and the main:
    public static void main(String args[])
    PictureViewer PV = new PictureViewer();
    standaloneApp = true;
    splash Splash sw = new Splash("prestigestetho.gif",null, 5000);
    the splash appear just fine, the problem is that it appears after
    my main program appear first.
    I try to shift the priority of splash, which is sw first and then PV,
    in that case the splash screen appear first then PV, but this time PV
    stay in front of sw makes it totally not viewable.
    is there any method to make splash screen appear first and on the screen you can see the process of main program starting up (for example
    : loading this ...., loading that.....) something like acrobat reader's
    startup screen, and then splash screen disappear and then main program
    pop up.

    okay, I got it, it's under SwingSet2.java the related code is as follow:
    // Used only if swingset is an application
    private JFrame frame = null;
    private JWindow splashScreen = null;
    // The tab pane that holds the demo
    private JTabbedPane tabbedPane = null;
    private JEditorPane demoSrcPane = null;
    private JLabel splashLabel = null;
    * SwingSet2 Constructor
    public SwingSet2(SwingSet2Applet applet, GraphicsConfiguration gc) {
    // Note that the applet may null if this is started as an application
         this.applet = applet;
    // Create Frame here for app-mode so the splash screen can get the
    // GraphicsConfiguration from it in createSplashScreen()
    if (!isApplet()) {
    frame = createFrame(gc);
    // setLayout(new BorderLayout());
         setLayout(new BorderLayout());
    // set the preferred size of the demo
         setPreferredSize(new Dimension(PREFERRED_WIDTH,PREFERRED_HEIGHT));
    // Create and throw the splash screen up. Since this will
    // physically throw bits on the screen, we need to do this
    // on the GUI thread using invokeLater.
    createSplashScreen();
    // do the following on the gui thread
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSplashScreen();
    initializeDemo();
         preloadFirstDemo();
         // Show the demo and take down the splash screen. Note that
         // we again must do this on the GUI thread using invokeLater.
         SwingUtilities.invokeLater(new Runnable() {
         public void run() {
              showSwingSet2();
              hideSplash();
         // Start loading the rest of the demo in the background
         DemoLoadThread demoLoader = new DemoLoadThread(this);
         demoLoader.start();
    * Show the spash screen while the rest of the demo loads
    public void createSplashScreen() {
         splashLabel = new JLabel(createImageIcon("Splash.jpg", "Splash.accessible_description"));
         if(!isApplet()) {
         splashScreen = new JWindow(getFrame());
         splashScreen.getContentPane().add(splashLabel);
         splashScreen.pack();
         Rectangle screenRect = getFrame().getGraphicsConfiguration().getBounds();
         splashScreen.setLocation(
    screenRect.x + screenRect.width/2 - splashScreen.getSize().width/2,
              screenRect.y + screenRect.height/2 - splashScreen.getSize().height/2);
    public void showSplashScreen() {
         if(!isApplet()) {
         splashScreen.show();
         } else {
         add(splashLabel, BorderLayout.CENTER);
         validate();
         repaint();
    * pop down the spash screen
    public void hideSplash() {
         if(!isApplet()) {
         splashScreen.setVisible(false);
         splashScreen = null;
         splashLabel = null;

  • White rectangle on Safari screen

    When I bring up the Safari screen there is a white rectangle that blocks whatever I bring up with Google. I can't get rid of it. This has only started recently. Anybody know how I can eliminate this?

    Sounds odd. You should try a reset first (hold the Home and Sleep/Wake buttons down together until you see the Apple logo then release. If that doesn't do it, then you will need to restore the iPod (via iTunes).

  • Illustrator crashes before splash screen with networked home dir

    I’m having a problem with deploying Adobe CS6 in my school’s labs. Actually, this problem only affects Illustrator CS6 as all the other applications of the suite are functioning normally.
    Here are some data about our network Environment
    120+ imacs of various models (from late 2007 to early 2013)
    Each mac is bound to 2 directory services (Windows AD and a Mac mini server)
    Authentication is taken care of by the Windows AD server.
    Preferences management and Mac-specific settings are controlled by the Mac server
    Each user (teacher and student) has a remote home directory located on a huge (21 TB) synology NAS
    The address of this home directory is maintained by the windows AD and retrieved at logon
    Users can authenticate with no issues and their home directory is correctly mounted on the Imacs. The applications of the Creative suite (deployed through AAMEE) are all working fine except for Adobe Illustrator CS6.
    Here is the problem
    If a remote user (that is a user with a distant home directory, so pretty much everyone in the school)  launches Illustrator, The application hangs and crashed even before this beautiful brownish splash screen appears on the screen. I can see illustrator in red in the activity monitor an have to kill it manually
    If a local user logs in (that is the local admin or the guest user) Illustrator works fine! (Which tells me that it is not an install or dependency issue)
    In short, It looks like Illustrator does not like users whose home directory is not stored on the local machine.
    Has anyone run into a similar issue?  Is this documented somewhere? Are there some preferences I need to customise to make Illustrator work with remote users? Will it be naturally solved when I’ll deploy Illustrator CC in a month or so?
    In case any Adobe employee read this message, I attache the Crash report as generated by my iMac.
    Any insight on this issue is very much appreciated. I’m stuck with this one...... heeeeeeelp!!
    Thanks and regards from cloudy Belgium!

    I confirm what Serge said.
    We worked on this issue with the Illustrator team and Illustrator just does not work when the home directory of the current user is not on the local drive.
    That being said, it IS possible to make Illustrator work in a Network environment. There are 2 ways to do that.
    1) when binding the MAc to an Active Directory domain, tick the "Force home directory on local drive" checkbox. That will create the home directory of the user on the local drive and Illustrator will work fine. The down side of this method is that if the user switches to another Mac (whith is the case in our school lab) his home directory will be re-created from scratch on the new Mac and all his custom preferences and setting will be lost.
    2) Use the WorkGroup Manager to create a roaming profile. With this method, The home directory of the user is copied over from the network location on the local drive at logon. As far as Illustrator is concerned, The home folder is then local and everything works as expected. You can have the local home folder be synchronized with the remote home folder at logout (or even at regular intervals during the session) so that the custom preferences and settings of the user does follow him from Mac to Mac
    The only case where Illustrator does not work is when the home directory is mounted as a remote folder. That configuration prevents Illustrator from openning.
    Damien

  • Photoshop CS6 freezes before splash screen (Mavericks)

    13-inch MacBook Pro 2012 (June), 2.9GHz i7, 8GB of Apple RAM (no third-party RAM), 750GB drive, non-Retina display, OS X 10.9.1. In use for over a year under 10.8.x.
    Creative Suite CS6 Production Premium (Academic License) installed. Upgraded from 10.8.5 where Photoshop CS6 ran successfully until upgrading to 10.9. Upgrading to 10.9.1 didn't help. Reverting to 10.8.5 fixes things. Adobe Drive has never been installed. Lightroom 4 is installed. Trial of InDesign CC is installed, and it was installed under 10.8.5, too.
    Only Photoshop CS6 is affected; other CS6 apps in the suite work fine under 10.9.x. After upgrading to 10.9, Photoshop CS6 will work for maybe a day, then it will launch with a menu bar and menu choices, but none of them work. The Photoshop CS6 splash screen never appears.
    It appears to be OS X user-account related. If a new OS X user is created, Photoshop CS6 works.
    CS6 suite has been removed and reinstalled; no positive effect. Adobe's CS6 uninstaller has been downloaded and CS6 suite reinstalled; no positive effect. Photoshop .plist file has been deleted; no positive effect.
    Any help appreciated! Thanks!

    Because Photoshop will launch successfully with a different OS X user account, can someone suggest which specific Console log(s) in both accounts to investigate (or search for the existence of) that may help diagnose why Photoshop won't launch?
    Additional behavior:
    In the problematic account, Photoshop starts to launch, and its menus appear. Many menus are black, but when you select a menu choice (such as Photoshop > About Photoshop or File > Open), then all Photoshop menus and choices gray out. Then you have to force quit Photoshop.
    However, if you first (while menu choices are still black) choose File > Open in Bridge CS6 (or words to that effect), then Bridge will open.
    Thanks.

  • Photoshop CS6 freezes before splash screen

    13-inch MacBook Pro 2012 (June), 2.9GHz i7, 8GB of Apple RAM (no third-party RAM), 750GB drive, non-Retina display, OS X 10.9.1. In use for over a year under 10.8.x.
    Creative Suite CS6 Production Premium (Academic License) installed. Upgraded from 10.8.5 where Photoshop CS6 ran successfully until upgrading to 10.9. Upgrading to 10.9.1 didn't help. Reverting to 10.8.5 fixes things. Adobe Drive has never been installed. Lightroom 4 is installed. Trial of InDesign CC is installed, and it was installed under 10.8.5, too.
    Only Photoshop CS6 is affected; other CS6 apps in the suite work fine under 10.9.x. After upgrading to 10.9, Photoshop CS6 will work for maybe a day, then it will launch with a menu bar and menu choices, but none of them work. The Photoshop CS6 splash screen never appears.
    It appears to be OS X user-account related. If a new OS X user is created, Photoshop CS6 works.
    CS6 suite has been removed and reinstalled; no positive effect. Adobe's CS6 uninstaller has been downloaded and CS6 suite reinstalled; no positive effect. Photoshop .plist file has been deleted; no positive effect.
    Any help appreciated! Thanks!

    Because Photoshop will launch successfully with a different OS X user account, can someone suggest which specific Console log(s) in both accounts to investigate (or search for the existence of) that may help diagnose why Photoshop won't launch?
    Additional behavior:
    In the problematic account, Photoshop starts to launch, and its menus appear. Many menus are black, but when you select a menu choice (such as Photoshop > About Photoshop or File > Open), then all Photoshop menus and choices gray out. Then you have to force quit Photoshop.
    However, if you first (while menu choices are still black) choose File > Open in Bridge CS6 (or words to that effect), then Bridge will open.
    Thanks.

  • Start before splash screen problems

    Pavillion DV6338SE
    When notebook is turned on it can take 5 minutes to an  hour to get to the HP splash screen and boot. The blue leds blink then it seems to try again and again and again. If it gets to the HP Splash screen it always bootsThis happens even if a bootable CD is in the CD drive. Once it boots it "seems" to work OK. I have checked the HD in the "setup" and it tests OK. I have updated the bios. 
    I don't "think" it is the HD, maybe the controller?
    Suggestions.
    Hope is not another AMD motherboard that has plagued HP.over the last several years.
    Thanks

    Pavillion DV6338SE
    When notebook is turned on it can take 5 minutes to an  hour to get to the HP splash screen and boot. The blue leds blink then it seems to try again and again and again. If it gets to the HP Splash screen it always bootsThis happens even if a bootable CD is in the CD drive. Once it boots it "seems" to work OK. I have checked the HD in the "setup" and it tests OK. I have updated the bios. 
    I don't "think" it is the HD, maybe the controller?
    Suggestions.
    Hope is not another AMD motherboard that has plagued HP.over the last several years.
    Thanks

  • Splash screen displayed white

    Hi,
    I've created a splash screen for a Swing program copied from the JavaWorld tutorial
    http://www.javaworld.com/javaworld/javatips/jw-javatip104.html
    My problem is that the splash screen gets displayed as a white rectangle before my program starts up. If I show the splash screen from a menu item after the program has started up it displays perfectly.
    I've seen from a previous posting in this forum:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=124267
    that this is because my splash screen is being starved of paint messages because of threading. Unfortunately the thread does not say how to get around this. Does anyone know the solution or even pointers to the solution?

    I got the tutorial to work by cutting and pasting SplashWindow3 from the tutorial, adding the following code
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Splash{
         public static void main(String [] args){
              Frame f = new Frame("a frame");
              SplashWindow3 swindow = new SplashWindow3("myimage.jpg", f, 5000);
    saving it to Splash.java,
    compiling and running.
    Perhaps it is not finding your image?
    Perhaps you could show us the code?

  • White rectangle on screen

    Just showed up today. Near teh middle of the screen an odd small rectangle in on teh screen, regardless of what window is open it is always on top and has a small black shadow on screen. whats the deal?

    Hello Tempelaffe,
    It sounds like you get this whit rectangle in the screen shot out of nowhere, but it goes away when you restart the computer. I would start by performing a Safe Boot, and then resetting your PRAM in that order. Due to the nature of the issue, try it out for a while to see how it goes.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    Starting up in Safe Mode
    To start up into Safe Mode (to Safe Boot), follow these steps.
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key.
    The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple logo and the progress indicator (looks like a spinning gear).
    After the logo appears, you should see a progress bar during startup. This indicates that your computer is performing a directory check as part of Safe Mode.
    To leave Safe Mode, restart your computer without holding any keys during startup.
    And:
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    After resetting NVRAM or PRAM, you may need to reconfigure your settings for speaker volume, screen resolution, startup disk selection, and time zone information.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • White rectangle on screen with beachball

    Hi all,
    now and then i get a white rectangle on my screen. I can not delet it or move it or do anything with it. I don´t know why or when it appears. But if its there, i can not undo it. When i restart, its gone.
    Does anybody have an idea what that can be?
    Pleas help me.
    Thanks
    Tempelaffe

    Hello Tempelaffe,
    It sounds like you get this whit rectangle in the screen shot out of nowhere, but it goes away when you restart the computer. I would start by performing a Safe Boot, and then resetting your PRAM in that order. Due to the nature of the issue, try it out for a while to see how it goes.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    Starting up in Safe Mode
    To start up into Safe Mode (to Safe Boot), follow these steps.
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key.
    The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple logo and the progress indicator (looks like a spinning gear).
    After the logo appears, you should see a progress bar during startup. This indicates that your computer is performing a directory check as part of Safe Mode.
    To leave Safe Mode, restart your computer without holding any keys during startup.
    And:
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    After resetting NVRAM or PRAM, you may need to reconfigure your settings for speaker volume, screen resolution, startup disk selection, and time zone information.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Is there any way to fill long loading gap between splash screen and application home page?

    Recently I have developed my first MAF app. This app is with basic design with some page re-directions, no web services/java script is used but when I start app first time then there is a long white gap after splash screen till loading application home page. Is there any way to eliminate this gap?

    User, tell us your jdev version, please!
    Check the hints given in this thread Increase Adf Application Load Time
    When a page loads all iterators are executed whihc can take some time if you have many of them on the page retrieving many rows. So what is on your home page?
    Timo

  • Splash Screen Appears as a White Rectangle

    Hi,
    I am trying to show a splash screen in my application, which is to be shown as long as a runtime process has completed execution.
    The code i used for the Splash screen is:
    import javax.swing.JWindow;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.SwingUtilities;
    import java.awt.MediaTracker;import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.*;
    public class Splash implements Runnable
    private JWindow splashWindow;
    private String message;
    protected JLabel label;
    public Splash(String initMsg)
    this.message = initMsg;
    public void run()
    label = new JLabel(message);
    splashWindow = new JWindow();
    splashWindow.getContentPane().add(label, BorderLayout.CENTER);
    splashWindow.pack();
    splashWindow.setSize(splashWindow.getSize().width, splashWindow.getSize().height);
    Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
    splashWindow.setLocation(dim.width/2 - splashWindow.getWidth() /2,dim.height/2 -
    splashWindow.getHeight()/2);
    splashWindow.toFront();
    splashWindow.show();
    public JWindow getWindow()
    return splashWindow;
    public void close()
    splashWindow.dispose();
    public void showStatus(final String status)
    label.setText(status);
    splashWindow.show();
    In my main program, i am using the Splash class as follows:
    splash = new Splash("Drawing Graph...");
    Thread th = new Thread(splash);
    th.start();
    while (splash.getWindow() == null || !splash.getWindow().isShowing())
    try
    th.sleep(100);
    catch (InterruptedException e){}
    try
    Thread.sleep(1000);
    catch (InterruptedException e) {}
    Process proc = null;
    proc = Runtime.getRuntime().exec(....some process to draw a graph....);
    proc.waitFor();
    // deal with the proc streams....
    splash.showStatus("Drawing Graph....Done");
    splash.close();
    The problem is that, the splash window appears as a blank rectangle without any string on in. It appears and closes properly. But, it does not show the status string.
    Please help!!!
    thanks,
    bblak

    You're blocking the event dispatch thread so no repaints can be processed.
    Take a look at SwingWorker or http://spin.sourceforge.net.
    Sven

  • Illustrator CC crashes before startup splash screen (new user - uninstalled and re-installed

    Illustrator CC crashes before startup splash screen (new user - uninstalled and re-installed three times

    Hi Jeff,
    Here is the intall log for Illustrator CC:
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | START - Installer Session
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    12/02/13 19:34:44:625 | [INFO] |  | OOBE | DE |  |  |  | 56532 | RIBS version: 7.0.0.108
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | OSX version: 10.9.0 
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | ::START TIMER:: [Total Timer]
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | CHECK: Single instance running
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | CHECK : Credentials
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Load Deployment File
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | CHECK : Another Native OS installer already running
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Create Required Folders
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Assuming uninstall mode
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Lookup for master payload
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Ready to initialize session to start with ...
    12/02/13 19:34:44:628 | [INFO] |  | OOBE | DE |  |  |  | 56532 | ::START TIMER:: [CreatePayloadSession]
    12/02/13 19:34:44:648 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Supported RIBS version range: [0.0.0.0,7.0.0.108]
    12/02/13 19:34:44:648 | [INFO] |  | OOBE | DE |  |  |  | 56532 | ----------------- CreatePayloadSession: machine is x86 ---------------
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 | ______ Verify Dependency Subscribers ______
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   PDF Settings CS5 10.0.0.0 {84901376-1C55-4BD3-AD2C-F9BDB4449DAC}: 1 (0,2)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   PDF Settings CS5 10.0.0.0 {D798DB87-E1D3-4271-839C-0ADF8C76944E}: 1 (0,2)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorCommonSetCMYK CC 5.0.0.0 {C4196275-B11A-40A1-8727-3C145C8F7D95}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorCommonSetRGB CC 5.0.0.0 {C8DEBB29-3EB0-4B97-B652-4DE482B111BC}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorEU CC 5.0.0.0 {9E9EB9FD-FDE8-487A-A41C-7713DA91AC89}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorEU CC 5.0.0.0 {F6DED2DA-1D20-497E-8810-E745B45DCD28}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorJA CC 5.0.0.0 {52D57F95-000A-4922-BB31-C6A936F4FD7D}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorJA CC 5.0.0.0 {A032EB9D-B6EB-45BF-9F15-83B0755DC9AB}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorNA CC 5.0.0.0 {72405B80-A3DD-4BB2-A8C4-A90BC7BA50FF}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   AdobeColorNA CC 5.0.0.0 {AB955DCF-69CD-4840-B7FB-F318CDD0AE44}: 2 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Required Common Fonts Installation 3.0.0.0 {2A5D70AD-E4C3-4C3D-A18F-38B1CA51CE47}: 3 (0,2)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Extensions 4 4.0.0.0 {2696829E-809E-4CCE-871F-AD92F85A9A66}: 4 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D}: 5 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Infrastructure 4 4.0.0.0 {5F816B76-62F3-41C9-B651-27F49F25F50B}: 6 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B}: 7 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Support 17.0.0.0 {B099EDE9-C4BC-4E3A-B1F8-0321C84C4925}: 8 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Player for Embedding 3.4 3.4.0.0 {6E6ECFC9-FE3D-4314-B937-7E25A7862899}: 8 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Recommended Common Fonts Installation 3.0.0.0 {4574D206-D61E-4555-B146-A16B01985E0B}: 8 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Required Common Fonts Installation 3.0.0.0 {9A49EAB8-6664-4164-9323-49CA9E9C5E0C}: 8 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   ShareOnBehance 1.0.0.0 {D6A3BEA9-7551-482D-B8E6-2ECCD627F557}: 8 (0,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8}: 9 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   PDF Settings CC 12.0.0.0 {DBF92E71-A8E3-494C-8792-2F78B74BEF3E}: 10 (2,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   PDF Settings CC 12.0.0.0 {F3306594-3BAA-4FA5-86C2-597278F5674E}: 10 (2,1)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}: 11 (18,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17en_ILLanguagePack 17.0.0.0 {FBA8C920-26AD-470B-9C3F-96C4B233203A}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17en_AELanguagePack 17.0.0.0 {F416B6B6-7BE4-474A-95B2-22DDCE04A1A4}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17zh_TWLanguagePack 17.0.0.0 {B9D0B300-154B-461C-9F36-8EC011FC26C9}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17pl_PLLanguagePack 17.0.0.0 {F2EB1B1D-151A-4830-A4F7-2FD2A505DF9E}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17fr_MALanguagePack 17.0.0.0 {EA36C083-F87C-4507-80A0-2CC35C952658}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17sv_SELanguagePack 17.0.0.0 {C70AD489-7921-40A8-8466-E20C62007222}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17fr_CALanguagePack 17.0.0.0 {E7F2A95A-0435-4053-8C8D-D93B05F0B178}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17zh_CNLanguagePack 17.0.0.0 {D41E514A-68E6-4852-9171-93FE5AB9AF18}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116}: 12 (0,0)
    12/02/13 19:34:44:930 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17es_ESLanguagePack 17.0.0.0 {4B83E4D8-E9B7-4217-B583-2F2C59E1D609}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17fr_FRLanguagePack 17.0.0.0 {5A9675DD-8C96-4FA2-BD74-B08E8F17C37F}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17ko_KRLanguagePack 17.0.0.0 {617F721D-47B3-4B59-B2A8-6C29CF465860}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17en_GBLanguagePack 17.0.0.0 {635647DC-2CA7-4769-875A-FE9DF13C2227}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17pt_BRLanguagePack 17.0.0.0 {81E67FAF-CCC7-43F2-A985-D6B76F14D5BE}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17nl_NLLanguagePack 17.0.0.0 {979B9B0A-4189-4019-8C49-B1F58F8E4DE9}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17tr_TRLanguagePack 17.0.0.0 {9DCC6F0F-AEE2-4F83-8A6C-16C6109DB9FD}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17en_USLanguagePack 17.0.0.0 {D634E98D-D055-4AA9-A153-E454F1D0DE5B}: 12 (0,0)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Setting property "deploymentFile" to: /tmp/85658CB0-1E86-477C-9FA7-5CABA602838C/deploy.xml
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Setting property "driverAdobeCode" to: {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Setting property "mediaSignature" to: {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Setting property "removeUserPrefs" to: 1
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Setting property "userASUPath" to: /Applications/Utilities/Adobe Application Manager
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Overwrite property "mediaSignature" to: {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Overwrite property "removeUserPrefs" to: 1
    12/02/13 19:34:44:931 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Overwrite property "userASUPath" to: /Applications/Utilities/Adobe Application Manager
    12/02/13 19:34:44:932 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Found payload actions:
    12/02/13 19:34:44:932 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Deciding what installer mode to use...
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17tr_TRLanguagePack 17.0.0.0 {9DCC6F0F-AEE2-4F83-8A6C-16C6109DB9FD} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17nl_NLLanguagePack 17.0.0.0 {979B9B0A-4189-4019-8C49-B1F58F8E4DE9} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17pt_BRLanguagePack 17.0.0.0 {81E67FAF-CCC7-43F2-A985-D6B76F14D5BE} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17en_GBLanguagePack 17.0.0.0 {635647DC-2CA7-4769-875A-FE9DF13C2227} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17ko_KRLanguagePack 17.0.0.0 {617F721D-47B3-4B59-B2A8-6C29CF465860} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17fr_FRLanguagePack 17.0.0.0 {5A9675DD-8C96-4FA2-BD74-B08E8F17C37F} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17es_ESLanguagePack 17.0.0.0 {4B83E4D8-E9B7-4217-B583-2F2C59E1D609} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17zh_CNLanguagePack 17.0.0.0 {D41E514A-68E6-4852-9171-93FE5AB9AF18} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17fr_CALanguagePack 17.0.0.0 {E7F2A95A-0435-4053-8C8D-D93B05F0B178} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17sv_SELanguagePack 17.0.0.0 {C70AD489-7921-40A8-8466-E20C62007222} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17fr_MALanguagePack 17.0.0.0 {EA36C083-F87C-4507-80A0-2CC35C952658} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17pl_PLLanguagePack 17.0.0.0 {F2EB1B1D-151A-4830-A4F7-2FD2A505DF9E} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17zh_TWLanguagePack 17.0.0.0 {B9D0B300-154B-461C-9F36-8EC011FC26C9} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17en_AELanguagePack 17.0.0.0 {F416B6B6-7BE4-474A-95B2-22DDCE04A1A4} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Adobe Illustrator CC Core_AdobeIllustrator17en_ILLanguagePack 17.0.0.0 {FBA8C920-26AD-470B-9C3F-96C4B233203A} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | PDF Settings CC 12.0.0.0 {DBF92E71-A8E3-494C-8792-2F78B74BEF3E} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | AdobeColorNA CC 5.0.0.0 {72405B80-A3DD-4BB2-A8C4-A90BC7BA50FF} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | AdobeColorJA CC 5.0.0.0 {52D57F95-000A-4922-BB31-C6A936F4FD7D} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | AdobeColorEU CC 5.0.0.0 {9E9EB9FD-FDE8-487A-A41C-7713DA91AC89} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | PDF Settings CS5 10.0.0.0 {D798DB87-E1D3-4271-839C-0ADF8C76944E} not installed
    12/02/13 19:34:45:014 | [INFO] |  | OOBE | DE |  |  |  | 56532 | BEGIN Setting requested payload actions
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17en_USLanguagePack 17.0.0.0 {D634E98D-D055-4AA9-A153-E454F1D0DE5B} is: true
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17en_USLanguagePack 17.0.0.0 {D634E98D-D055-4AA9-A153-E454F1D0DE5B}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17en_USLanguagePack 17.0.0.0 {D634E98D-D055-4AA9-A153-E454F1D0DE5B} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17tr_TRLanguagePack 17.0.0.0 {9DCC6F0F-AEE2-4F83-8A6C-16C6109DB9FD} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17tr_TRLanguagePack 17.0.0.0 {9DCC6F0F-AEE2-4F83-8A6C-16C6109DB9FD}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17tr_TRLanguagePack 17.0.0.0 {9DCC6F0F-AEE2-4F83-8A6C-16C6109DB9FD} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17nl_NLLanguagePack 17.0.0.0 {979B9B0A-4189-4019-8C49-B1F58F8E4DE9} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17nl_NLLanguagePack 17.0.0.0 {979B9B0A-4189-4019-8C49-B1F58F8E4DE9}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17nl_NLLanguagePack 17.0.0.0 {979B9B0A-4189-4019-8C49-B1F58F8E4DE9} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17pt_BRLanguagePack 17.0.0.0 {81E67FAF-CCC7-43F2-A985-D6B76F14D5BE} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17pt_BRLanguagePack 17.0.0.0 {81E67FAF-CCC7-43F2-A985-D6B76F14D5BE}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17pt_BRLanguagePack 17.0.0.0 {81E67FAF-CCC7-43F2-A985-D6B76F14D5BE} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17en_GBLanguagePack 17.0.0.0 {635647DC-2CA7-4769-875A-FE9DF13C2227} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17en_GBLanguagePack 17.0.0.0 {635647DC-2CA7-4769-875A-FE9DF13C2227}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17en_GBLanguagePack 17.0.0.0 {635647DC-2CA7-4769-875A-FE9DF13C2227} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17ko_KRLanguagePack 17.0.0.0 {617F721D-47B3-4B59-B2A8-6C29CF465860} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17ko_KRLanguagePack 17.0.0.0 {617F721D-47B3-4B59-B2A8-6C29CF465860}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17ko_KRLanguagePack 17.0.0.0 {617F721D-47B3-4B59-B2A8-6C29CF465860} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17fr_FRLanguagePack 17.0.0.0 {5A9675DD-8C96-4FA2-BD74-B08E8F17C37F} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17fr_FRLanguagePack 17.0.0.0 {5A9675DD-8C96-4FA2-BD74-B08E8F17C37F}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17fr_FRLanguagePack 17.0.0.0 {5A9675DD-8C96-4FA2-BD74-B08E8F17C37F} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17es_ESLanguagePack 17.0.0.0 {4B83E4D8-E9B7-4217-B583-2F2C59E1D609} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17es_ESLanguagePack 17.0.0.0 {4B83E4D8-E9B7-4217-B583-2F2C59E1D609}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17es_ESLanguagePack 17.0.0.0 {4B83E4D8-E9B7-4217-B583-2F2C59E1D609} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17zh_CNLanguagePack 17.0.0.0 {D41E514A-68E6-4852-9171-93FE5AB9AF18} is: false
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17zh_CNLanguagePack 17.0.0.0 {D41E514A-68E6-4852-9171-93FE5AB9AF18}  is none
    12/02/13 19:34:45:015 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17zh_CNLanguagePack 17.0.0.0 {D41E514A-68E6-4852-9171-93FE5AB9AF18} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17fr_CALanguagePack 17.0.0.0 {E7F2A95A-0435-4053-8C8D-D93B05F0B178} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17fr_CALanguagePack 17.0.0.0 {E7F2A95A-0435-4053-8C8D-D93B05F0B178}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17fr_CALanguagePack 17.0.0.0 {E7F2A95A-0435-4053-8C8D-D93B05F0B178} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17sv_SELanguagePack 17.0.0.0 {C70AD489-7921-40A8-8466-E20C62007222} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17sv_SELanguagePack 17.0.0.0 {C70AD489-7921-40A8-8466-E20C62007222}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17sv_SELanguagePack 17.0.0.0 {C70AD489-7921-40A8-8466-E20C62007222} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17fr_MALanguagePack 17.0.0.0 {EA36C083-F87C-4507-80A0-2CC35C952658} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17fr_MALanguagePack 17.0.0.0 {EA36C083-F87C-4507-80A0-2CC35C952658}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17fr_MALanguagePack 17.0.0.0 {EA36C083-F87C-4507-80A0-2CC35C952658} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17pl_PLLanguagePack 17.0.0.0 {F2EB1B1D-151A-4830-A4F7-2FD2A505DF9E} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17pl_PLLanguagePack 17.0.0.0 {F2EB1B1D-151A-4830-A4F7-2FD2A505DF9E}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17pl_PLLanguagePack 17.0.0.0 {F2EB1B1D-151A-4830-A4F7-2FD2A505DF9E} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17zh_TWLanguagePack 17.0.0.0 {B9D0B300-154B-461C-9F36-8EC011FC26C9} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17zh_TWLanguagePack 17.0.0.0 {B9D0B300-154B-461C-9F36-8EC011FC26C9}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17zh_TWLanguagePack 17.0.0.0 {B9D0B300-154B-461C-9F36-8EC011FC26C9} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17en_AELanguagePack 17.0.0.0 {F416B6B6-7BE4-474A-95B2-22DDCE04A1A4} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17en_AELanguagePack 17.0.0.0 {F416B6B6-7BE4-474A-95B2-22DDCE04A1A4}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17en_AELanguagePack 17.0.0.0 {F416B6B6-7BE4-474A-95B2-22DDCE04A1A4} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core_AdobeIllustrator17en_ILLanguagePack 17.0.0.0 {FBA8C920-26AD-470B-9C3F-96C4B233203A} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core_AdobeIllustrator17en_ILLanguagePack 17.0.0.0 {FBA8C920-26AD-470B-9C3F-96C4B233203A}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Payload Adobe Illustrator CC Core_AdobeIllustrator17en_ILLanguagePack 17.0.0.0 {FBA8C920-26AD-470B-9C3F-96C4B233203A} is extension payload. Aligning its action according to parent Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581} is: true
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}  is remove
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Selection of payload Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581} is forbidden by the policy. Reason: Free payload
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: PDF Settings CC 12.0.0.0 {F3306594-3BAA-4FA5-86C2-597278F5674E} is: true
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for PDF Settings CC 12.0.0.0 {F3306594-3BAA-4FA5-86C2-597278F5674E}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: PDF Settings CC 12.0.0.0 {DBF92E71-A8E3-494C-8792-2F78B74BEF3E} is: false
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for PDF Settings CC 12.0.0.0 {DBF92E71-A8E3-494C-8792-2F78B74BEF3E}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8} is: true
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8}  is remove
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: ShareOnBehance 1.0.0.0 {D6A3BEA9-7551-482D-B8E6-2ECCD627F557} is: true
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for ShareOnBehance 1.0.0.0 {D6A3BEA9-7551-482D-B8E6-2ECCD627F557}  is none
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Required Common Fonts Installation 3.0.0.0 {9A49EAB8-6664-4164-9323-49CA9E9C5E0C} is: true
    12/02/13 19:34:45:016 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Required Common Fonts Installation 3.0.0.0 {9A49EAB8-6664-4164-9323-49CA9E9C5E0C}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Recommended Common Fonts Installation 3.0.0.0 {4574D206-D61E-4555-B146-A16B01985E0B} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Recommended Common Fonts Installation 3.0.0.0 {4574D206-D61E-4555-B146-A16B01985E0B}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Player for Embedding 3.4 3.4.0.0 {6E6ECFC9-FE3D-4314-B937-7E25A7862899} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Player for Embedding 3.4 3.4.0.0 {6E6ECFC9-FE3D-4314-B937-7E25A7862899}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe Illustrator CC Support 17.0.0.0 {B099EDE9-C4BC-4E3A-B1F8-0321C84C4925} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe Illustrator CC Support 17.0.0.0 {B099EDE9-C4BC-4E3A-B1F8-0321C84C4925}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B}  is remove
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe CSXS Infrastructure 4 4.0.0.0 {5F816B76-62F3-41C9-B651-27F49F25F50B} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe CSXS Infrastructure 4 4.0.0.0 {5F816B76-62F3-41C9-B651-27F49F25F50B}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D}  is remove
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Adobe CSXS Extensions 4 4.0.0.0 {2696829E-809E-4CCE-871F-AD92F85A9A66} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Adobe CSXS Extensions 4 4.0.0.0 {2696829E-809E-4CCE-871F-AD92F85A9A66}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: Required Common Fonts Installation 3.0.0.0 {2A5D70AD-E4C3-4C3D-A18F-38B1CA51CE47} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for Required Common Fonts Installation 3.0.0.0 {2A5D70AD-E4C3-4C3D-A18F-38B1CA51CE47}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorNA CC 5.0.0.0 {AB955DCF-69CD-4840-B7FB-F318CDD0AE44} is: true
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorNA CC 5.0.0.0 {AB955DCF-69CD-4840-B7FB-F318CDD0AE44}  is none
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorNA CC 5.0.0.0 {72405B80-A3DD-4BB2-A8C4-A90BC7BA50FF} is: false
    12/02/13 19:34:45:017 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorNA CC 5.0.0.0 {72405B80-A3DD-4BB2-A8C4-A90BC7BA50FF}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorJA CC 5.0.0.0 {A032EB9D-B6EB-45BF-9F15-83B0755DC9AB} is: true
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorJA CC 5.0.0.0 {A032EB9D-B6EB-45BF-9F15-83B0755DC9AB}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorJA CC 5.0.0.0 {52D57F95-000A-4922-BB31-C6A936F4FD7D} is: false
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorJA CC 5.0.0.0 {52D57F95-000A-4922-BB31-C6A936F4FD7D}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorEU CC 5.0.0.0 {F6DED2DA-1D20-497E-8810-E745B45DCD28} is: true
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorEU CC 5.0.0.0 {F6DED2DA-1D20-497E-8810-E745B45DCD28}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorEU CC 5.0.0.0 {9E9EB9FD-FDE8-487A-A41C-7713DA91AC89} is: false
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorEU CC 5.0.0.0 {9E9EB9FD-FDE8-487A-A41C-7713DA91AC89}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorCommonSetRGB CC 5.0.0.0 {C8DEBB29-3EB0-4B97-B652-4DE482B111BC} is: true
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorCommonSetRGB CC 5.0.0.0 {C8DEBB29-3EB0-4B97-B652-4DE482B111BC}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: AdobeColorCommonSetCMYK CC 5.0.0.0 {C4196275-B11A-40A1-8727-3C145C8F7D95} is: true
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for AdobeColorCommonSetCMYK CC 5.0.0.0 {C4196275-B11A-40A1-8727-3C145C8F7D95}  is none
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: PDF Settings CS5 10.0.0.0 {D798DB87-E1D3-4271-839C-0ADF8C76944E} is: false
    12/02/13 19:34:45:018 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for PDF Settings CS5 10.0.0.0 {D798DB87-E1D3-4271-839C-0ADF8C76944E}  is none
    12/02/13 19:34:45:073 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Value returned on lookup of payload: PDF Settings CS5 10.0.0.0 {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} is: true
    12/02/13 19:34:45:073 | [INFO] |  | OOBE | DE |  |  |  | 56532 | Action string for PDF Settings CS5 10.0.0.0 {84901376-1C55-4BD3-AD2C-F9BDB4449DAC}  is none
    12/02/13 19:34:45:076 | [INFO] |  | OOBE | DE |  |  |  | 56532 | END Setting requested payload actions
    12/02/13 19:34:45:076 | [INFO] |  | OOBE | DE |  |  |  | 56532 | INSTALLDIR passed path basic path validation: /Applications
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Adobe Illustrator CC Core 17.0.0.0 {60D034D6-7494-4FB2-AA48-EF453ECB1581}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for PDF Settings CC 12.0.0.0 {F3306594-3BAA-4FA5-86C2-597278F5674E}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for ShareOnBehance_1.0.1_ShareOnBehance1-mul 1.0.1.0 {DE9B086C-67C4-4EB7-9786-9531AD8FEAE8}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for ShareOnBehance 1.0.0.0 {D6A3BEA9-7551-482D-B8E6-2ECCD627F557}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Required Common Fonts Installation 3.0.0.0 {9A49EAB8-6664-4164-9323-49CA9E9C5E0C}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Recommended Common Fonts Installation 3.0.0.0 {4574D206-D61E-4555-B146-A16B01985E0B}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Adobe Player for Embedding 3.4 3.4.0.0 {6E6ECFC9-FE3D-4314-B937-7E25A7862899}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Adobe Illustrator CC Support 17.0.0.0 {B099EDE9-C4BC-4E3A-B1F8-0321C84C4925}
    12/02/13 19:34:45:100 | [WARN] |  | OOBE | DE |  |  |  | 56532 | DW066: OS requirements not met for Adobe CSXS Infrastructure 4_4.0.1_AdobeCSXSInfrastructure4-mul 4.0.1.0 {9EEE0750-879F-4EA8-89F7-329C866B572B}
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 | BEGIN InstallOperationsQueue Unordered operations
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17es_MXLanguagePack 17.0.0.0 {0433D317-A88A-4BC9-BC25-6D297A310487}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Extensions 4_4.0.1_AdobeCSXSExtensions4-mul 4.0.1.0 {0F60BFC9-8764-4554-B222-2B55089F395D}:  with operation remove
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17it_ITLanguagePack 17.0.0.0 {164FB542-8085-4BEC-AF87-A198A5CA7FF2}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17ru_RULanguagePack 17.0.0.0 {16581935-1117-4B17-800C-85FCE3EA49F2}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17ja_JPLanguagePack 17.0.0.0 {18A87CA8-EA45-4D10-BBD7-42FE2A6148AB}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17uk_UALanguagePack 17.0.0.0 {23BCDDD3-E054-4E0F-A303-8E1D5BB8287D}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe CSXS Extensions 4 4.0.0.0 {2696829E-809E-4CCE-871F-AD92F85A9A66}:  with operation remove
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17hu_HULanguagePack 17.0.0.0 {27FF1962-7514-4C6A-A259-805511E417B8}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17cs_CZLanguagePack 17.0.0.0 {28711252-0CC2-4E0D-B7B0-F4F8301090E8}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Required Common Fonts Installation 3.0.0.0 {2A5D70AD-E4C3-4C3D-A18F-38B1CA51CE47}:  with operation remove
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17da_DKLanguagePack 17.0.0.0 {34038538-187C-4B31-A985-8624E50FC7A1}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Adobe Illustrator CC Core_AdobeIllustrator17de_DELanguagePack 17.0.0.0 {41CB5717-A1EF-4CD4-8350-529CD556F116}:  with operation none
    12/02/13 19:34:45:911 | [INFO] |  | OOBE | DE |  |  |  | 56532 |   Recommended Common Fonts Installation 3.0.0.0 {4574D206-D61E-4555-B146-A16B01985E0B}:  with operation remove
    12

Maybe you are looking for

  • After SAP GUI 7.10 installation IE7 does not work properly

    Hello, After SAP GUI 7.10 installation over WIn Server 2003 Ent. + SP2. When I try to open new link or window with right click in IE7 this process starts but cannot display anything in new window. At the same time link is correct. Could you please he

  • Dual Booting Windows and Arch (SOLVED!)

    Hello all, I'm having trouble getting a windows partition activated again. (Windows was on here for many years, then I installed arch on a separate partition.) Here is the layout of fdisk -l: Disk /dev/sda: 100.0 GB, 100030242816 bytes 255 heads, 63

  • Stack-A-Matic Broken in CS-4

    Using PhotoShop CS 4 on Windows XP.  Have updated via Adobe for current files.  Running CS 4 Version 11.01 Installed Dr. Brown's Services 2.02 and installer. When selecting Tools > Dr. Brown's Services 2.02 > Stack-A-Matic in bridge, the script will

  • Hide/show text boxes in report header

    Hi All, I'm trying to implement a request to have a tablix header frozen in excel. So, I'm placing it in the report header as text boxes. However, there are two different tablixes (a one per page) with two different headings. I'm trying to place thos

  • Slow file properties

    When I try to get the right mouse menu for a file on my desktop by selecting the file and holding the control key and clicking the file it take ages to display the menu.  Can anyone explain why this function has slowed down?  I am running Max OS 10.5