Splash screen on startup

How can I show a startup splash screen when my air app opens?
Preferably like a traditional splash screen, meaning just a
rectangular box without any window chrome, etc, containing a logo
image and some info text.
thanks

I'm not sure about any out of the box splash screen, but you
get the same functionality by:
1. Set <visible>false</visible> in -app.xml
2. Create an mxml component (SplashWin.mxml) with
mx:TitleWindow as the base class and add your controls to display
message.
3. add creationComplete event handler for WindowedApplication
4. In creationComplete event handler, create a SplashWin
popup like the following:
var splash:TitleWindow =
TitleWindow(PopUpManager.createPopUp(this, SplashWin, false));
5. In the SplashWin close handler
PopUpManager.removePopup(this) ;
and set
Application.application.visible = true;
You can use Timer class in SplashWin to close the Splash
screen automatically after certain milli secs
Hope that helps.
-Jeesmon

Similar Messages

  • Premiere Pro CC - Hangs on splash screen / slow startup

    Hey everyone,
    I recently asked another question about CC, but here's another one that's been annoying me since when I first subscribed.
    Premiere Pro, in fact, any CC product I use, takes forever to load on startup. When it loads the splash screen it hangs (with no message) for a few minutes at a time before launching the application. I've checked the process and the software is using a consistent amount of CPU. I can only assume it's stuck in some sort of loop while trying to communicate with the activation server, but that's just guesswork on my part. The problem is exactly the same as this user here demonstrates: http://youtu.be/TeE6FBCzrqI
    It's more annoying than anything, but for a subscription product it's rather bothersome. It's downright embarassing if a client comes over... and I wonder if it might be tied to some other compatibility issues I've been having.
    I've been using CS6 in the mean time, but have to deliver a session through CC now. If anyone's experienced similar problems I'd really appreciate hearing your solutions. Running Windows 7.
    Thank you!

    Hi Kevin,
    Thanks so much for your reply! I've reset the preferences in the past and did so again after your suggestion, but no luck. I even went into the AppData folder to remove the preferences sub-folder altogether. It still hangs and acts as "Not responding" for several minutes before startup.
    I wonder if there's any connection between this issue and a second issue I'm having with CC not being able to play ProRes files. http://forums.adobe.com/message/5845690#5845690
    In any case, I uninstalled every Adobe Product on my machine, ran the Adobe cleaner successfully, then re-installed Premiere Pro CC. Unfortunately, nothing seems to have changed.

  • Tecra M5 freezes at splash screen on startup (post Safeguard Easy Install)

    Since installing Safeguard Easy disk encryption, my M5 freezes at the initial Toshiba splash screen. Pressing Ctrl - Alt - Delete gets passed this and onto the Safeguard password screen.
    It seems there is a BIOS patch for the Satellite Pro series but I'm not seeing anything for the Tecra, or indeed Tecra M5.
    Any advice appreciated.

    This is because of Vista bios support for fastboot.
    There is a new version of utimaco released that fixes this bug.

  • Satellite P300 PSPCCE: I want to remove or chang splash screen on startup

    I have Satellite P300 PSPCCE laptop and want to remove or change splash screen on begin of booting laptop.
    Is there a way to do it? My Bios version is v3,40

    this is how it looks my BIOS setup (no options like quite boot, fast boot, etc.)
    Main
    * System Time
    * System Date
    * CPU Type
    * CPU Speed
    * HDD1 model name
    * HDD2 model name
    * Optical Disc driver
    * Power on display
    * Total Memory
    * System Bios version
    * Language
    Advanced
    * Legacy USB Support
    * Core Multri-Processing
    * Execute-Disable bit Capability
    * Intel(R) Virtualization Technology
    * Built-in LAN
    * Wake-up on keybord
    * Wake-up on LAN/Wireless LAN
    * Critical Battery Wake up
    * Pointing devices
    * Illumination LED
    * USB Sleep and charge
    * HDMI-CEC
    * Remote power on/off
    * SATA controler Mode
    Security
    * User password Is
    * Supervisor password is
    * Set user password
    * Set supervisor password
    * HDD1 password
    * Set HDD1 User password
    * HDD2 password
    * Set HDD2 User password
    Boot
    * HDD1
    * HDD2
    * CD/DVD
    * FDD
    * LAN
    Exit
    * Exite saving changes
    * Exit discarding changes
    * Load setup defaults
    * Discard changes
    * Save changes
    Which version of bios, are you having?

  • Splash screen with startup information

    Hi,
    I have build a splash screen but I am looking for a way to load some text over it to show the user what the application is doing while starting up.
    Anyone has a idea on how to?
    Eg

    Hi! I have some sample code for you
    Here it is the file SSCanvasBar.java:
    package CdList;
    import java.awt.*;
    public class SSCanvasBar extends Canvas{
         private int width, height ;
         private Color poz = new Color(42,54,164);
         private String str = "", strFile = "";
         private int k, val = 0;
         public SSCanvasBar(int width, int height)
              this.width = width ;
              this.height = 50 ;
              this.setPreferredSize(new Dimension(width,height)) ;
         public void updateBarAndStr(int k, String str)
              this.str = str ;
              this.k = k ;
              repaint();
         public void paint(Graphics g)
                   g.setColor(poz) ;
                   g.fillRect(0,0,width,height) ;
                   g.setColor(Color.black) ;
                   g.fillRect(0,30,width,7) ;
                   g.setColor(Color.yellow) ;
                   g.fillRect(0,30,val += k, 7 ) ;
                   g.drawString(str,3,20);
    Here it is the file SSCanvasPic.java:
    package CdList;
    import java.awt.*;
    public class SSCanvasPic extends Canvas{
         private final String fileSeparator = System.getProperty("file.separator");
         private final Image img = Toolkit.getDefaultToolkit().createImage(getClass().getResource("images/img.jpg"));
         private int picWidth, picHeight;
         public SSCanvasPic(int width, int height)
              picWidth = width ;
              picHeight = 300;
              this.setPreferredSize(new Dimension(picWidth,picHeight));
         public void paint(Graphics g)
                   g.drawImage ( img , 0 , 0 , picWidth , picHeight , this ) ;
    Here it is the file SplashScreen.java
    package CdList;
    import javax.swing.JWindow;
    import java.awt.Toolkit;
    import java.awt.Graphics;
    import java.awt.BorderLayout;
    public class SplashScreen extends JWindow{
         private final int SCREEN_WIDTH = Toolkit.getDefaultToolkit().getScreenSize().width;
         private final int SCREEN_HEIGHT = Toolkit.getDefaultToolkit().getScreenSize().height;
         private final int WIN_WIDTH = 500;
         private final int WIN_HEIGHT = 350;
         SSCanvasBar sscb = new SSCanvasBar(WIN_WIDTH,WIN_HEIGHT);
         SSCanvasPic sscp = new SSCanvasPic(WIN_WIDTH,WIN_HEIGHT);
         public SplashScreen()
              this.setSize(WIN_WIDTH,WIN_HEIGHT);
              this.setLocation( (SCREEN_WIDTH / 2) - ( WIN_WIDTH / 2 ) ,
                                    (SCREEN_HEIGHT / 2 ) - ( WIN_HEIGHT / 2 ) );
              this.setLayout(new BorderLayout());
              this.getContentPane().add(sscp,BorderLayout.NORTH);
              this.getContentPane().add(sscb,BorderLayout.CENTER);
         public void updateBar(int k, String str)
              sscb.updateBarAndStr(k,str);
         public void start()
              this.setVisible(true);
         public void close()
              sscb.updateBarAndStr(WIN_WIDTH,"Starting the program...");
              try{
                   Thread.sleep(1000);
              }catch(Exception e){}
              this.dispose();
    }I hope that you can understand the code.

  • [Bug?] DSC Executable shows 'VI Loading' splash screen by default

    [LV2009.SP1]
    I posted this thread here regarding DSC applications showing the VI Loading splash screen on startup of an executable:
    The workaround is, to add a name-value pair to the application's ini file: In your ini file, you can include the line: ShowLoadProgressDialog="False"
    I would like to file a CAR on this however, my local AE said:
    "[RE: CAR] I think showing the VI Loading screen by default is behaviour by design - ie, to keep the user updated as to what is happening, as I suppose many of the complile applications are not commercial in the same way that yours seem to be. However, the option to turn it off is there, for applications such as yours."
    So I wanted to see what others online think about this?
    And whether the general opinion is the same as mine, which is any application NOT show the VI Loading screen by default (it looks very unprofessional) DSC or otherwise.
    Cheers
    -JG
    Certified LabVIEW Architect * LabVIEW Champion

    Sounds like a bug to me.
    Another thing you can try is to have your top-level VI of your executable be nothing more than a simple VI that loads the main VI or VIs using Open VI Reference. I believe VIs opened in this manner will not ever show this dialog. This workaround wouldn't rely on an ini setting.
    Jarrod S.
    National Instruments

  • Adobe Photoshop CS3 Extended freezes on startup under Windows 7 Ultimate 64-bit - No splash screen

    I installed my licensed copy of Adobe Photoshop CS3 Extended today as part of my install a bunch of software after a reinstall of Windows (due to viruses).  I did a completely fresh install of Windows 7 Ultimate 64-bit.  I've used Photoshop CS3 Extended for quite a while now so I know what to expect on startup but it was previously installed under Windows XP Professional (32-bit). Figured I would give Windows 7 a chance this time around.
    Google searches aren't turning up anything.  When I attempt to start the application, I get a window with the title "Adobe Photoshop CS3" (no "Extended" - I seem to recall the title changes later) and the toolbar appears.  However, no splash screen appears and no Product Activation wizard appears - the application simply freezes on an empty frame and a toolbar.  I've tried running Photoshop as Administrator (right-click, "Run As Administrator"), but nothing changed there.  I tried uninstalling and reinstalling.  I tried upgrading to CS3 10.0.1.  Nothing works.  The application simply freezes before it gets anywhere.
    I tried calling Adobe Support since this technically falls under installation issues but their phone support systems are down today.  Go figure.
    Edit:  I hooked into Photoshop with the Visual Studio debugger and every single thread is executing some variation of WaitForSingleObject() or WaitForMultipleObjects().  The main thread is "executing" somewhere in AdobeLM_libFNP.dll (at address 09619d81 - if I had debugging symbols for CS3, I could provide a function).  There are nine threads "running" at the point the freeze occurs - but all of them are technically suspended due to the functions they are executing - and one thread is in a suspended state.

    Log Name:      Application
    Source:        Application Hang
    Date:          7/17/2010 6:16:25 PM
    Event ID:      1002
    Task Category: (101)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Description:
    The program Photoshop.exe version 10.0.1.0 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
    Process ID: d0c
    Start Time: 01cb2616be79e36f
    Termination Time: 2
    Application Path: C:\Program Files (x86)\Adobe\Adobe Photoshop CS3\Photoshop.exe
    Report Id: 06f5fbff-920a-11df-9d69-001fd023417e
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Hang" />
        <EventID Qualifiers="0">1002</EventID>
        <Level>2</Level>
        <Task>101</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-07-18T01:16:25.000000000Z" />
        <EventRecordID>1615</EventRecordID>
        <Channel>Application</Channel>
        <Security />
      </System>
      <EventData>
        <Data>Photoshop.exe</Data>
        <Data>10.0.1.0</Data>
        <Data>d0c</Data>
        <Data>01cb2616be79e36f</Data>
        <Data>2</Data>
        <Data>C:\Program Files (x86)\Adobe\Adobe Photoshop CS3\Photoshop.exe</Data>
        <Data>06f5fbff-920a-11df-9d69-001fd023417e</Data>
        <Binary>430072006F00730073002D0074006800720065006100640000000000</Binary>
      </EventData>
    </Event>
    And, according to the Event Viewer, the "Binary" data translates to a zero-terminated Unicode string of "Cross-thread".
    My Visual Studio analysis was far more informative.  All threads are hung inside of WaitForSingleObject() and WaitForMultipleObjects() calls and the DLL in question appears to be FlexNet-related.  I did forget to mention that I also even manually started the FlexNet service in case, for some strange reason, Photoshop was waiting for it to start.  That also did not work.
    (And there is nothing in the Action Center control panel either despite the message saying there might be more information there.)
    Edit:  The timestamp above might be a little odd-looking.  I didn't originally see anything in Event Viewer until I clicked the first button to send an Error Report.  Mostly I just skipped that part of killing a process.

  • BLACK SCREEN startup with 3 beeps, FREEZES when unplugged, Splash screen freeze, HEAT-UP TO BOOT

    BLACK SCREEN startup with 3 beeps, FREEZES when power unplugged, IF IT BOOTS splash screen freezes, OVERHEATING REQUIRED TO BOOT - 0x7B, Event 41 kernel-powe
    Issue: One day I unplug the power, the screen freezes and I get frozen music sound. I shut down, start up, I get 3 beeps (1 short 2 long), which indicates a Video failure according to the Thinkpad Laptop beep code list.
    How I solve the issue day-to-day: I turn the heat up - I disconnect the battery and hard drive and plug in the power then turn it on. I will wait until the underneath is searing hot with a blanket blocking the fan's flow of air, I mean way hot because any cooler and it won't start. Plug stuff back in, Hard drive first, Battery second, turn off with power button hold, unplug power, replug power.
    I turn it on, no beeps, it goes past the first Lenovo screen, then gives me a prompt because it "didn't shut down properly" and continue regular startup. What happens next is the Windows logo appears, and just as the animated windows logo starts to move (you see 2 small colored dots on the screen), it freezes. I see this every time, I know naturally that it means that the laptop is still too hot to go past that point, so I shut it down and try again. After about 5 - 10 tries it will go past the splash screen and into the login area, then it's all fine.
    Sometimes when I unplug the power from the back by accident it will freeze. By accident I mean that the connector wiggles it's self out easily. This unplug freezing thing started happening about 1 week before the 3 beep black screen problem started rolling, so I'm putting 2 together.
    Errors:
    I got a Blue Screen of Death the first time I started it up with the overheating ritual, but I never got it since. It was 0X7B. I ended up changing a setting in BIOS from AHCI to Compatibility Mode, and I passed everything without the BSOD again. I have always had it on AHCI.
    I got another Blue Screen of Death about a week ago, but came as it was on already and I had been using it, and said something about disabling Cache or Shadowing in BIOS. I never got it since.
    BIOS:
    Also, the time was set to 1988 or something in the BIOS.
    Event Viewer events found:
    1. Kernel-Power, Summary page.
    There are critical events for a few things like Kernel-Power, Event ID 41, Task Category (63). There are 19 of them, each day 1 or 2 of them but mostly 1, so this maybe corresponds to my daily ritual.
    "The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly."
    2. Kernel-Processor-Power - Event ID 37, task category (7)
    "The speed of processor 1 in group 0 is being limited by system firmware. The processor has been in this reduced performance state for 71 seconds since the last report."
    3. LMS - HCMI - Event ID 2, Task Category: none
    "LMS Service cannot connect to HECI driver".
    I came across a very sluggish performing control panel for Nvidia before and after this problem, and I tried installing a newer version, which I had to jump through a few hoops to do, like uninstalling first, not just updating. At first it said that the driver wasnt made for the system, or that it wasnt compatible or something, which was wrong. I made it work somehow, but it was still sluggish after install. I rolled it back to an earlier driver, and now it works fine oddly. No sluggish performance / slight freeze window thing going on. No problem at all.
         MSCONFIG.exe, Boot Advanced Options: I have tried twice to change this 1 setting, check box "Number of processors" and change to 2 processors, because I do have 2 processors. I have been able to change this in the past, but it does not save the setting now, and I believe this option was selected before I started having problems, and settings did not disappear then.
    What could this be. The small round BIOS battery? The video card like everyone presumes? (I.E. the entire motherboard replacement), Software? The wiggly power input area? (Not enough power getting in?), Firmware of some sort? The BIOS software being wrong?
    SYSTEM INFO:
    Thinkpad T61p 6457-A24, Intel core 2 duo (T7700) 2.4GHz, Intel 120GB SSD 6Gb/s, NVIDIA Quadro FX 570M (256 MB),
    Windows 7 64 bit Home Premium (6.1, Build 7601), BIOS Ver 1.00PARTTBLx
    Display: 1680 x 1050 (32 bit 60 Hz), Integrated RAMDAC, Main driver: nvd3dumx.dll,nvwgf2umx,nvwgf2,
    Version 8.17.12.9688, Date 5/31/2012, DDI version 10, Driver model WDDM 1.1

    T61-Elwood wrote:
    Laptops of all Brands using Nvidia GPUsmade  from 2007-2008  are faulty.
    You wont get good Nvidia ones on Ebay/forumes anywhere.
    I'd beg to differ on both accounts.
    *61 series nVidia-based ThinkPads from late January through July of 2008 are a 50/50 shot, since the old chips were mixed with the new ones. Any machine built in August and later can be deemed "safe".
    As for the forums (I don't do feebay) there are people who sell genuine, properly-tested planars. However, these do not come at bargain basement prices, and with a good reason if I may add.
    Good luck.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • How do i disable the startup splash screen in elements 9

    How do i disable the startup splash screen in elements 9

    Try making a direct shortcut for the Organizer and Editor. Make sure you have the correct file path as there is more than one exe file. You can then launch the programs directly from the desktop bypassing the welcome screen. This is generally better as the welcome screen leaves background processes running.
    On Windows, Right click anywhere on the desktop and select New >> Shortcut
    Then click the browse button and navigate to:
    "C:\Program Files\Adobe\Elements 9 Organizer\PhotoshopElementsOrganizer.exe"
    Then click Next; then click Finish
    Then make a direct shortcut for the Editor in a similar manner.
    On Windows, Right click anywhere on the desktop and select New >> Shortcut
    Then click the browse button and navigate to:
    "C:\Program Files\Adobe\Photoshop Elements 9\PhotoshopElementsEditor.exe"
    Then click Next; then click Finish
    N.B. on 64 bit systems navigate to Program Files (x86)

  • 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

  • A2109AF tablet is only displaying the startup splash screen

    so as i was working today as i had my tablet plugged up to the wall charger to charge and at a point several hours later i hear the startup sound so i grab the tablet and look at it and it is displaying only the startup splash screen, i have already tried to do a hard reboot with no luck so i wiped it and when i press the power button to turn it on it is still doing the same thing... any ideas?

    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...

  • T450s startup takes 35 seconds before showing splash screen. (11 sec wake-up)

    The follwing are my problems:1. When starting up the machine, it takes about 35 seconds before the first screen activity appears (Lenovo splash screen). After that it boots quite normal.
    2. When waking out of sleep mode it takes 11 seconds before I see the power led stopping to "breath" and the screen wakes up.
    It feels like this is a hardware/bios related issue, as (so far I know) hdd/ssd is only accessed after the bios has loaded and has finished its hardware checks. When sticking in a bootable usb it only starts flickering after the bios had loaded on screen.
    Question:
    Does anyone has an idea why my laptop is waiting so long to boot or to wake up? I don't mind waiting a bit, but waiting for 35 seconds + the normal boot time is really annoying. Specially with the fact that the laptop doesn't show any sign of live for 35 seconds after briefly lighting up the keyboard backlights. The wake-up delay is also very annoying since even my 7 year old BSOD laptop wakes-up faster, and I'm using sleep mode a lot.
    Some origins that I'm thinking about:
    - Hardware check during initial hardware startup does not yet recognize a dedicated GPU card. (POST: Power On Self Test)
    - I don't think this is a problem with my software since the problems occurs before reading any media.
    Things I tryed already:
    - Reset bios.
    - Start in legacy mode.
    - Bios update
    - rebuilding MBR (although I don't expect this to be the problem.)
    - Refreshing windows installation although I don't expect this to be the problem.)
    This problem was already at the beginning (with origenal hardware):
    From the first time I started the laptop (so even with the HDD) I noticed it took quite long to start. I remember pressing the ON/OFF button multiple times and thinking I did something wrong, when suddenly the "Lenovo" splash screen appeared.
    I hope someone can help me!

    My problems have been solved! An engineer contacted me that they have recieved a spare mainboard and they wanted to make an appointment. I gave them the adress where I worked the next day since I'm very mobile, and the next day an engineer came by. He seemed like a skilled IBM engineer and tested my machine and came to the same conclusion as me. He then did a few tests to see if the problem was caused by something else then the mainboard but ended by replacing my mainboard with good care. After the replacement the the boot and wake-up time was normal like it should be. I'm very pleased by the service Lenovo ThinkPad has given me. I need to add that when I called for support I got someone on the line that could not really understand me, neighter dutch or english. But that was also duo a bad connection it seemed.. But after that call I did not really expect this would come to a good end. I was then really suppriced that 5 day's later a dutch engineer manager called me to make a appointment. 

  • Z87-G45 BIOS Splash screen stays during windows startup animation

    Hello all,
    this is my first post on these forums and I haven't found any similar problems like mine so here it is:
    when I power on the PC the normal BIOS splash screen comes up,
    then it disappears and normally the windows (I'm running  windows 8 Pro x64) startup animation should come up,
    but with me the BIOS splash screen just returns and the windows startup circle just comes ontop of it,
    like the normal startup animation but instead of a black background I have the BIOS splash screenas background and the windows logo itself also doesn't show,
    just the loading circle...
    My PC starts up pretty fast so its not that big of a deal but I just wondered if there was a fix
    BTW I'm running on a MSI Z87-G45 Gaming with the latest BIOS version (1.3) and windows boots of an SSD

    seems to be the normal way of booting. I've also just installed Win8 Pro in UEFI-Mode (not Legacy-UEFI!), and what I've heard from a friend that uses an ASUS board, is that this behavior indicates you are indeed booting in UEFI-Mode -> so no worries!

  • Audition 2.0 Startup Issues/Frozen at Splash Screen

    Had a production worker come to me today noting that 2.0 was not stating up.
    It is freezing on the splash screen.
    Process shows Adobe at 50% and Sys Idle at 50%.
    I can start and run any other program with no issues.
    I uninstalled and reinstalled only to return to the same issue.
    I also installed Audtion 1.5 and it runs fine.
    Has anyone experianced anything similar or does anyone perhaps have an idea where I might start to look in order to resolve this?
    It's run problem free for I don't know how long, one year plus.
    I did have a NexGen issue today with the sound card, but donot see that as being linked in anyway.
    Though I suppose it is curious that both picked today to fail.
    Same sound card as before, nothing physical was swapped out, just reinstalled the driver.

    Maybe try deleting the presets/preferences (after backing them up)
    (usually found at C:\Documents and Settings\[username]\Application Data\Adobe\Audition\2.0

  • Tecra M3 - Stuck at Toshiba BIOS Splash Screen

    Not sure what to do here with this one...
    Bit of history... we bought my niece a used laptop for surfing/movies which worked fine when I had it a few weeks setting it up and such, she had it a week and it's now dead. Some days it works, some days won't even turn on. So, after much work determined it to be a motherboard issue, and since it was a $200 DELL, we optedto buy another laptop.
    I grabbed a used Tecra M3, been playing with it all week, games, surfing, you name it, seemed a gtood solid performer. I give it to her, she goes upstairs, plugs it in, powers on and just sits at the splash screen.
    Two nephews have no issues with theirs, wondering if possible the power outlet surging and killing the systems? She's 16, so (hopefully) knows how to handle a laptop carefully.
    Regardless... can't afford another dead laptop. Stuck at startup BIOS splash screen, won't go beyond that. Won't let me into the BIOS, and if I hit too many keeps too many times, laptop just beeps per keystroke.
    Any advice?
    Solved!
    Go to Solution.

    Well, not much of a support forum... 2nd posting and neither issue I had had any responses at all.
    In case someone see's this because having the same issue, the hard drive was very loose, barely making contact and fell off when I touched it. Pushed it all the way back in and works fine. Pegs on the panel designed to prevent the drive from becomming lose, not very good, still allowed the drive enough wiggle room to shake loose.

Maybe you are looking for

  • How to remove the battery on the Vado HD

    I am pulling the slot out but it won't come out. Is there some kind of tool that came in the box? The main reason I want to take out the battery is because I plugged the Vado to my t.v. using the hdmi connector and now the screen on the vado is white

  • How do I connet to the internet on my MacBook Pro?

    This is my first Mac, and I don't understand how to do this at all. So, if someone could give me step-by-step instructions, that would be perfect.

  • Exchange profile parameters missing

    Hi All, To be able to use CMS for repository and directory objects the following parameters must be set to true in the exchange profile com.sap.aii.ibrep.core.cms.enableClTransport=true com.sap.aii.ibrep.core.cms.enableTransportWizard=true com.sap.ai

  • Computer shuts off when I connect my IPOD Shuffle

    I just got a new computer and I'm trying to use my IPOD shuffle. I've installed the software and have downloaded updates but when I plug my IPOD into the USB port I get a whole blue page of error messages and the thing shuts down. I am running window

  • Slow screen redraw when I click playhead and zoom out in Logic 9 upgrade

    The arrange mode is slow to redraw when I click the playhead in the ruler area and drag up (zoom out). The slider thingy at the bottom of the screen works totally fast like normal. I just upgraded to Logic 9 (v 9.1.1). Might this be a known problem o