Advaced Cloning using Application Manager

Hello All,
I am doing advanced cloning of Oracle Apps instance 11.5.10.2 on Linux R-4.
I am using Application Manger (web based) utility.
I am through with "Task 1: Establish Cloning Parameters"
but now I am stuck at "Task 2: Prepare the Source System"
Following are detail which i can see for Task 2.
Database Tier
Execute the following commands to prepare the source system database tier for cloning:
Host apps
Log on to host apps as the oravis user and type the following commands:
cd /home/oravis/visdb/9.2.0/appsutil/scripts/VIS_apps
perl adpreclone.pl pwd=<apps-pwd> jobid=2_VIS
Application Tier
Click the "Prepare Source System" button to begin source system preparation on the Application tier.
You must prepare the source system Database tier before preparing the Application tier.
Prepare Source System
so I already executed the linux command which given above and output for this execution as follows.
[root@apps ~]# su - oravis
[oravis@apps ~]$ cd /home
[oravis@apps home]$ cd oravis/visdb/9.2.0/appsutil/scripts/VIS_apps/
[oravis@apps VIS_apps]$ perl adpreclone.pl pwd=clone1 jobid=2_VIS
Running Rapid Clone with command...
/home/oravis/visdb/9.2.0/Apache/perl/bin/perl /home/oravis/visdb/9.2.0/a ppsutil/bin/adclone.pl java=/home/oravis/visdb/9.2.0/jre/1.4.2 mode=oamstage sta ge=/home/oravis/visdb/9.2.0/appsutil/clone component=dbTier method=CUSTOM dbctx= /home/oravis/visdb/9.2.0/appsutil/VIS_apps.xml showProgress pwd=clone1 jobid=2_ VIS
Beginning OAM/Cloning:Pre-clone activity - Sat Jul 7 16:09:10 2007
Log file name: /home/oravis/visdb/9.2.0/appsutil/log/VIS_apps/OAMClone_07070409. log
Completed Stage...
Sat Jul 7 16:09:11 2007
[oravis@apps VIS_apps]$
now next step is application tier
Click the "Prepare Source System" button to begin source system preparation on the Application tier.
You must prepare the source system Database tier before preparing the Application tier.
but "Prepare Source System" button is not Enabled !!!!
What could be wrong ???
Regards
Chirag Patel
Kenya

Thanks hsawwan,
Hsawwan this I am doing on Linux R-4 Operating system.
you said
- Copy the Context file from RDBMS $ORACLE_HOME/appsutil_old to the new $ORACLE_HOME/appsutilissue 1)
but did not create target home and users also !!!
do i need to create both user at OS level ???
issue 2)
and I do not have free space on /
but i have enough free space on /disk1
I know somthing about soft link for mapping directory
if i create folder "/home/oraclone1"
then
how can i allocation space from /disk1 to above folder ?
issue 3)
I was using PERL executable location for traget same like source !!!
Do i need to use new PERL executable location ?
if yes then only for database tier or both tier?
if both then do i need to prepare source system for both ?
following is latest information for "Task 1: Establish Cloning Parameters"
Database Tier
Source Node Summary
Host apps
Domain simbanet.co.ke
Port 1521
SID VIS
RDBMS Oracle Home /home/oravis/visdb/9.2.0
JRE TOP /home/oravis/visdb/9.2.0/jre/1.4.2
OS User oravis
OS Group dba
PERL executable location /home/oravis/visdb/9.2.0/Apache/perl/bin/perl
Database Files Mount Point(s)
Mount Point Path
/home/oravis/visdata
Target Node Summary
Host apps
Domain simbanet.co.ke
Port 1521
SID clone1
Source Host apps
RDBMS Oracle Home /home/oraclone1/clone1db/9.2.0
JRE TOP /home/oraclone1/clone1db/9.2.0/jre/1.4.2
OS User oraclone1
OS Group dba
PERL executable location /home/oraclone1/clone1db/9.2.0/Apache/perl/bin/perl
Database Files Mount Point(s)
Mount Point Path
/home/oraclone1/clone1data
Applicartion Tier
Source Node Summary
Host apps
APPL_TOP Name apps
Platform Linux
Supported Application Services Administration, Concurrent Processing, Forms, Web
Domain simbanet.co.ke
Apps OS User applvis
Apps OS Group dba
Locations
COMMON_TOP directory /home/applvis/viscomn
8.0.6 Oracle Home /home/applvis/visora/8.0.6
iAS Oracle Home /home/applvis/visora/iAS
JDK 1.3.1 Location /home/applvis/viscomn/util/java/1.4/j2sdk1.4.2_04
PERL executable location /home/applvis/visora/iAS/Apache/perl/bin/perl
APPL_TOP Mount Point(s)
APPL_TOP mount point /home/applvis/visappl
Auxiliary mount point 2 /home/applvis/visappl
Auxiliary mount point 3 /home/applvis/visappl
Auxiliary mount point 4 /home/applvis/visappl
Target Node Summary
Host apps
Platform Linux
Source Host - APPL_TOP Name apps - apps
Supported Application Services Administration, Concurrent Processing, Forms, Web
Domain simbanet.co.ke
Apps OS User applclone1
Apps OS Group dba
Locations
COMMON_TOP directory /home/applclone1/clone1comn
8.0.6 Oracle Home /home/applclone1/clone1ora/8.0.6
iAS Oracle Home /home/applclone1/clone1ora/iAS
JDK 1.3.1 Location /home/applclone1/clone1comn/util/java/1.4/j2sdk1.4.2_04
PERL executable location /home/applclone1/clone1ora/iAS/Apache/perl/bin/perl
APPL_TOP Mount Point(s)
APPL_TOP mount point /home/applclone1/clone1appl
Auxiliary mount point 2 /home/applclone1/clone1appl
Auxiliary mount point 3 /home/applclone1/clone1appl
Auxiliary mount point 4 /home/applclone1/clone1appl
Regards
Chirag Patel
Kenya

