Splash Screen Inconsistent between CLI and JAR specification

Unlike just about any other java API, the SplashScreen API treats jar-launched and command-line-launched invocations of the same code differently
According to [the Splash Screen Tutorial|http://download.oracle.com/javase/tutorial/uiswing/misc/splashscreen.html]
a command-line invocation of a Splash Screen application would take the form
java -splash:images/splash.gif SplashDemo
whereas a jar-invocation would allow the splash screen to be specified in the jar manifest with the notation
SplashScreen-Image: images/splash.gif
This doesn't APPEAR to be inconsistent but the implementation is in fact not consistent.
In the jar-manifest approach the splash screen image is searched relative to the classpath implied by the JAR whereas the command-line version is searched relative to the current working directory. The documentation fails to explain this leading to lots of headscratching when, for example, a Splash Screen works right in a runnable jar but not from an IDE such as Eclipse. If, instead, the image was loaded relative to the classpath (getResource()) then the jar and the command line would work the same.
At the very least, there should be an additional command line switch supporting this classpath-based loading functionality from the command line or failing that, better documentation of what is going on. Neither the tutorial nor the javadoc explains the CLI syntax sufficiently. I spent several hours of headscratching trying to understand this and I'm by no means a newbie.
Edited by: user549053 on Nov 10, 2011 4:39 PM

user549053 wrote:
The only thing I can wonder is: why do you want command line invocation at all?Simple. In the field, I only want jar invocation. In development, I want invocation in Eclipse - which, under the covers uses command-line invocation.Good point, but then I wonder why you care that the splash screen works or doesn't work in Eclipse. As long as it works in the field. In fact, I would probably build in a way to disable the splash screen when running from the IDE myself - apparently it isn't even needed to do any work to make that happen ;)
>
Complaining about documentation here isn't going to do you much good.There's lots of confusion about this on the internet. Just google it. I didn't find anything that gave me the answer, just references to Oracle's documentation which doesn't answer the confusion. That's now been remedied, though, by me:
http://stackoverflow.com/questions/6906267/debug-splashscreen-from-eclipse-without-generating-the-jar/8087881#8087881
I thank you for your contribution. It is exactly this personal effort that keeps the Java community going...
>
Oracle really should do something about this.... because Oracle certainly will not. Again: complaining in this forum does nothing. Because like StackOverflow this is a user to user forum, not an Oracle tech support site. It won't be read and it won't end up on a todo list. Sad but true.