Similar Messages

  • How to use application managed entity manager in EJB?

    I finish reading The EntityManager Interface in JEE tutorial.
    I know I can use container manager entity manager in EJB, but I want to explore how to use application managed entity manager in EJB.
    Can I use application managed entity manager in EJB (container management JTA transaction is used)? Where do I should close entity manager if can?
    The following is an example from JEE tutorial, but didn't find where to calose entity manager. and can I create mutiple EntityManagerFactory objects and Entity Manager objects to use them in a JTA transaction?
    @PersistenceUnit
    EntityManagerFactory emf;
    EntityManager em;
    @Resource
    UserTransaction utx;
    em = emf.createEntityManager();
    try {
      utx.begin();
      em.persist(SomeEntity);
      em.merge(AnotherEntity);
      em.remove(ThirdEntity);
      utx.commit();
    } catch (Exception e) {
      utx.rollback();

    Seems like a very poor example, the whole power of EJBs is to use Container Managed Transactions so you don't NEED to manage the transaction and the entity manager yourself. What you posted is code I would expect in a non-JEE application, or in a piece of code which requires fine-tuned transaction boundaries such as batched data importing logic.
    If I were you I'd research JPA in steps.
    a) learn about JPA as an API outside of the scope of EJBs (recommended reading: the book 'Pro JPA 2')
    b) learn about Container Managed Transactions in EJBs
    c) learn about Bean Managed Transactions in EJBs
    Right now you're rushing into c). I can understand that it raises many question marks at this point.

  • Using Application Manager, why can't I see my CS5.5 applications, just CS6 lists to buy?

    I am migrating my CS5.5 apps from an old XP laptop to a new Win8. Also Acrobat Pro, so I am using Application Manager to make sure I am not offending version copy allowances, but Application Manager is not showing any of the apps on my system, jut CS6 to buy and a couple trials. Where are my current Adobe applications?
    Using Application Manager, why can't I see my CS5.5 applications, just CS6 lists to buy?
    GMM

    Once you save that to a location on your system.
    Make sure Acrobat is Quit and then do this:
    1.  In the Finder go to the "Go" menu.
    2. Select Go to Folder
    3.  Paste this path into the "Go to the Folder:" field
    /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro/Contents/Resources/JavaScripts/
    4. Copy the file into the JavaScripts folder.
    5. Launch Acrobat
    Now you should see the menu spoken of in the blog and web page.

  • How to create EBS 12.1.1 cloning using OVM Manager

    Hi
    We are currently running Oracle Application release 12.1.1 and Oracle Database 10.2.0.4.1 on IBM Power 5 on AIX 6.1.
    We are in process of Migration the whole environment to Intel based platform our go LIVE date is 26th september 2013 and the vendor has configured the Oracle VM environment, they suggested us to use Oracle VM templates but we did the test migration using iso files of Linux(x86_64) and Oracle DB Home and Oracle Application Techstack
    Source (2 server HACMP CLuster) Server1 DB and CONC, server 2 APPS
    Oracle Database 10.2.0.4.1
    Oracle Application 12.1.1
    AIX 6.1
    Target (2 Servers OVM Cluster) Guest VM DB, Guest VM APPS
    Oracle Database 11.2.0.3.6
    Oracle Application 12.1.1
    Oracle Enterprise linux 6.4
    Oracle VM Hypervisor 3.2.3
    Oracle VM Manager 3.2.3
    We have completed the migration by installation the OS, DB Home, APPS TECH stack using media because we were unable to get the latest templates from Oracle E-delivery, we need to create a clone of the current setup using OVM Manager and also cloning of EBS Database and APPS tier using the same method without running the cfgclone scripts, help needed.
    Thank you
    regards
    shahrukh

    Hi;
    I suggest to you to review below docs:
    Application Tier Platform Migration with Oracle E-Business Suite Release 12 [ID 438086.1]
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    General Notes For E-Business Suite Release 12 [ID 986673.1]
    Oracle E-Business Suite Upgrade Center - Plan [ID 461709.1]
    Regard
    Helios

  • Can't Install any CS6 Apps using Application Manager

    Hi,
    I have a Mac Mini (mid July 2011) running OSX Lion (10.7.4) and a new Creative Cloud subscription but I'm having real problems when I try to install any creative suite application using Adobe Application Manager. AAM downloads the app and tries to install it but the result is always the same...
    The installation image mounts on the desktop, AAM says 'Installing' then the installation image disappears from the desktop and AAM gives the message 'Installation Failed'. The error report is always the same for every app. Here is an example from trying to install Adobe Acrobat X Pro:
    Exit Code: 7
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW050 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Acrobat Professional: Install failed
    ERROR: DW050:  - Acrobat Professional: Install failed
    ERROR: DW050:  - Suite Shared Configuration CS6: Skipped due to driver payload failure
    ERROR: DW050:  - Acrobat X Pro : Skipped due to driver payload failure
    I get the same type of error for any app that I try to install.
    It's driving me crazy. I also have a MacBook (early 2009) running Snow Leopard and I have no problems installing apps from Creative Cloud onto that machine. I just can't get anything to install on the Mac Mini - I've tried running the Creative Suite Cleaning Tool but this didn't help.
    I'm using AAM Version 6.2.77
    Can anyone shed any light on this?
    Many thanks,
    John.

    Jeff, many thanks for your reply. Unfortunately even trying to install one of the trial versions (Photoshop CS6 for example) didn't work as this relied on the Adobe Download Manager which just kept causing my machine to freeze.
    I tried various things including uninstalling and re-installing various bits and pieces like the download manager, Adobe AIR, FlashPlayer, etc. But nothing would work.
    In the end I had to resort to a completey clean install of my operating system which has now resolved the issue (although I still had a few teething troubles with the AAM).
    Hopefully the problem won't re-appear.
    Thanks,
    John.

  • Downloading Patches using Application Manager

    Hi,
    I am currently preparing for oracle apps dba exam and doing self studdy fot his. I have installed oracle apps on my personal computer on linux which is directly connected to internet with a home internet connection.(without any proxy). I submitted a request using "Recommend/Analyze Patches" from patch wizard from Applications Manager page but it failes with the error message.
    Applications DBA: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    FNDRSSUB1243 module: Request Set SubmitAdvisorCriteria
    Current system time is 19-NOV-2007 09:38:02
    **Starts**19-NOV-2007 09:38:03
    **Ends**19-NOV-2007 09:38:04
    Request submitted for stage Submit InfoBundle Upload, Analyze Patches Request (3).
    Current system time is 19-NOV-2007 09:38:05
    Request restarted at :19-NOV-2007 09:38:43
    **Starts**19-NOV-2007 09:38:43
    **Ends**19-NOV-2007 09:38:43
    The set completed normally with outcome Error.
    The outcome was determined by the stage Submit InfoBundle Upload, Analyze Patches Request (3).
    Executing request completion options...
    Finished executing request completion options.
    Exceptions posted by this request:
    Concurrent Request for "Request Set SubmitAdvisorCriteria" has completed with error.
    Concurrent request completed
    Current system time is 19-NOV-2007 09:38:43
    Can you please help me why jobs is not working
    Thanks and regards

    hsawwan , can you please tell me tha how could i
    submit this concurent request you just mentioned?
    Please tell me the steps. I am unable to find links
    about submiting these requests from OAM- Login to "System Administrator" Responsibility
    - Navigate to Requests > Run
    - Select "Single Request"
    - Select "Active Users" or "Active Responsibilities" in the name of the request
    - Click on Submit

  • Lightroom installation folder using Application Manager

    Hey,
    I have the creative cloud subscription and I have been able to install all the CS6 suit in the folder of my choosing. However I just tried twice to install Lightroom using the Application Manager in different folders but it automatically installs it in C:/Program Files and I don't want that.
    I am using Win 7 64bit. Any suggestions?

    I'm also having problems installing Lightroom via AAM in my preferred folder. Have tried multiple times. Other applications (PS, PP) install
    where I want them. All 800M of LR goes to C:/Program Files. Why? The question was asked 3 months ago but never answered. Anyone
    at Adobe investigated this yet?

  • Downloading Photoshop CS6 using Application Manager

    I have just purchased CS6 Cloud and successfully downloaded the Application Manager. I am now attempting to download just Photoshop CS6 but it has stopped at 48%. This is the second attempt where it has stopped at exactly the same point. I have iMAC 10.7 and mobile broad band which peaked at 3-4Mb/sec. What size is the download file? I left it overnight but now the comms are zero. I would rather get advise before re-starting.

    The file size of Photoshop CS6 is approximately 960 MB.
    Did you refer to http://helpx.adobe.com/creative-suite/kb/troubleshoot-update-issues-cs5-cs5.html and http://helpx.adobe.com/creative-suite/kb/troubleshoot-creative-cloud-installation-download .html and try troubleshooting the application manager?
    Thanks
    Nikhil

  • Re: Downloading Patches using Application Manager

    Hi:
    I encounter the same error while running the patch wizard. I am going to following your advice to run adadmin. First I want to know if its okay (now I test on a DEV instance) to run update snapshot? There are 1. update complete APPL_TOP, 2. Update JAVA_TOP only, 3. Update a product_top. Which one do I pick?

    873768 wrote:
    Hi:
    I encounter the same error while running the patch wizard. I am going to following your advice to run adadmin. First I want to know if its okay (now I test on a DEV instance) to run update snapshot? There are 1. update complete APPL_TOP, 2. Update JAVA_TOP only, 3. Update a product_top. Which one do I pick?
    Update a current view snapshot (full or partial APPL_TOP and global) -- Oracle E-Business Suite Maintenance Utilities
    Thanks,
    Hussein

  • Error installing Dreamweaver from Creative Cloud Application Manager OSX

    Getting this error:
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example,  ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s)
    ERROR: Updating driver data failed. Driver entry was notadded. ARP estimated size 64578KB
    I have rebooted, etc. All of my other apps work fine it seems. However, it is interesting that Application Manager shows "Install" next to ALL apps, including the ones I have already installed using Application Manager.
    Any ideas?
    OSX 10.8.2  - 2011 27" iMac

    Exit Code 7 is usually the result of a permission error.  Please see Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.  You will also want to review your installation log to determine which directories have compromised file permissions.  You can find details on how to locate and interpret the installation log at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • How do I tell the CC application manager that Lightroom is not installed on my pc?

    Before i got CC i was using Lightroom 5 swedish version for evaluation. I used application manager to install an English version by setting the language to English but language after CC installation of Lightroom is still Swedish. Checking the language settings again after installation it was set to English. Now I uninstalled Lightroom using control panel to remove it completely and my intention was to reinstall it from CC. However, the application manager still claims that Lightroom is installed. How do I get the CC application manager to understand that lightroom is not installed and when I do reinstall it it should be in English?
    Win 7 Home Premium 64-bit PC, CC Version 1.0.2.189

    Hi adogool,
    Please try to perform the steps given in the follwoing article.
    http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html

  • Problem updating Application Manager in CS6 D&W Premium

    I just finished a clean installation of CS6 Design & Web Premium under WIndows 7 Enterprise 64-bit.  I fired up Bridge, checked for updates, and allowed the update process to complete.  I then fired up Adobe Application Manager (from the desktop icon) to confirm all updates had been applied, but it behaved as if it needed to update itself.  For a second or two, it displayed a dialog about other instances of Application Manager running, but then that disappeared, and the installation continued.  I encountered a UAC warning, which I allowed, and shortly thereafter, I was presented with a dialog stating that, "Adobe Application Manager failed to install."  My only option at this point is to quit.  Oddly enough, when Application Manager is invoked through checking for updates from a CS6 component (e.g. Bridge, Photoshop, etc.), there doesn't seem to be a problem.  The issue only seems to arise when using Application Manager's desktop icon, or its shortcut under All Programs in the Start menu.  Please advise how to correct this behavior.
    Cheers

    In case it helps, here is the content of a fresh PDApp.log file from my %TEMP% folder.  (%TEMP% emptied, then AAM ran to create.)
    +++
    07/11/13 12:52:42:542 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Build Version - 7.0.0.414
    07/11/13 12:52:42:542 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Logging Level verbosity Set  to 4
    07/11/13 12:52:42:542 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 3172 | Parsing the command line provided. Number of command line arguments is 4
    07/11/13 12:52:42:542 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Detecting Applet Database Library file...
    07/11/13 12:52:42:543 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Fetching Applet registeration information...
    07/11/13 12:52:42:543 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | AppletManager initialize...
    07/11/13 12:52:42:543 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Applet database path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..
    07/11/13 12:52:42:543 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | PIM library path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\AdobePIM.dll
    07/11/13 12:52:42:543 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Loading PIM library...
    07/11/13 12:52:42:546 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | Build Version - 7.0.0.414
    07/11/13 12:52:42:547 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | Logging Level verbosity Set  to 4
    07/11/13 12:52:42:547 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | CREATE PIM Instance ...
    07/11/13 12:52:42:548 | [INFO] |  | ASU | PIM | Utilities |  |  | 3172 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\pim.db-journal' does not exist
    07/11/13 12:52:42:548 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:52:42:559 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | Current db schema version on machine 1.
    07/11/13 12:52:42:559 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | Current db schema version to install 1.
    07/11/13 12:52:42:559 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | PIM DB Schema is up to date. Current schema version is 1.
    07/11/13 12:52:42:559 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | PIM Database is Up To Date.
    07/11/13 12:52:42:559 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Getting applet data from Applet database
    07/11/13 12:52:42:560 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | All installed pakages version string (pim_getCurrentPackagesVersion) is CCM:7.0.0.81|D6:6.2.139.0|DECore:6.2.139.0|DWA:3.0.97.0|LWA:3.0.97.0|P6:6.2.139.0|PDApp:7 .0.0.414|UWA:6.2.139.0
    07/11/13 12:52:42:560 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | PIMSqlite closeDB status 0
    07/11/13 12:52:42:560 | [INFO] |  | ASU | PIM | PIM |  |  | 3172 | FREE PIM Instance ...
    07/11/13 12:52:42:561 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Registering Applets...
    07/11/13 12:52:42:561 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Loading Applet Switcher library: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\switcher\CCM_UI.dll
    07/11/13 12:52:42:562 | [WARN] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Unable to get the applet switching info... Response is: 8
    07/11/13 12:52:42:562 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | DWA AppletID argument not specified on command line. Trying to find the existing instance
    07/11/13 12:52:42:563 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | This is the first instance so creating a thread for listening to the created pipe
    07/11/13 12:52:42:563 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Pipe thread started
    07/11/13 12:52:42:563 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Starting AsyncMessageProcessor
    07/11/13 12:52:42:563 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 3172 | AsyncMsgProcessor initialized...
    07/11/13 12:52:42:563 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 3172 | AsyncMsgProcessor started. on thread id = 3376
    07/11/13 12:52:42:565 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Initializing native WindowManager
    07/11/13 12:52:42:565 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Creating window instance
    07/11/13 12:52:42:565 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Checking for appletID and appletVersion given in CommandLineOptions
    07/11/13 12:52:42:565 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Creating APE stage instance
    07/11/13 12:52:42:880 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | MessageHandler initialized...
    07/11/13 12:52:42:880 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | ExternalGateway initialized...
    07/11/13 12:52:42:880 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | NativeCommandHandler initialized...
    07/11/13 12:52:42:885 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.885 [INFO] PDApp.StartupCommand Logging Level verbosity Set to  INFO |  |  | 3172 | 11/2013 12:52:42.885 [INFO] PDApp.StartupCommand Logging Level verbosity Set to  INFO
    07/11/13 12:52:42:886 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.885 [INFO] PDApp.StartupCommand Processing the startup Command |  |  | 3172 | 11/2013 12:52:42.885 [INFO] PDApp.StartupCommand Processing the startup Command
    07/11/13 12:52:42:887 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.887 [INFO] PDAPP.AppletManager Starting Applet registeration... |  |  | 3172 | 11/2013 12:52:42.887 [INFO] PDAPP.AppletManager Starting Applet registeration...
    07/11/13 12:52:42:892 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.892 [INFO] PDAPP.MainDisplayMediator Looking up for the Exact versioned applet for ID :CCM_UI |  |  | 3172 | 11/2013 12:52:42.892 [INFO] PDAPP.MainDisplayMediator Looking up for the Exact versioned applet for ID :CCM_UI
    07/11/13 12:52:42:894 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.894 [INFO] PDAPP.AppletManager Loading Applet: CCM_UI Version = 1.0 |  |  | 3172 | 11/2013 12:52:42.894 [INFO] PDAPP.AppletManager Loading Applet: CCM_UI Version = 1.0
    07/11/13 12:52:42:900 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.900 [INFO] PDApp.ZStringLoader PDAPP SWF - locale set to - en_US |  |  | 3172 | 11/2013 12:52:42.900 [INFO] PDApp.ZStringLoader PDAPP SWF - locale set to - en_US
    07/11/13 12:52:42:912 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.911 [INFO] PDAPP.AppletManager Loading progress0 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.911 [INFO] PDAPP.AppletManager Loading progress0 out of 1241772
    07/11/13 12:52:42:912 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.912 [INFO] PDAPP.AppletManager Loading progress65536 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.912 [INFO] PDAPP.AppletManager Loading progress65536 out of 1241772
    07/11/13 12:52:42:913 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.913 [INFO] PDAPP.AppletManager Loading progress131072 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.913 [INFO] PDAPP.AppletManager Loading progress131072 out of 1241772
    07/11/13 12:52:42:914 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.914 [INFO] PDAPP.AppletManager Loading progress196608 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.914 [INFO] PDAPP.AppletManager Loading progress196608 out of 1241772
    07/11/13 12:52:42:915 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.915 [INFO] PDAPP.AppletManager Loading progress262144 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.915 [INFO] PDAPP.AppletManager Loading progress262144 out of 1241772
    07/11/13 12:52:42:916 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.916 [INFO] PDAPP.AppletManager Loading progress327680 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.916 [INFO] PDAPP.AppletManager Loading progress327680 out of 1241772
    07/11/13 12:52:42:917 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.917 [INFO] PDAPP.AppletManager Loading progress393216 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.917 [INFO] PDAPP.AppletManager Loading progress393216 out of 1241772
    07/11/13 12:52:42:919 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.918 [INFO] PDAPP.AppletManager Loading progress458752 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.918 [INFO] PDAPP.AppletManager Loading progress458752 out of 1241772
    07/11/13 12:52:42:920 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.920 [INFO] PDAPP.AppletManager Loading progress524288 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.920 [INFO] PDAPP.AppletManager Loading progress524288 out of 1241772
    07/11/13 12:52:42:921 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.920 [INFO] PDAPP.AppletManager Loading progress589824 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.920 [INFO] PDAPP.AppletManager Loading progress589824 out of 1241772
    07/11/13 12:52:42:922 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.921 [INFO] PDAPP.AppletManager Loading progress655360 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.921 [INFO] PDAPP.AppletManager Loading progress655360 out of 1241772
    07/11/13 12:52:42:923 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.922 [INFO] PDAPP.AppletManager Loading progress720896 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.922 [INFO] PDAPP.AppletManager Loading progress720896 out of 1241772
    07/11/13 12:52:42:924 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.923 [INFO] PDAPP.AppletManager Loading progress786432 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.923 [INFO] PDAPP.AppletManager Loading progress786432 out of 1241772
    07/11/13 12:52:42:924 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.924 [INFO] PDAPP.AppletManager Loading progress851968 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.924 [INFO] PDAPP.AppletManager Loading progress851968 out of 1241772
    07/11/13 12:52:42:925 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.925 [INFO] PDAPP.AppletManager Loading progress917504 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.925 [INFO] PDAPP.AppletManager Loading progress917504 out of 1241772
    07/11/13 12:52:42:926 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.926 [INFO] PDAPP.AppletManager Loading progress983040 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.926 [INFO] PDAPP.AppletManager Loading progress983040 out of 1241772
    07/11/13 12:52:42:927 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.927 [INFO] PDAPP.AppletManager Loading progress1048576 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.927 [INFO] PDAPP.AppletManager Loading progress1048576 out of 1241772
    07/11/13 12:52:42:928 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.928 [INFO] PDAPP.AppletManager Loading progress1114112 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.928 [INFO] PDAPP.AppletManager Loading progress1114112 out of 1241772
    07/11/13 12:52:42:929 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.929 [INFO] PDAPP.AppletManager Loading progress1179648 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.929 [INFO] PDAPP.AppletManager Loading progress1179648 out of 1241772
    07/11/13 12:52:42:930 | [INFO] |  | ASU | PDApp | 11/2013 12:52:42.930 [INFO] PDAPP.AppletManager Loading progress1241772 out of 1241772 |  |  | 3172 | 11/2013 12:52:42.930 [INFO] PDAPP.AppletManager Loading progress1241772 out of 1241772
    07/11/13 12:52:43:181 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.181 [INFO] DLM.ApplicationFacade sendNotification = ApplicationStartupCommand, type = null |  |  | 3172 | 11/2013 12:52:43.181 [INFO] DLM.ApplicationFacade sendNotification = ApplicationStartupCommand, type = null
    07/11/13 12:52:43:182 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.182 [INFO] CCM.AppStartup Processing the application startup command |  |  | 3172 | 11/2013 12:52:43.182 [INFO] CCM.AppStartup Processing the application startup command
    07/11/13 12:52:43:183 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.183 [INFO] PDApp.ExternalGateway Recieved Applet Loading Completion |  |  | 3172 | 11/2013 12:52:43.183 [INFO] PDApp.ExternalGateway Recieved Applet Loading Completion
    07/11/13 12:52:43:185 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.185 [INFO] CCM.AppStartup Going to start the workflow |  |  | 3172 | 11/2013 12:52:43.185 [INFO] CCM.AppStartup Going to start the workflow
    07/11/13 12:52:43:187 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.186 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null |  |  | 3172 | 11/2013 12:52:43.186 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null
    07/11/13 12:52:43:188 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.188 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.188 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:192 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.192 [INFO] DLM.ApplicationFacade sendNotification = bootEXECUTE_CCM_WORKFLOW, type = null |  |  | 3172 | 11/2013 12:52:43.192 [INFO] DLM.ApplicationFacade sendNotification = bootEXECUTE_CCM_WORKFLOW, type = null
    07/11/13 12:52:43:194 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.194 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.194 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:194 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.194 [INFO] DLM.ApplicationFacade sendNotification = initCCMNativeSignal, type = null |  |  | 3172 | 11/2013 12:52:43.194 [INFO] DLM.ApplicationFacade sendNotification = initCCMNativeSignal, type = null
    07/11/13 12:52:43:195 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.195 [INFO] CCM.InitializeCCMNativeCommand inside initial windows show |  |  | 3172 | 11/2013 12:52:43.195 [INFO] CCM.InitializeCCMNativeCommand inside initial windows show
    07/11/13 12:52:43:196 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Loading Applet - CCM_Native for WindowID - 1
    07/11/13 12:52:43:197 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.197 [INFO] CCMNativeApplet startApplet |  |  | 3172 | 11/2013 12:52:43.197 [INFO] CCMNativeApplet startApplet
    07/11/13 12:52:43:222 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.222 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.222 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:222 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.222 [INFO] DLM.ApplicationFacade sendNotification = initZstringSignal, type = null |  |  | 3172 | 11/2013 12:52:43.222 [INFO] DLM.ApplicationFacade sendNotification = initZstringSignal, type = null
    07/11/13 12:52:43:226 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.226 [INFO] ZStringLoader Trying to load ZString for preferred locale - en_US |  |  | 3172 | 11/2013 12:52:43.226 [INFO] ZStringLoader Trying to load ZString for preferred locale - en_US
    07/11/13 12:52:43:229 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.229 [INFO] ZStringLoader Locale set to - en_US |  |  | 3172 | 11/2013 12:52:43.229 [INFO] ZStringLoader Locale set to - en_US
    07/11/13 12:52:43:231 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.231 [INFO] CCM.InitializeZstringCommand Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans' |  |  | 3172 | 11/2013 12:52:43.231 [INFO] CCM.InitializeZstringCommand Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans'
    07/11/13 12:52:43:233 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = zstringLoadCompleteSignal, type = null |  |  | 3172 | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = zstringLoadCompleteSignal, type = null
    07/11/13 12:52:43:233 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null |  |  | 3172 | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null
    07/11/13 12:52:43:233 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:233 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = initAppletViewSignal, type = null |  |  | 3172 | 11/2013 12:52:43.233 [INFO] DLM.ApplicationFacade sendNotification = initAppletViewSignal, type = null
    07/11/13 12:52:43:241 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.241 [INFO] DLM.ApplicationFacade sendNotification = ShowScreen, type = null |  |  | 3172 | 11/2013 12:52:43.241 [INFO] DLM.ApplicationFacade sendNotification = ShowScreen, type = null
    07/11/13 12:52:43:243 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.243 [INFO] AAMShared.DynamicViewMediator Showing screen with screenID : com.adobe.aam.shared.view.compositeComponent::CCMMainView |  |  | 3172 | 11/2013 12:52:43.243 [INFO] AAMShared.DynamicViewMediator Showing screen with screenID : com.adobe.aam.shared.view.compositeComponent::CCMMainView
    07/11/13 12:52:43:290 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.290 [INFO] CCM.PrepareInitialAppletView Going to show the window now!!! |  |  | 3172 | 11/2013 12:52:43.290 [INFO] CCM.PrepareInitialAppletView Going to show the window now!!!
    07/11/13 12:52:43:325 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.325 [INFO] DLM.ApplicationFacade sendNotification = RegisterMediatorCommand, type = null |  |  | 3172 | 11/2013 12:52:43.325 [INFO] DLM.ApplicationFacade sendNotification = RegisterMediatorCommand, type = null
    07/11/13 12:52:43:326 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.326 [INFO] DLM.ApplicationFacade sendNotification = CCM_CONTENT_REFRESH_DATA, type = null |  |  | 3172 | 11/2013 12:52:43.326 [INFO] DLM.ApplicationFacade sendNotification = CCM_CONTENT_REFRESH_DATA, type = null
    07/11/13 12:52:43:327 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.327 [INFO] DLM.ApplicationFacade sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null |  |  | 3172 | 11/2013 12:52:43.327 [INFO] DLM.ApplicationFacade sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null
    07/11/13 12:52:43:328 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.327 [INFO] DLM.ApplicationFacade sendNotification = ccmInitialViewCompleteSignal, type = null |  |  | 3172 | 11/2013 12:52:43.327 [INFO] DLM.ApplicationFacade sendNotification = ccmInitialViewCompleteSignal, type = null
    07/11/13 12:52:43:328 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null |  |  | 3172 | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null
    07/11/13 12:52:43:328 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null |  |  | 3172 | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow, type = null
    07/11/13 12:52:43:328 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:329 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = preprocess_ccm_applet, type = null |  |  | 3172 | 11/2013 12:52:43.328 [INFO] DLM.ApplicationFacade sendNotification = preprocess_ccm_applet, type = null
    07/11/13 12:52:43:332 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.331 [INFO] DLM.ApplicationFacade sendNotification = populateSystemInfoDataSignal, type = null |  |  | 3172 | 11/2013 12:52:43.331 [INFO] DLM.ApplicationFacade sendNotification = populateSystemInfoDataSignal, type = null
    07/11/13 12:52:43:334 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.333 [INFO] SystemUtilities Current system is a windows system |  |  | 3172 | 11/2013 12:52:43.333 [INFO] SystemUtilities Current system is a windows system
    07/11/13 12:52:43:334 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.334 [INFO] SystemUtilities Current system is 64 bit |  |  | 3172 | 11/2013 12:52:43.334 [INFO] SystemUtilities Current system is 64 bit
    07/11/13 12:52:43:334 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.334 [INFO] DLM.ApplicationFacade sendNotification = initNativeSessionsSignal, type = null |  |  | 3172 | 11/2013 12:52:43.334 [INFO] DLM.ApplicationFacade sendNotification = initNativeSessionsSignal, type = null
    07/11/13 12:52:43:335 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.335 [INFO] CCMNativeApplet createSession |  |  | 3172 | 11/2013 12:52:43.335 [INFO] CCMNativeApplet createSession
    07/11/13 12:52:43:337 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.337 [INFO] CCMNativeApplet dlmAppletSessionProxy.sessionId = {886AFCBF-10B0-41E9-849F-601CB3CDC0E9} |  |  | 3172 | 11/2013 12:52:43.337 [INFO] CCMNativeApplet dlmAppletSessionProxy.sessionId = {886AFCBF-10B0-41E9-849F-601CB3CDC0E9}
    07/11/13 12:52:43:343 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.343 [ERROR] CCMGlobalCommonUtils Failed to process the input xml at path -  error is Error #3006 |  |  | 3172 | 11/2013 12:52:43.343 [ERROR] CCMGlobalCommonUtils Failed to process the input xml at path -  error is Error #3006
    07/11/13 12:52:43:345 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.345 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.345 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:346 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.346 [INFO] DLM.ApplicationFacade sendNotification = readGlobalPrefSignal, type = null |  |  | 3172 | 11/2013 12:52:43.346 [INFO] DLM.ApplicationFacade sendNotification = readGlobalPrefSignal, type = null
    7/11/2013 12:52:43 [INFO] OPM - Build Version - 7.0.0.78
    7/11/2013 12:52:43 [INFO] OPM - Logging Level verbosity Set  to 4
    7/11/2013 12:52:43 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    7/11/2013 12:52:43 [INFO] OPM - Successfully opened opm session, db location:C:\Users\ECR6\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    7/11/2013 12:52:43 [INFO] OPM - No Record found for the input fields in opm_getValueForKey
    7/11/2013 12:52:43 [INFO] OPM - Released OPM refrence successfully in opm_freeLibRef
    7/11/2013 12:52:43 [ERROR] OPM - Invalid arguments in get value for key...in opm_getValueForKey
    7/11/2013 12:52:43 [INFO] OPM - Released OPM refrence successfully in opm_freeLibRef
    7/11/2013 12:52:43 [INFO] OPM - Released OPM refrence successfully in opm_freeLibRef
    07/11/13 12:52:43:357 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.357 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:43.357 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:43:358 | [INFO] |  | ASU | PDApp | 11/2013 12:52:43.358 [INFO] DLM.ApplicationFacade sendNotification = check_new_aam_version, type = null |  |  | 3172 | 11/2013 12:52:43.358 [INFO] DLM.ApplicationFacade sendNotification = check_new_aam_version, type = null
    07/11/13 12:52:43:783 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 3172 | Message Queue Manager initialized...
    7/11/2013 12:52:43 [INFO] Utilities - File 'C:\Users\ECR6\AppData\Local\Temp\{76080F67-D9D2-4E51-9665-332020B3A0E8}AAMVersion.xml' does not exist
    7/11/2013 12:52:43 [INFO] Utilities - File 'C:\Users\ECR6\AppData\Local\Temp\{76080F67-D9D2-4E51-9665-332020B3A0E8}\AAMVersion.xml' does not exist
    07/11/13 12:52:44:987 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | Build Version - 7.0.0.414
    07/11/13 12:52:44:987 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | Logging Level verbosity Set  to 4
    07/11/13 12:52:44:987 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | CREATE PIM Instance ...
    07/11/13 12:52:44:987 | [INFO] |  | ASU | PIM | Utilities |  |  | 3880 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    07/11/13 12:52:44:987 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:52:44:988 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | Current db schema version on machine 1.
    07/11/13 12:52:44:988 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | Current db schema version to install 1.
    07/11/13 12:52:44:989 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | PIM DB Schema is up to date. Current schema version is 1.
    07/11/13 12:52:44:989 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | PIM Database is Up To Date.
    07/11/13 12:52:44:989 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | PIMSqlite closeDB status 0
    07/11/13 12:52:44:989 | [INFO] |  | ASU | PIM | PIM |  |  | 3880 | FREE PIM Instance ...
    07/11/13 12:52:45:305 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.305 [INFO] DLM.ApplicationFacade sendNotification = handleNativeDataSignal, type = null |  |  | 3172 | 11/2013 12:52:45.305 [INFO] DLM.ApplicationFacade sendNotification = handleNativeDataSignal, type = null
    07/11/13 12:52:45:307 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.306 [INFO] shouldUpdateAAM Latest AAM is not present on the machine. Launching LBS to update aam on the machine |  |  | 3172 | 11/2013 12:52:45.306 [INFO] shouldUpdateAAM Latest AAM is not present on the machine. Launching LBS to update aam on the machine
    07/11/13 12:52:45:307 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.307 [INFO] DLM.ApplicationFacade sendNotification = aamVersionCheckCompleteSignal, type = null |  |  | 3172 | 11/2013 12:52:45.307 [INFO] DLM.ApplicationFacade sendNotification = aamVersionCheckCompleteSignal, type = null
    07/11/13 12:52:45:308 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.308 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null |  |  | 3172 | 11/2013 12:52:45.308 [INFO] DLM.ApplicationFacade sendNotification = execute_ccm_workflow_manager, type = null
    07/11/13 12:52:45:309 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.308 [INFO] DLM.ApplicationFacade sendNotification = update_aam_on_machine, type = null |  |  | 3172 | 11/2013 12:52:45.308 [INFO] DLM.ApplicationFacade sendNotification = update_aam_on_machine, type = null
    07/11/13 12:52:45:361 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.360 [INFO] DLM.ApplicationFacade sendNotification = quitYesClickSignal, type = null |  |  | 3172 | 11/2013 12:52:45.360 [INFO] DLM.ApplicationFacade sendNotification = quitYesClickSignal, type = null
    07/11/13 12:52:45:362 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.361 [INFO] DLM.ApplicationFacade sendNotification = removeCCMPopUpScreen, type = null |  |  | 3172 | 11/2013 12:52:45.361 [INFO] DLM.ApplicationFacade sendNotification = removeCCMPopUpScreen, type = null
    07/11/13 12:52:45:363 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.363 [INFO] DLM.ApplicationFacade sendNotification = HidePopupWindow, type = null |  |  | 3172 | 11/2013 12:52:45.363 [INFO] DLM.ApplicationFacade sendNotification = HidePopupWindow, type = null
    07/11/13 12:52:45:363 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.363 [INFO] DLM.ApplicationFacade sendNotification = ENABLE_WINDOW_NOTIFICATION, type = null |  |  | 3172 | 11/2013 12:52:45.363 [INFO] DLM.ApplicationFacade sendNotification = ENABLE_WINDOW_NOTIFICATION, type = null
    07/11/13 12:52:45:364 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.364 [INFO] DLM.ApplicationFacade sendNotification = SHARED_POPUP_HIDE, type = null |  |  | 3172 | 11/2013 12:52:45.364 [INFO] DLM.ApplicationFacade sendNotification = SHARED_POPUP_HIDE, type = null
    7/11/2013 12:52:45 [INFO] OPM - Build Version - 7.0.0.1
    7/11/2013 12:52:45 [INFO] OPM - Logging Level verbosity Set  to 4
    7/11/2013 12:52:45 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    7/11/2013 12:52:45 [INFO] OPM - Successfully opened opm session, db location:C:\Users\ECR6\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    7/11/2013 12:52:45 [INFO] OPM - No Record found for the input fields in opm_getValueForKey
    7/11/2013 12:52:45 [INFO] OPM - Released OPM refrence successfully in opm_freeLibRef
    07/11/13 12:52:45:904 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.904 [INFO] DLM.ApplicationFacade sendNotification = quitCCMDownloadWorkflowSignal, type = null |  |  | 3172 | 11/2013 12:52:45.904 [INFO] DLM.ApplicationFacade sendNotification = quitCCMDownloadWorkflowSignal, type = null
    07/11/13 12:52:45:910 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.909 [INFO] DLM.ApplicationFacade sendNotification = allProductSessionsClosedSignal, type = null |  |  | 3172 | 11/2013 12:52:45.909 [INFO] DLM.ApplicationFacade sendNotification = allProductSessionsClosedSignal, type = null
    07/11/13 12:52:45:911 | [INFO] |  | ASU | PDApp | 11/2013 12:52:45.910 [INFO] DLM.ApplicationFacade sendNotification = TryQuitApplicationSignal, type = null |  |  | 3172 | 11/2013 12:52:45.910 [INFO] DLM.ApplicationFacade sendNotification = TryQuitApplicationSignal, type = null
    07/11/13 12:52:46:145 | [INFO] |  | ASU | PDApp | 11/2013 12:52:46.145 [INFO] DLM.ApplicationFacade sendNotification = quitGlobalSessionSignal, type = null |  |  | 3172 | 11/2013 12:52:46.145 [INFO] DLM.ApplicationFacade sendNotification = quitGlobalSessionSignal, type = null
    07/11/13 12:52:46:147 | [INFO] |  | ASU | PDApp | 11/2013 12:52:46.146 [INFO] CCMNativeApplet performSessionJob = <dlmargs>
      <SessionKey>{886AFCBF-10B0-41E9-849F-601CB3CDC0E9}</SessionKey>
    </dlmargs> |  |  | 3172 | 11/2013 12:52:46.146 [INFO] CCMNativeApplet performSessionJob = <dlmargs>
      <SessionKey>{886AFCBF-10B0-41E9-849F-601CB3CDC0E9}</SessionKey>
    </dlmargs>
    07/11/13 12:52:46:151 | [INFO] |  | ASU | PDApp | 11/2013 12:52:46.151 [INFO] CCMNativeApplet close session result = <output>
      <result>success</result>
    </output> |  |  | 3172 | 11/2013 12:52:46.151 [INFO] CCMNativeApplet close session result = <output>
      <result>success</result>
    </output>
    07/11/13 12:52:46:152 | [INFO] |  | ASU | PDApp | 11/2013 12:52:46.152 [INFO] DLM.ApplicationFacade sendNotification = FINALIZE_PROV_COMMON_NOTIFICATION, type = null |  |  | 3172 | 11/2013 12:52:46.152 [INFO] DLM.ApplicationFacade sendNotification = FINALIZE_PROV_COMMON_NOTIFICATION, type = null
    07/11/13 12:52:46:156 | [INFO] |  | ASU | PDApp | 11/2013 12:52:46.156 [INFO] CCMNativeApplet startApplet |  |  | 3172 | 11/2013 12:52:46.156 [INFO] CCMNativeApplet startApplet
    07/11/13 12:52:46:659 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 3172 | Un-loading Applet - CCM_Native for window ID - 1
    07/11/13 12:52:46:659 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | Callng the finalize function of the applet
    07/11/13 12:52:47:159 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | Unloading applet
    07/11/13 12:52:47:160 | [INFO] |  | ASU | PDApp | 11/2013 12:52:47.160 [INFO] PDApp.HostMessageHandler Recieved force window close message |  |  | 3172 | 11/2013 12:52:47.160 [INFO] PDApp.HostMessageHandler Recieved force window close message
    07/11/13 12:52:47:161 | [INFO] |  | ASU | PDApp | 11/2013 12:52:47.160 [INFO] PDApp.HostMessageHandler Sending message to native |  |  | 3172 | 11/2013 12:52:47.160 [INFO] PDApp.HostMessageHandler Sending message to native
    07/11/13 12:52:47:165 | [INFO] |  | ASU | PDApp | 11/2013 12:52:47.164 [INFO] DLM.ApplicationFacade sendNotification = handleNativeDataSignal, type = null |  |  | 3172 | 11/2013 12:52:47.164 [INFO] DLM.ApplicationFacade sendNotification = handleNativeDataSignal, type = null
    07/11/13 12:52:47:166 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Window destruction reached for ID - 1
    07/11/13 12:52:47:334 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Pipe Connected. Waiting for data to come on pipe
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | 2 bytes read on pipe
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Data recieved on pipe. Sending the data to the main thread to process and show window
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Message Sent to main thread
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Disconnecting pipe
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Pipe Disconnected
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 3788 | Terminating the pipe thread
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating native MessageQueueManager
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 3172 | Message Queue Manager destructed
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating WindowManager
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Destroying PDApp main window's
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 3172 | Destroying PDApp main window's sucessfully
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating ExternalGateway
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | ExternalGateway destructed
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating MessageHandler
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | MessageHandler finalize...
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | MessageHandler destructed
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating NativeCommandHandler
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 3172 | NativeCommandHandler destructed
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating AsyncMessageProcessor
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 3172 | Destroying AsyncMsgProcessor
    07/11/13 12:52:47:335 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating NativePlatformHandler
    07/11/13 12:52:47:336 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating ETSWrapper class
    07/11/13 12:52:47:336 | [INFO] |  | ASU | PDApp | PDApp |  |  | 3172 | Terminating logger
    07/11/13 12:52:48:497 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | Build Version - 7.0.0.414
    07/11/13 12:52:48:497 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | Logging Level verbosity Set  to 4
    07/11/13 12:52:48:497 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | CREATE PIM Instance ...
    07/11/13 12:52:48:497 | [INFO] |  | ASU | PIM | Utilities |  |  | 2544 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    07/11/13 12:52:48:498 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:52:48:499 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | Current db schema version on machine 1.
    07/11/13 12:52:48:499 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | Current db schema version to install 1.
    07/11/13 12:52:48:499 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | PIM DB Schema is up to date. Current schema version is 1.
    07/11/13 12:52:48:499 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | PIM Database is Up To Date.
    07/11/13 12:52:48:500 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | PIMSqlite closeDB status 0
    07/11/13 12:52:48:500 | [INFO] |  | ASU | PIM | PIM |  |  | 2544 | FREE PIM Instance ...
    07/11/13 12:53:28:225 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | \Users\ECR6\AppData\Local\Temp\PDApp.log
    07/11/13 12:53:28:225 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:225 | [INFO] |  | ASU | Setup | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\core\AAMConfig.xml' does not exist
    07/11/13 12:53:28:226 | [INFO] |  | ASU | Setup |  |  |  | 3984 | Event Guid generated is: '7e90a66e-3e8e-495d-b838-a00fc474f9db'
    07/11/13 12:53:28:227 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | Start Adobe Setup
    07/11/13 12:53:28:227 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | TimeLog: Bootstrapper Start
    07/11/13 12:53:28:227 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | TimeLog: Start initial checks
    07/11/13 12:53:28:227 | [INFO] |  | ASU | Setup | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:227 | [WARN] |  | ASU | Setup | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:236 | [INFO] |  | ASU | Setup |  |  |  | 1796 | Event with guid '7e90a66e-3e8e-495d-b838-a00fc474f9db' is being sent
    07/11/13 12:53:28:241 | [INFO] |  | ASU | Setup | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:241 | [INFO] |  | ASU | Setup |  |  |  | 1796 | GetIEProxyInfo - No default proxy present on the user machine
    07/11/13 12:53:28:241 | [INFO] |  | ASU | Setup |  |  |  | 1796 | GetIEProxyInfo - proxy Url is
    07/11/13 12:53:28:241 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\pim.db-journal' does not exist
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Users\ECR6\AppData\Local\Temp\\asuap.txt' does not exist
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | CREATE PIM Instance ...
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    07/11/13 12:53:28:242 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:53:28:243 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current db schema version on machine 1.
    07/11/13 12:53:28:243 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current db schema version to install 2.
    07/11/13 12:53:28:243 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | SUCCESS Created Tables.
    07/11/13 12:53:28:243 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | PIM Database is Up To Date.
    07/11/13 12:53:28:243 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Updater Inventory location:C:\Users\ECR6\AppData\Local\ACCCx183\resources\updaterinventory.dll
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Acquired System level ACF lock ...
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud\pim.db-journal' does not exist
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | CREATE PIM Instance ...
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud\pim.db-journal' does not exist
    07/11/13 12:53:28:244 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud\pim.db' does not exist
    07/11/13 12:53:28:245 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:53:28:268 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | SUCCESS Created Tables.
    07/11/13 12:53:28:268 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | PIM Database is Up To Date.
    07/11/13 12:53:28:268 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Updater Inventory location:C:\Users\ECR6\AppData\Local\ACCCx183\resources\updaterinventory.dll
    07/11/13 12:53:28:268 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Acquired System level ACCC lock ...
    07/11/13 12:53:28:268 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:269 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:272 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:272 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:272 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:273 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id E503D1A9-30F3-4492-A0D7-5691E1693A22 is already installed
    07/11/13 12:53:28:276 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:277 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:277 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:309 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:309 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:309 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:333 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:333 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:333 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:333 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    07/11/13 12:53:28:338 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:338 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:338 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:366 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:366 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:367 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:367 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    07/11/13 12:53:28:378 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:379 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:379 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:425 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:425 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:426 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:426 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:466 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:467 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:467 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:467 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:470 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 53106091
    07/11/13 12:53:28:470 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | The size required to install AAM on your machine would be 53106091
    07/11/13 12:53:28:470 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:470 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:471 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:472 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:472 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:472 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:473 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:474 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:474 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:474 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:474 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:474 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:474 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:475 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:476 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:476 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:476 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:476 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:476 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:477 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:477 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:477 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:478 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:478 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:478 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:479 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:479 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:479 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:479 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:479 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:480 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:481 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:481 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:481 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:481 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:481 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:481 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:482 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:483 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:483 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:483 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:483 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:483 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:484 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:484 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:485 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:485 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:485 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:485 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:486 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:486 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:486 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:486 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:486 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:487 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:488 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:488 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:488 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:488 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:489 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:489 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:490 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:490 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:490 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:490 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:490 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:491 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:491 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:492 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:492 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:492 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:492 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:492 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:493 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:494 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:494 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:494 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:494 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:494 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:495 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:496 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:496 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:496 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:496 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:496 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:497 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:497 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:497 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:498 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:498 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:498 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:499 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 166738298
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | The size required to install ACCC on your machine would be 166738298
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | The size required to install complete ACCC on your machine would be 219844389
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | PIMSqlite closeDB status 0
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | FREE PIM Instance ...
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | PIMSqlite closeDB status 0
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | FREE PIM Instance ...
    07/11/13 12:53:28:499 | [INFO] |  | ASU | Setup | Utilities |  |  | 3984 | Semaphore is not locked
    07/11/13 12:53:28:499 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\pim.db-journal' does not exist
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Users\ECR6\AppData\Local\Temp\\asuap.txt' does not exist
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Build Version - 2.0.0.0 (BuildVersion: 2.0; BuildDate: Mon Jun 18 2012 06:00:16 )
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Logging Level verbosity Set  to 4
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | CREATE PIM Instance ...
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | Utilities |  |  | 3984 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | trying to createOrUpdatePIMDbSchema.
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current db schema version on machine 1.
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current db schema version to install 2.
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | SUCCESS Created Tables.
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | PIM Database is Up To Date.
    07/11/13 12:53:28:500 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Updater Inventory location:C:\Users\ECR6\AppData\Local\ACCCx183\resources\updaterinventory.dll
    07/11/13 12:53:28:501 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Acquired System level ACF lock ...
    07/11/13 12:53:28:501 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | TimeLog: End initial checks
    07/11/13 12:53:28:501 | [INFO] |  | ASU | Setup | Setup |  |  | 3984 | TimeLog: Begin Installing
    07/11/13 12:53:28:501 | [INFO] |  | ASU | Setup | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:501 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:501 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:502 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Skip properties not defined for current node
    07/11/13 12:53:28:503 | [INFO] |  | ASU | Setup |  |  |  | 3308 | HTTP Request Status code 200.
    07/11/13 12:53:28:503 | [INFO] |  | ASU | Setup |  |  |  | 1796 | The http request returned HTTP_Status:0 HttpCommunicator error:0
    07/11/13 12:53:28:505 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:505 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:505 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:506 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id E503D1A9-30F3-4492-A0D7-5691E1693A22 is already installed
    07/11/13 12:53:28:509 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:509 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:509 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:535 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:535 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:535 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:556 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:556 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:556 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:557 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id 99477136-88AD-496B-9551-BAE72699A32C is already installed
    07/11/13 12:53:28:561 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:561 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:561 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:589 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:589 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:589 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:590 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Package id B322281B-C04F-438E-82D7-7DA34A359526 is already installed
    07/11/13 12:53:28:600 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:601 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:601 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:647 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:647 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Current OS version is: Major:6, Minor:1, ServicePack:1
    07/11/13 12:53:28:648 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:648 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:688 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:688 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:688 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:689 | [WARN] |  | ASU | PIM | PIM |  |  | 3984 | Failed to find Node
    07/11/13 12:53:28:691 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 53106091
    07/11/13 12:53:28:691 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Executing Adobe Genuine Validation for all the AAM packages
    07/11/13 12:53:28:691 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | Validating package file: 'C:\Users\ECR6\AppData\Local\ACCCx183\AAMPackages\core\PDApp.pimx'
    07/11/13 12:53:28:694 | [INFO] |  | ASU | PIM | PIM |  |  | 3984 | XML is valid
    07/11/13 12:53:28:694 |

  • Application Managed Encryption - ML6020

    Any Dell ML6020 Library firmware starting with a 6 (660G in this case) -  Encryption default is "None"
    How do you change the default to Application Managed ?  I currently cannot change it from Web client.
    From the Web Client - Setup - Encryption - Partition - Configuration - at this point it stops with error message EKM is required. 
    Dell documentations says EKM is not required when using Application Managed Software for Encryption.
    BUT in order to use Application Managed software I need the Encryption set to  Application Managed, not NONE.
    This is not an issue with ML6020 firmware level 585G.GS003 - the default setting for encryption is "Application Managed"   
    What happened from 5XXX to 6XXX library firmware ?  Need level 6XXX for LTO6 tape drives

    Hi Clemens,
    in your first case, please be aware that you should not inject an entity manager into a servlet, as an <b>entity manager is not threadsafe</b>. Injecting an emf into a Servlet fine - entity manager factories are threadsafe.
    In your second case, the em is not participating in the user transaction.
    If you create the entity manager outside the user transaction, you have got to explicitly invoke <b>em.joinTransaction() </b> once the user transactgion is active:
    <b>EntityManager em = emf.createEntityManager();</b>
    Part p = new Part();
    p.setDescription("description");
    p.setName("firstPartName");
    p.setId(3L);
    <b>utx.begin();</b>
    <b>em.joinTransaction();</b>
    em.persist(p);
    utx.commit();
    em.close();
    Alternatively, you can create the em inside the user transaction:
    Part p = new Part();
    p.setDescription("description");
    p.setName("firstPartName");
    p.setId(3L);
    <b>utx.begin();
    EntityManager em = emf.createEntityManager();</b>
    em.persist(p);
    utx.commit();
    em.close();
    Best regards,
    Adrian

  • Print and Softproof colors are bad for "Application managed color"

    Hello... Not sure if my problem is a Mac OS X issue, or a Lightroom issue. Either way I hope it is just user error.
    While printing, my prints look good using "printer managed color", both preview and printed output look good. I am used to using "application managed color" and am getting very poor colors, in both the preview and the printed output.
    I am somewhat familiar with color management, and understand the basic concepts of profiles.
    I have a new iMac 20" display, that is calibrated. I am printing on a HP 8450. It appears that both the printer and LR are trying to manage my color when I am trying to do a "application managed color" print. Not being familiar with OS X, I have not been able to determine how to disable the color management of my printer driver.
    If anyone has any suggestions, please help... I have been fighting this off and on all day...
    One other thing... off topic, but if anyone knows how to adjust a 20" iMac 20 RGB values, please let me know. I can't see how to manually adjust the individual channels.
    Thanks, Mike

    Well, it sounds like you are not getting all your ducks in a row on setting up LR for "application managed color". There aresome excellent step by steps in one or two other threads. A key point is using the individual icc profile for the specific paper not the generic.
    To properly calibrate you Monitor you should use a Calibration device, like a Spyder not tweek the numbers by hand/eye.
    It is just user error.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Elearning Suite -- Application Manager -- Presenter missing

    I am using the application manager tool provided by Adobe to create an Enterprise deployment for eLearning 2.0.  During the wizard, it asks you which applications you want to include in your installation and I include everything (this includes presenter).
    This leaves us with 2 source folders:  The payloads folder and the exceptions folder.
    The payloads folder contains all of the applications that will be handled in the MSI that is built by the application manager, the exceptions folder contains all of the "other" installations that you can handle with cmd line.
    Everything works great, except, Presenter does not install.  It is completely missing.  There is nothing in the logfile that shows any error or failure (all return code 1, which in Adobe lingidy means AOK).  The only descrepency that I have been able to observe so far is that the source files = 5gb in size when I extract the source from the cd.  After I point the application manager to the source and run the wizard, it extracts 3.5gb in source.  I understand there maybe a few extraoneous items in source that may account for additional languages and whatnot, but cutting out 1.5gb seems to be an aweful lot.
    Should I be using application manager with the eLearning suite?
    Does eLearning 2.0 fall under the CS5 umbrella of suites?
    Can anyone provide me with things I could be looking at to help troubleshoot this issue, or provide a solution?
    Thank you for your time!
    I will try to answer some questions that may arise:
    -- Presenter does not appear in the exeptions folder, add/remove programs, in c:\Program Files
    -- I attempted to run the application manager with only Presenter selected, it still does not install
    -- I attempted to run application manager with everything but Presenter selected, it still does not show in the exeptions folder
    -- I opened the MSI that was built by application manager to see if presenter existed in the table, it does not, nor does any other application that would get installed in the suite

    Hello,
    Which version of MS Office do you use? If it is 2010, Presenter is not compatible with that version. And Presenter is not a standalone app, it installs as a plugin on Powerpoint. Did you check PPT?
    Lilybiri

Maybe you are looking for

  • Theme change re-orders Bullet build order

    I have used KN'09's "set timing and order for each build" to create bullets so that each bullet is accompanied by its own graphic. This was done by manually interleaving the graphic in and out builds in the build order, within the list of bullets. So

  • How do i copy music and playlists from my iPod into iTunes

    is there a way for me to plug in my iPod and have all the songs and playlists download to my computer. i had to reinstall iTunes so it has nothing in it right now, and i dont want to update my iPod with an empty library. can i either do what i previo

  • Is it possible to use the snow leopard install disk for bootcamp setup?

    I'm going to be installing a windows 7 partition through bootcamp on my macbook, but I can no longer find the two original install disks that it came with. So my question was whether or not its possible to go through the bootcamp process with the sno

  • Help!! Error Report iTunes

    When I click on I tunes, or when I plug in my iPod to my pc, iTunes pops up with an error saying it has encountered a problem and needs to close. Then you have the option to send an error report or not. Of course.. I do. But I had to reboot my pc bac

  • Data transfer not possible? Nokia 2700 classic syn...

    I have Ovi setting on my 2700 classic, everytime i try to sync contacts - the prompt comes like "data transfer not possible". Help me with it also plz tell me any way of getting contacts back on phone/sim from ovi without PC. Addl. Info:- i had syncd