Similar Messages

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

  • Inconsistency between tbtco and tbtcs

    Hello guys,
    we have a big problem after our HWU upgrade.
    We have copied the content of tbtco into a new table tbtco_copy before the upgrade to save all the job entries.
    After this we have deleted the contant of tbtco. So we had no scheduled jobs for the HWU
    After the HWU we have copied back the content of tbtco_copy into tbtco.
    But now we have a inconsistency between tbtco and tbtcs. This means that all planed and released jobs are not starting (delay goes up).
    How we can start this jobs << Removed >>
    Br
    Christian
    Edited by: Rob Burbank on Apr 19, 2009 4:23 PM

    USer TR: SM65

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

  • 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

  • Screen flashes between desktop and blue windows 8.1

    Just spent time with windows support but no solution yet. After logging in  laptop screen flashes between desktop and Blue screen  - Windows 8.1.  This does not happen in Safe Mode The windows support person was trying to get me to update drivers but all the install options on HP site don't work in Safe Mode.   Please help.

    Just spent time with windows support but no solution yet. After logging in  laptop screen flashes between desktop and Blue screen  - Windows 8.1.  This does not happen in Safe Mode The windows support person was trying to get me to update drivers but all the install options on HP site don't work in Safe Mode.   Please help.

  • Inconsistency between ATP and ASCP

    Thanks for looking at this message. Bit lengthy but will be interesting :-)
    In our implementation we use ATP based on planning output and its a constrained ASCP plan (ECC) .
    Assuming that sale sorders are available in the system and they have been entered say last month/ or even few months before with request date as the sale order entry date . We did nt have onhand at the time due to which the promise dates have been Sep-09.
    Assume that we have made a receipt from supplier/or there is PO in receiving (considered as available date of today by ATP) . In this situation in case a new sales order is entered today with request date of today provided the onhand or expected receipt today is more than sales order qty , the promise date upon sales order entry is today. We do OM loopback and send back sch ship date from ASCP which gives correct dates (Sep or Oct based on lead times). But issue is in the promise date .
    Issue 1: customer is questioning while there are so many existing sales orders which are already in arrears and their request dates are all in past months why does a new sales order get a promise date of today?
    When ASCP runs overnight it plans based on request date and the onhand/exp receipt is pegged to earliest sales order and not the new one put in today(which is fine and as expected) , but due to the mismatch between ATP and ASCP always there is going to be mismatch in meeting promise date and Sales performance measures go for a task.
    Also there all the customers are sent Order Acknowledgement (emailed upon booking order) based on the wrong promise date which causes lot of issues in explaining to each customer.
    Issue 2:lets say onhand is 2 and there are 2 sales order lines one for qty 8 (req date 21-jul) and other for qty 2 (req date 23-jul) . I schedule order line 8 (req date 21-jul) first then ATP promises line after LT (say Sep-09) and the qty 2 line is promised today but when ASCP is scheduling it has ability to see request date due to which it can peg 2 onhand to earlier request date and then wait for new supply till Sep-09. The one with later request date will show ship date in Sep-09.
    Have attached the screen shots explaining the issue 1 and 2
    Best regards
    Vinay

    Hi Vinayak
    Both of your observations are correct. As I managed ATP development for several years, let me help explain these things to you:
    1. For 1st issue, where a new incoming sales order can get better date than earlier promised sales order, please understand that ATP is based on supply/demand picture at a point in time when SO was originally processed. If supply/demand picture has changed significantly, you need to use a tool like Oracle Backlog WB to manage and re-process currently scheduled SO to re-assess where they should be promised. Once Sales Order is promised, ATP uses schedule ship date to see when material is needed and uses a supply closes to ship date (JIT). If earlier supplies are available, they're up for grabs by new SO.
    Thus, the behavior is working as designed and you need to develop your business process to ensure that backlog management is practiced on a regular basis to avoid such issues.
    2. For 2nd issue where you see that ATP isn't using supply to satisfy smaller qty sales order, please understand that ATP is "First-come-First-Serve" and it is working on 1 specific order at a time. When initial order of qty=8 came in, it had no way to know what lies in future or if another SO with qty=2 will come later. Compare this with ASCP which is working a complete set of supplies and demands and can analyze this picture in totality.
    I'm sure you'll like your ATP request to come back in few seconds (or may be a min or so) and not take a few hours while you enjoy the hourglass on your screen. No surprise that ASCP plan run takes few hours since it needs to go thru such hoops and try to optimize across these ideas while ATP is a quick answer as what can be done for this in-coming demand considering everything else in the system is frozen.
    Please note ATP and ASCP plan serve very different purpose and business process needs to be enahnced to take advantage of best of both these tools.
    Please feel free to contact me directly for any further issues in this respect.
    Regards
    Navneet Goel
    [email protected]

  • Screen sharing between server and iMac appears to connect but no window opens

    We have been trying to screen share between a server and iMac. Both are running Snow Leopard 10.6.7. It seems like we connect using the share screen app because we don't get any error messages after inputing the username and password but no window opens for the server we are connected to. When I look under the windows tab I can see a checkmark next to our server name and trying 'bring all to front' doesn't do anything. The video card on the server died and was removed by our tech support who said we could still access the computer via screen sharing. Would the server not having a video card be the cause of our problem?
    Thanks.

    Hi,
    A Bit for other reading this thread.
    To change the Login port for any AIM based name you have to obviously Log out first and then Change the port (SSL might need to be selected first) and then Press Enter to "Set" the port.
    This use of the Enter key is the bit that is different to earlier versions of iChat.
    For Gary,
    Which Thomson-Alcatel device do you have ?
    Thomson-Alcatel Speedtouches used to work well when the firmware that ran them was at Version 4.2.5 or less.
    At least at this level you could access the device via Terminal using Telnet and then access the Command Line Interface (CLI) and "Unbind" SIP from port 5060
    Later versions of their Firmware did not allow for a full Unbind of SIP and Video and Audio chats could only be partially successful (about 15 buddies out a list of 50
    Of course using UPnP to open ports for iChat 4 helps with the Screen Sharing as the process is an Screen Share with an Audio Chat along side and both have to work/connect.
    I am surprised to hear that in iChat 5 that Screen Sharing is not working when Video and Audio chats are.
    For this reason I would ask how the ports have been opened in the Thomson device ?
    After that I would keen to know if the Thomson Device or the Time Capsule is doing DHCP to the LAN ?
    (Share an IP on the Time capsule is to Enable DHCP)
    I am not sure how AT&T expect anyone to use their site to gain help or see what they currently offer when you have to type in a phone number or area (ZIP code).
    I did enter the example number and got to this set of pages http://www.att.com/esupport/main.jsp?cv=801#
    I see no reference to any Thomson-Alcatel device.
    8:15 PM Monday; February 15, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Screen flashing between grey and background, dock not showing

    I don't know how this happened, but I recently upgraded to Mountain Lion: as soon as I'd logged in, the Dock dissapeared, and the background started flashing between grey and my background. The only way for me to open anything is through Spotlight.
    Whenever I try to make an app fullscreen, it glitches halfway through: half the screen is grey, and half the screen flashing. Opening Notification Centre flashes between grey and open and background and closed. Mission Control won't open, and CMD-tab fails to do anything.
    Upon inspection in Activity Monitor, there is an abnormal amount of processes named "com.apple.dock.extra": closing them does nothing. One process exists and then doesn't in time to the background flash, and the amount of "dock.extra"s grows and shrinks from 3 to 10.
    Can anyone help me with this strange problem?

    Open Spotlight and type Terminal. Select the Terminal application.
    Type 'sudo rm -rf ~/Library/Dock'. Ensure it looks exactly like that (minus the quotes) and hit enter. Type your password if you have one. Then, type the command 'killall Dock' and hit enter. The dock will terminate and restart, and it will hopefully be returned to its previous state.

  • Screen sharing between Lion and Snow Leopard

    Does anyone know whether it is possible to do Screen Sharing between two Macs where one is using lion and the other Snow Leopard?  I use this feature to help my father with his computer problems but am wary about upgrading my machine to Lion without an assurance that it will work across OS's.  He is in Europe where I believe Lion a) may not yet have been released and b) think it unlikely anyway that I will be able to encourage him to change something he is already finding difficult (aged 84) having never had to use a computer prior to 3 years ago at my behest.

    after reading your post, i thought i'd do the same on my lion machine -- toggle screen sharing off and back on -- only to discover that it was *already* off, although it was positively enabled on the same machine when running snow leopard.
    i never disabled it, as i use the feature quite regularly, which is why it never occurred to me to check the sharing settings, because i always leave screen sharing on. but apparently installing lion either caused the setting to revert, or it's possible lion simply installs with screen-sharing off by default. (who knows.)
    regardless -- a simple fix.
    thanks.

  • Is it possible to use screen sharing between lion and mountain lion

    I could always use screen sharing between my 2010 macbook and my 2007 macmini,both with lion.But now since I upgraded the macbook to mountain loin it doesn't work.The macmini did at first show up on the macbook finder sidebar under sharing like it always had done but as soon as I tried to connect the sharing option disappeared and won't come back.The macmini can still see the macbook however,its on the finder there.But when I try to connect from the mini to the macbook I get an error message that says something like "server error" and contact administrator(that's me!)I can't upgrade the mini to mountain lion as it's too old.So it this an incompatibility between the two operating systems or is it something else?
    I also tried to do it with BackTo My Mac,enabled through icloud on both computers but no luck,not even showing the Back to my Mac icon on either Finder sidebar like it's supposed to.When I did it through system preferences-icloud,it said this was successfully enabled but it just doesn't work at all.
    Cross about this since I always use the macbook to control the macmini which is plugged into a flat screen tv and it's much easier than fiddling around with a mouse and keyboard.

    I can screen share my wife's Lion iMac using Mountain Lion and the reverse is true. If the computer is not showing up to be selected under shard on the left column of the finder it is probable a connection issue. I would check my home network, restart the the macs and toggle the sharded settings and energy saving settings like wake for network activity. Be sure and set up iCloud on both your macs and turn on UPnP if you have a router for your home network serving up NAT IP Numbers. UPnG will make the port forwarding enteries in you router to allow you macs to connect behind the firewall created by nat addressing.
    I am currently having a problem with back to my mac. S
    creen shares great the the Lion iMac but Mountain Lion to Mountain on one computer will not connect if the computer is sleeping. It lights the screen on the sleeping computer but never shows on the computer requesting to share. File share always workd. If I wake the computere before I attemp the connection, screen share work as it should. If I try to screen share while the second computer is sleeping, It will never work again until I restart the iMac.

  • No screen sharing between Leopard and Snow Leopard

    A buddy just bought a new 27 inch iMac after the screen on his old iMac (running Leopard) died. We had no problems screen sharing when he was using the old Mac, but with the new iMac running Snow Leopard, he can screen share with me but I can't screen share with him....at least, iChat says I am sharing my screen with him, but he can't see anything. It must be an issue with Snow Leopard, since when he opened iChat on his MacBook running 10.5, he was immediately able to view my screen.
    Any thoughts, anyone? Cheers!!!

    Hi,
    A Bit for other reading this thread.
    To change the Login port for any AIM based name you have to obviously Log out first and then Change the port (SSL might need to be selected first) and then Press Enter to "Set" the port.
    This use of the Enter key is the bit that is different to earlier versions of iChat.
    For Gary,
    Which Thomson-Alcatel device do you have ?
    Thomson-Alcatel Speedtouches used to work well when the firmware that ran them was at Version 4.2.5 or less.
    At least at this level you could access the device via Terminal using Telnet and then access the Command Line Interface (CLI) and "Unbind" SIP from port 5060
    Later versions of their Firmware did not allow for a full Unbind of SIP and Video and Audio chats could only be partially successful (about 15 buddies out a list of 50
    Of course using UPnP to open ports for iChat 4 helps with the Screen Sharing as the process is an Screen Share with an Audio Chat along side and both have to work/connect.
    I am surprised to hear that in iChat 5 that Screen Sharing is not working when Video and Audio chats are.
    For this reason I would ask how the ports have been opened in the Thomson device ?
    After that I would keen to know if the Thomson Device or the Time Capsule is doing DHCP to the LAN ?
    (Share an IP on the Time capsule is to Enable DHCP)
    I am not sure how AT&T expect anyone to use their site to gain help or see what they currently offer when you have to type in a phone number or area (ZIP code).
    I did enter the example number and got to this set of pages http://www.att.com/esupport/main.jsp?cv=801#
    I see no reference to any Thomson-Alcatel device.
    8:15 PM Monday; February 15, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Windows 8.1 screen bounces between primary and secondary monitors

    I have a Lenovo T530 laptop with a docking station and a IBM monitor L200P attached to it.
    Up until yesterday, this configuration was running Windows 8 Pro with no issues.
    However today, after I installed the Windows 8.1 upgrade, I started having problems with the screen bouncing between the primary and secondary monitors without my intervention. The problem happens very regularly, regardless of whether I have selected the laptop as primary monitor or the IBM monitor attached to the docking station.
    I verified that the problem does not happen with Windows 7 and Windows 8 installation and only starts appearing after the Windows 8.1 upgrade is applied.
    Does anybody have similar problems
    Thank you in advance.

    O''philipp [[#answer-697652|said]]''
    <blockquote>
    another thing you could try is this: enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''layout.css.devPixelsPerPx'''.
    double-click it and change its value to '''1.2''' (or any other zoom factor that fits your purpose: 1.0 relates to 100%, 1.2 equals 120% and so on; -1.0 is the default value and will adhere to the system settings).
    </blockquote>
    Okay, I tried it, set it to 1.2 and even more stuff got blurry and fuzzy. Besides everything in the FF menu bar everything in the header on youtube and a few other pages did it too. It did make the pages fill the actual page better, but the blur is worse than this prob so I set it back to -1.0.
    Any other ideas?

  • Splash screen  show only once and never again

    I have the followign line in jnlp file:
    <icon kind="shortcut" href="dtopIcon1.gif" />
    <icon kind="splash" width="550" height="300" href="splash.JPEG" />
    The images are in the root directory of the app.
    When download link is clicked on the web page, I saw the splash screen come up only once. It never shows again. Application downloads and creates an icon on desktop. The desktop icon was not showing up but started showing, I don't know how. But the splash screen never shows. Any ideas?
    Thanks for help!!!
    ~ Tushar
    Edited by: tkale on Aug 9, 2009 2:20 PM

    I would suggest you check the entire launch in JaNeLA. If fixing whatever errors it reports does not fix the problem, post your JNLP file(s) here (complete, not snippets).

Maybe you are looking for

  • Cannot make a purchase!

    Im going through the education store, using my instant credit on my barclayscard, which I was approved for, and cannot make a purchase. I have made sure the fields are filled out a few times now but after the processing screen, I get redirected back

  • Can't log on to my admin account.

    Hey there! I just got the MacBook Pro retina. I was setting it up and connected it to my iCloud account and all is going well. I decided to start using a new email address, so I switched to the new email on my iCloud account. Then I log out and when

  • Delete an app

    Hi, I want to delete an App on my Iphone 4S. I tried the small cross at the left corner, but it is still there. On Itunes, I cannot delete it either. I'd like to precise that it is not a built-in App for Apple, but an App I downloaded myself. You'll

  • Adobe Encoder crash with a r6025 pure virtual function since last update and Aero enabled

    Adobe Encoder crash with a r6025 pure virtual function call when I export most of my sequences (mostly multicam sequences) to it when Aero is enabled. Everything was working fine before the 7.1 update. Any solution for that?

  • Checking operating system version: must be 5.1, 5.2. actual 6.1

    Hi, All I am installing 10g developer suite in my laptop, once I click on setup file I am getting a message as "*checking operating system version: must be 5.1, 5.2. actual 6.1 failed*". System configuration is: OS : Windows 7 64 bit Home Basis RAM :