Unloading Library

Hi there,
i'm building an OSGi application with several services in different packages. One of these services needs to load a dll-file to use some native methods. Starting and stoping the application works fine, but when i restart it without restarting the knoplerfish framework before i get an linker-error that the library is already loaded by another classloader. So i suspect that my framework is not releasing the dll after i stop my application. Is there any way to force the unloading of such a manually loaded library?
Any hint would be very appreciated.
thx in advance, Chris

Hi jschell,
- That isn't a spec.ok, but I treat official jdk-documentation as a reliable source of information
- It says "can", not "must", "should", etc.yes, that's exactly why I introduced this "dirty loop". As I understand if we won't have got an exception the unload must have been completed. After several attempts we should give up anyway.
- It doesn't address how the class loader is actually garbage collectedcorrect, in fact nobody can force the unload of anything, your System.gc()-call just gives the VM a hint to unload resources no longer needed. Classloaders are classes themselves. So, if all classes loaded by the loader and the loader class itself are no longer referenced, the VM (the GC) is allowed unload them. Native libraries loaded by this loader can be unloaded, too.
This leads to an interesting question:
What happens, if a library L has been loaded through class loader A and an attempt to load the same library through class loader B fails (...has been loaded by an other class loader...) but the caller just ignores this exception? Well, first a class X loaded through class loader B needing the library L should be fit for work, because the library L has been loaded and is present in the VM. But what happens, if class loader A is going to be unloaded, because it is no longer referenced?
I didn't check it out yet. But I think, the library L will be unloaded, too, since class loader B has no knowledge (no reference) about L. So, who should prevent the GC from unloading L? Next time when X (loaded by B) needs L an exception should occur. What do you think?
Thanks for this nice "nitpicker"-discussion ;-)
Regards.
Karl

Similar Messages

  • How to unload library

    Hi,
    How to unload a library loaded by : System.load(...)?
    Many thanks.

    I don't think you can.
    google?
    You might be able to do something in JNI (have a wrapper library which can load/unload the actual library )?

  • Unloading library on HP UX11 and AIX crashes in 8.1.7 and 9i

    We dynamically load/unload Oracle client libraries(libclntsh). Unloading the library hangs/crashes with 8.1.7 or 9i client. Works fine with 8.1.5.
    This happens only on HP11 or AIX. Windows and solaris work fine.
    Has anyone else seen this problem?
    Thanks

    Mark, I'm faced with the same proble. Did you get beyond the problem?
    Terry

  • I've been getting an error message lately that says "Web Sync could not initialize properly".  What do I do?

    I've been getting an error message lately which states the following:
    Web Sync could not initialize properly.  Check that Polar Daemon is running and start Web Sync again.  To restart Polar Daemon you need to run 2 commands in Terminal Start Applications>Utilities>Terminal.  To stop Polar Daemon which is already running, write a command”sudo launchctl unload/library/launch daemon/fi.polar.polard.plist.” and press enter. Enter your password when required. If Polar Daemon is not running, “error unloading” message appears.  Ignore this error message.  Write “sudo launchclt load/library/launch daemons/fi.polar.polard. plist” and press enter to run Polar Daemon.
    Is this something I should be concerned about, and if so, what do I do about it?
    Thanks

    That error message comes from third-party software that you installed. If it isn't working, either remove it according to the developer's instructions, reinstall it, or refer to the developer for support. Back up all data before making any changes.

  • Java - Constant Network Activity - Eating up Internet Bandwidth!

    Hi,
    The Process "java"is constantly sending data (100-140 KB/sec) and receiving Data (2-4 KB/sec) 24x7.
    I have terminated all "cloud" applications (iCloud, Google Drive, Dropbox and CrashPlan etc.). The total
    Data sent is about 150 MB in less than 15 mins after a complete reboot eating up my internet bandwidth.
    Upgraded to 10.8.3 and also the March 4th Apple update for Java 6.
    Called AppleCare and they acknowledged the issue, but sent me off to a Java customer support line
    who then turned me down (as I was not a licensed/commercial user of Java). Applecare was useless.
    Anyone else having the same issue? How can I completely uninstall Java? Any help or insight is appreciated.
    BR,
    Raj

    Bingo! That was it. Many thanks for connecting CrashPlan and Java. I thought exiting the CrashPlan application would turn this backup service off. But as you suggested CrashPlan runs a Java Daemon/Engine in the background even after exiting the CrashPlan application.
    The below command effectively shutsdown the CrashPlan's Java background Engine and the network activity ceased immediately.
    sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist
    (From CrashPlan's support site: http://support.crashplan.com/doku.php/recipe/stop_and_start_engine )
    Many thanks Linc Davis.

  • Software Updater autostarts on Mac

    Hello,
    Nokia Software Updater 3.0.400 running on Mac OS 10.6.8.
    Every time I turn on my computer, Software Updater starts and sits its little icon up with the power and wireless icons. The application itself doesn't open, thank goodness.
    There's no reference to this in System Preferences > Accounts > Login Items.
    I'd really like this to stop!
    Cheers

    Hmm... 3.0.400 did indeed load Belle onto my N8. No backup/restore required. My apps were missing but their settings were still there after downloading them again.
    As for the OP I'm not sure which Library folder it goes into, but run this in the Terminal (you will need an administrator password for this)...
    sudo launchctl unload /Library/LaunchAgents/com.nokia.NokiaSoftwareUpdaterAgent.plist
    If that doesn't return an error, look in /Library/LaunchAgents/ for the file named "com.nokia.NokiaSoftwareUpdaterAgent.plist". That file may safely be moved, but save it else where.
    If it does return an error, try...
    launchctl unload ~/Library/LaunchAgents/com.nokia.NokiaSoftwareUpdaterAgent.plist
    Then look in [your user folder]/Library/LaunchAgents/ for the file named "com.nokia.NokiaSoftwareUpdaterAgent.plist" and move it else where.

  • Launchd .plist breaks when periodic daily runs

    Why does my launchd .plist break when periodic daily runs?
    I wrote a script basically like this
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>GroupName</key>
    <string>wheel</string>
    <key>Label</key>
    <string>MacPeter.thingy</string>
    <key>Program</key>
    <string>/usr/local/sbin/my_script</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/sbin/my_script</string>
    </array>
    <key>StandardErrorPath</key>
    <string>/dev/null</string>
    <key>StandardOutPath</key>
    <string>/var/log/myotherlog.log</string>
    <key>UserName</key>
    <string>root</string>
    <key>WatchPaths</key>
    <array>
    <string>/var/log/my_log.log</string>
    </array>
    </dict>
    </plist>
    I had to do some of this at the command line with sudo to get this .plist file into /Library/LaunchAgents and launch it. The idea is that watches the log file
    my_log.log (which I have created) and when there is activity on this log file it runs my_script, outputting the results to myotherlog.log.
    In order to avoid my_log simply growing unmanageably I also modified the /etc/daily file to add my_log to the list of logs which are rotated daily at 3:15 a.m. At 3.15, periodic daily runs, it moves and gzips my_log.log to my_log.log.0.gz and it creates a fresh my_log.log using touch.
    At this point my .plist remains loaded but stops working: it nolonger watches the new my_log.log.
    As a workaround I have put the following lines in /etc/daily.local:
    launchctl unload /Library/LaunchAgents/MacPeter.thingy.plist
    launchctl load /Library/LaunchAgents/MacPeter.thingy.plist
    This solves the problem. My question:
    Is my workaround really necessary or am I missing some other point about
    using launchd and .plist files?
    G5 single processor   Mac OS X (10.4)  

    Just as a quick guess, I would say that nothing actually breaks, you just need to keep in mind that if you roll the log you need to also reopen the file handle that points to the log file. If you don't reopen the file it will continue to look at the old, possible unlinked file pointer until the process is restarted.
    Not having much to do with launchd I would assume that this is what is happening. You need to get it to reopen the log file after is it rolled.
    Seeya...Q

  • PSE 8.0 and Snow Leopard "Licensing for this product stopped working" issue

    Hi!
    I'm trying to install newest Photoshop Elements 8 on the Snow Leopard and... so far without any good news. The installation process goes without any warnings or errors, hovewer when I try to run it, I get this information:
    I tried to remove everything i have of Adobe (Acrobat etc), even removed Adobe Application Support and Prefs, but so far no luck. Can anybody help me with that issue?
    Best regards and thanks for help!
    Sebastian Konkol

    No, unfortunately it's not it. I checked every way and its simply doesn't work. As attachements I present logs from PSE run. Maybe this will point us to the right direction. I have no idea what I'm doing wrong
    2009-10-08 13:17:13 [1373] ALM: _info_: ==========================================
    2009-10-08 13:17:13 [1373] ALM: _info_: Start ALM 3.1 Release (build 3.1.0.1029)
    2009-10-08 13:17:13 [1373] ALM: _info_: Host app is Licensable App
    2009-10-08 13:17:13 [1373] ALM: _info_: Found LEID PhotoshopElements-8.0-Mac-GM with AMT Path /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT
    2009-10-08 13:17:13 [1373] ALM: _info_: MediaTagPolicy is RET
    2009-10-08 13:17:13 [1373] ALM: _info_: Canonical LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:13 [1373] ALM: _info_: Driver LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:13 [1373] ALM: _info_: Loading adobeconfig (version = 2.5) for LEID PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:15 [1373] ALM: _time_: (func: ALM_Initialize, duration: 1.683 sec)
    2009-10-08 13:17:15 [1373] ALM: _info_:
    2009-10-08 13:17:15 [1373] ALM: _info_: Validate license at Pre-Chrome time
    2009-10-08 13:17:15 [1373] ALM: _info_: Searching license for locale en_US ...
    2009-10-08 13:17:15 [1373] ALM: _info_: Found existing serialization under LEID PhotoshopElements-8.0-Mac-GM, the serial number locale is ALL
    2009-10-08 13:17:15 [1373] ALM: _info_: Scan trusted storage
    2009-10-08 13:17:15 [1373] ALM: __req_: (func: ALM_TrustStorage_AccessTS, line: 592)
    2009-10-08 13:17:15 [1373] ALM: _info_: Failed to scan trusted storage: 150 : 30
    2009-10-08 13:17:15 [1373] ALM: _info_: Current license status is Invalid, license type is None (P=0x00, S=0x00, R=-1)
    2009-10-08 13:17:15 [1373] ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.517 sec)
    2009-10-08 13:17:15 [1373] ALM: _info_: ALM_License_SilentValidate return license status: Invalid and error: 150 : 30
    2009-10-08 13:17:15 [1373] ALM: _info_:
    2009-10-08 13:17:19 [1373] ALM: _info_:
    2009-10-08 13:17:19 [1373] ALM: _time_: (func: ALM_Terminate, duration: 0.033 sec)
    2009-10-08 13:17:19 [1373] ALM: _info_: End ALM
    2009-10-08 13:17:19 [1373] ALM: _info_: ==========================================
    2009-10-08 13:24:26 [1737] ALM: _info_: ==========================================
    2009-10-08 13:24:26 [1737] ALM: _info_: Start ALM 3.1 Release (build 3.1.0.1029)
    2009-10-08 13:24:26 [1737] ALM: _info_: Host app is Licensable App
    2009-10-08 13:24:26 [1737] ALM: _info_: Found LEID PhotoshopElements-8.0-Mac-GM with AMT Path /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT
    2009-10-08 13:24:26 [1737] ALM: _info_: MediaTagPolicy is RET
    2009-10-08 13:24:26 [1737] ALM: _info_: Canonical LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737] ALM: _info_: Driver LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737] ALM: _info_: Loading adobeconfig (version = 2.5) for LEID PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737] ALM: _time_: (func: ALM_Initialize, duration: 0.033 sec)
    2009-10-08 13:24:26 [1737] ALM: _info_:
    2009-10-08 13:24:26 [1737] ALM: _info_: Validate license at Pre-Chrome time
    2009-10-08 13:24:26 [1737] ALM: _info_: Searching license for locale en_US ...
    2009-10-08 13:24:26 [1737] ALM: _info_: Found existing serialization under LEID PhotoshopElements-8.0-Mac-GM, the serial number locale is ALL
    2009-10-08 13:24:26 [1737] ALM: _info_: Scan trusted storage
    2009-10-08 13:24:26 [1737] ALM: __req_: (func: ALM_TrustStorage_AccessTS, line: 592)
    2009-10-08 13:24:26 [1737] ALM: _info_: Failed to scan trusted storage: 150 : 30
    2009-10-08 13:24:26 [1737] ALM: _info_: Current license status is Invalid, license type is None (P=0x00, S=0x00, R=-1)
    2009-10-08 13:24:26 [1737] ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.033 sec)
    2009-10-08 13:24:26 [1737] ALM: _info_: ALM_License_SilentValidate return license status: Invalid and error: 150 : 30
    2009-10-08 13:24:26 [1737] ALM: _info_:
    2009-10-08 13:24:28 [1737] ALM: _info_:
    2009-10-08 13:24:28 [1737] ALM: _time_: (func: ALM_Terminate, duration: 0.000 sec)
    2009-10-08 13:24:28 [1737] ALM: _info_: End ALM
    2009-10-08 13:24:28 [1737] ALM: _info_: ==========================================
    2009-10-08 13:24:32 [1743] ALM: _info_: ==========================================
    2009-10-08 13:24:32 [1743] ALM: _info_: Start ALM 3.1 Release (build 3.1.0.1029)
    2009-10-08 13:24:32 [1743] ALM: _info_: Host app is Licensable App
    2009-10-08 13:24:32 [1743] ALM: _info_: Found LEID PhotoshopElements-8.0-Mac-GM with AMT Path /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT
    2009-10-08 13:24:32 [1743] ALM: _info_: MediaTagPolicy is RET
    2009-10-08 13:24:32 [1743] ALM: _info_: Canonical LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743] ALM: _info_: Driver LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743] ALM: _info_: Loading adobeconfig (version = 2.5) for LEID PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743] ALM: _time_: (func: ALM_Initialize, duration: 0.033 sec)
    2009-10-08 13:24:32 [1743] ALM: _info_:
    2009-10-08 13:24:32 [1743] ALM: _info_: Validate license at Pre-Chrome time
    2009-10-08 13:24:32 [1743] ALM: _info_: Searching license for locale en_US ...
    2009-10-08 13:24:32 [1743] ALM: _info_: Found existing serialization under LEID PhotoshopElements-8.0-Mac-GM, the serial number locale is ALL
    2009-10-08 13:24:32 [1743] ALM: _info_: Scan trusted storage
    2009-10-08 13:24:32 [1743] ALM: __req_: (func: ALM_TrustStorage_AccessTS, line: 592)
    2009-10-08 13:24:32 [1743] ALM: _info_: Failed to scan trusted storage: 150 : 30
    2009-10-08 13:24:32 [1743] ALM: _info_: Current license status is Invalid, license type is None (P=0x00, S=0x00, R=-1)
    2009-10-08 13:24:32 [1743] ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.017 sec)
    2009-10-08 13:24:32 [1743] ALM: _info_: ALM_License_SilentValidate return license status: Invalid and error: 150 : 30
    2009-10-08 13:24:32 [1743] ALM: _info_:
    2009-10-08 13:24:33 [1743] ALM: _info_:
    2009-10-08 13:24:33 [1743] ALM: _time_: (func: ALM_Terminate, duration: 0.000 sec)
    2009-10-08 13:24:33 [1743] ALM: _info_: End ALM
    2009-10-08 13:24:33 [1743] ALM: _info_: ==========================================
    2009-10-08 13:25:13 [1762] ALM: _info_: ==========================================
    2009-10-08 13:25:13 [1762] ALM: _info_: Start ALM 3.1 Release (build 3.1.0.1029)
    2009-10-08 13:25:13 [1762] ALM: _info_: Host app is Licensable App
    2009-10-08 13:25:13 [1762] ALM: _info_: Found LEID PhotoshopElements-8.0-Mac-GM with AMT Path /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT
    2009-10-08 13:25:13 [1762] ALM: _info_: MediaTagPolicy is RET
    2009-10-08 13:25:13 [1762] ALM: _info_: Canonical LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762] ALM: _info_: Driver LEID is PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762] ALM: _info_: Loading adobeconfig (version = 2.5) for LEID PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762] ALM: _time_: (func: ALM_Initialize, duration: 0.033 sec)
    2009-10-08 13:25:13 [1762] ALM: _info_:
    2009-10-08 13:25:13 [1762] ALM: _info_: Validate license at Pre-Chrome time
    2009-10-08 13:25:13 [1762] ALM: _info_: Searching license for locale en_US ...
    2009-10-08 13:25:13 [1762] ALM: _info_: Found existing serialization under LEID PhotoshopElements-8.0-Mac-GM, the serial number locale is ALL
    2009-10-08 13:25:13 [1762] ALM: _info_: Scan trusted storage
    2009-10-08 13:25:13 [1762] ALM: __req_: (func: ALM_TrustStorage_AccessTS, line: 592)
    2009-10-08 13:25:13 [1762] ALM: _info_: Failed to scan trusted storage: 150 : 30
    2009-10-08 13:25:13 [1762] ALM: _info_: Current license status is Invalid, license type is None (P=0x00, S=0x00, R=-1)
    2009-10-08 13:25:13 [1762] ALM: _time_: (func: ALM_License_SilentValidate, duration: 0.017 sec)
    2009-10-08 13:25:13 [1762] ALM: _info_: ALM_License_SilentValidate return license status: Invalid and error: 150 : 30
    2009-10-08 13:25:13 [1762] ALM: _info_:
    2009-10-08 13:25:14 [1762] ALM: _info_:
    2009-10-08 13:25:14 [1762] ALM: _time_: (func: ALM_Terminate, duration: 0.000 sec)
    2009-10-08 13:25:14 [1762] ALM: _info_: End ALM
    2009-10-08 13:25:14 [1762] ALM: _info_: ==========================================
    2009-10-08 13:17:08 [1373]  AMT: START SESSION, library version 2.1.0.1029,55.395602
    2009-10-08 13:17:08 [1373]  AMT: Initializing /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/
    2009-10-08 13:17:08 [1373]  AMT: Adobe License Manager version 3.1 (build 0.1029) RELEASE
    2009-10-08 13:17:08 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_caps.framework/adobe_caps
    2009-10-08 13:17:08 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_caps.framework/adobe_caps
    2009-10-08 13:17:08 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    2009-10-08 13:17:08 [1373]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/Versions/a/adobe_caps
    2009-10-08 13:17:08 [1373]  PCDService: PCD Service in threaded mode
    2009-10-08 13:17:08 [1373]  performance: AMTPreObtainProductLicense took 945.976013 ms
    2009-10-08 13:17:08 [1373]  PCD thread: PCD thread started
    2009-10-08 13:17:12 [1373]  AMT: App Product Locale [0] = en_US
    2009-10-08 13:17:12 [1373]  config: Loading configuration for /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:17:12 [1373]  config: Found payload code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  PCDService: found driver code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  config: config: Host app was installed, using installed license configuration.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [FLMap] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:17:12 [1373]  config: Setting current license to the driver at startup because no mapping was found.
    2009-10-08 13:17:12 [1373]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:17:12 [1373]  config: payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  config: driver payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  config: driver licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:12 [1373]  config: current licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:12 [1373]  config: current locale code: ALL
    2009-10-08 13:17:12 [1373]  config: Done loading configuration
    2009-10-08 13:17:12 [1373]  config: Setting insalled locales
    2009-10-08 13:17:12 [1373]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2009-10-08 13:17:12 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/asneu.framework/asneu
    2009-10-08 13:17:12 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/asneu.framework/asneu
    2009-10-08 13:17:12 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/asneu
    2009-10-08 13:17:12 [1373]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    2009-10-08 13:17:12 [1373]  AMT: App's last known config file is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:17:12 [1373]  apf: current config file path is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:17:12 [1373]  AMT: config: Finding license info for payload: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  AMT: config: PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  AMT: config: Driver PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:12 [1373]  AMT: config: Installed LicensingCode: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [EULA] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [Registration] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [SuiteFeatureCount] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:12 [1373]  AMT: Application is serialized.
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:17:12 [1373]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:12 [1373]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [LineCV 6] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [LineCV 7] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:17:13 [1373]  AMT: First launch (serial [91559707549689026016]).
    2009-10-08 13:17:13 [1373]  AMT: Application state initialized.  Obtaining Product License.
    2009-10-08 13:17:13 [1373]  AMT: Obtaining client features from cache.
    2009-10-08 13:17:13 [1373]  AMT: Obtaining client product info from cache.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:13 [1373]  AMT: Forcing first launch workflow because product is not licensed from previous launch.
    2009-10-08 13:17:13 [1373]  AMT: AMT: Obtaining Product License.
    2009-10-08 13:17:13 [1373]  AMT: Launch Workflow not yet done in foreground in this session.
    2009-10-08 13:17:13 [1373]  AMT: Starting First Launch Workflow
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_eula.framework/adobe_eula
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_eula.framework/adobe_eula
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    2009-10-08 13:17:13 [1373]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/Versions/a/adobe_eula
    2009-10-08 13:17:13 [1373]  AMT: EULA has already been accepted.
    2009-10-08 13:17:13 [1373]  AMT: Starting ALM workflow.
    2009-10-08 13:17:13 [1373]  AMT: Initializing ALM for serialized activation.
    2009-10-08 13:17:13 [1373]  ALMService: Initializing as licensed app
    2009-10-08 13:17:13 [1373]  ALMService: Setting FNP path to /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [PhotoshopElements-8.0-Mac-GM{|}0] in hive [SSC-8.0-LE-Dominance] in master.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [NTL_WO_SN] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:13 [1373]  PCDService: No value for key [915597064391354245422795] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a/adobelm.framework/adobelm
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/adobelm.framework/adobelm
    2009-10-08 13:17:13 [1373]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/adobelm
    2009-10-08 13:17:13 [1373]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/Versions/a/adobelm
    2009-10-08 13:17:13 [1373]  ServiceLoader: Removing reference to library adobelm.framework/adobelm
    2009-10-08 13:17:13 [1373]  ServiceLoader: Unloading library adobelm.framework/adobelm
    2009-10-08 13:17:15 [1373]  AMT: Performing ALM silent license verification.
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [EncryptedSerial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [Serial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:17:15 [1373]  config: No pre-serial number found in {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:17:15 [1373]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:17:15 [1373]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:17:15 [1373]  ALMService: License_Check error 150:30. (Errno = 2)
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:15 [1373]  AMT: ALM failed to initialize and read trusted storage, hence no license.
    2009-10-08 13:17:15 [1373]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:17:15 [1373]  AMT: Starting Data Collection for SWTag_Init()
    2009-10-08 13:17:15 [1373]  AMT: DoISOTagging() productCanonicalLEID = PhotoshopElements-8.0-Mac-GM;outMappedLEID =  PhotoshopElements-8.0-Mac-GM, unused = ¿Ô ≈;
    2009-10-08 13:17:15 [1373]  AMT: DoISOTagging() productPayloadCode = {31740D0A-72CF-4B95-A6B3-B43D6DDE573D};driverPayloadCode =  {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:17:15 [1373]  AMT: SWTag_Init() Tags Arguments Photoshop Elements 8.0; PhotoshopElements-8.0-Mac-GM;
    2009-10-08 13:17:15 [1373]  AMT: DoISOTagging() License Status = unlicensed
    2009-10-08 13:17:15 [1373]  AMT: DoISOTagging() Tags 915597075496890260169626; 8.0; UNKNOWN
    2009-10-08 13:17:15 [1373]  AMT: DoISOTagging() Product Version 8; 0
    2009-10-08 13:17:15 [1373]  performance: AMTObtainProductLicense took 3421.683105 ms
    2009-10-08 13:17:19 [1373]  ALMService: Terminating
    2009-10-08 13:17:19 [1373]  PCDService: shutdown requested
    2009-10-08 13:17:19 [1373]  PCD thread: PCD thread terminated
    2009-10-08 13:17:19 [1373]  performance: AMTReleaseProductLicense took 64.610001 ms
    2009-10-08 13:17:19 [1373]  AMT: END SESSION.
    2009-10-08 13:24:25 [1737]  AMT: START SESSION, library version 2.1.0.1029,55.395602
    2009-10-08 13:24:25 [1737]  AMT: Initializing /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/
    2009-10-08 13:24:25 [1737]  AMT: Adobe License Manager version 3.1 (build 0.1029) RELEASE
    2009-10-08 13:24:25 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:25 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:25 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:25 [1737]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/Versions/a/adobe_caps
    2009-10-08 13:24:25 [1737]  PCDService: PCD Service in threaded mode
    2009-10-08 13:24:25 [1737]  performance: AMTPreObtainProductLicense took 77.275002 ms
    2009-10-08 13:24:25 [1737]  PCD thread: PCD thread started
    2009-10-08 13:24:26 [1737]  AMT: App Product Locale [0] = en_US
    2009-10-08 13:24:26 [1737]  config: Loading configuration for /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:26 [1737]  config: Found payload code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  PCDService: found driver code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  config: config: Host app was installed, using installed license configuration.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [FLMap] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:26 [1737]  config: Setting current license to the driver at startup because no mapping was found.
    2009-10-08 13:24:26 [1737]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:24:26 [1737]  config: payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  config: driver payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  config: driver licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737]  config: current licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737]  config: current locale code: ALL
    2009-10-08 13:24:26 [1737]  config: Done loading configuration
    2009-10-08 13:24:26 [1737]  config: Setting insalled locales
    2009-10-08 13:24:26 [1737]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/asneu.framework/asneu
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/asneu.framework/asneu
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/asneu
    2009-10-08 13:24:26 [1737]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    2009-10-08 13:24:26 [1737]  AMT: App's last known config file is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:26 [1737]  apf: current config file path is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:26 [1737]  AMT: config: Finding license info for payload: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  AMT: config: PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  AMT: config: Driver PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  AMT: config: Installed LicensingCode: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [EULA] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [Registration] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [SuiteFeatureCount] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  AMT: Application is serialized.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:24:26 [1737]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [LineCV 6] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [LineCV 7] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:26 [1737]  AMT: First launch (serial [91559707549689026016]).
    2009-10-08 13:24:26 [1737]  AMT: Application state initialized.  Obtaining Product License.
    2009-10-08 13:24:26 [1737]  AMT: Obtaining client features from cache.
    2009-10-08 13:24:26 [1737]  AMT: Obtaining client product info from cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  AMT: Forcing first launch workflow because product is not licensed from previous launch.
    2009-10-08 13:24:26 [1737]  AMT: AMT: Obtaining Product License.
    2009-10-08 13:24:26 [1737]  AMT: Launch Workflow not yet done in foreground in this session.
    2009-10-08 13:24:26 [1737]  AMT: Starting First Launch Workflow
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:26 [1737]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/Versions/a/adobe_eula
    2009-10-08 13:24:26 [1737]  AMT: EULA has already been accepted.
    2009-10-08 13:24:26 [1737]  AMT: Starting ALM workflow.
    2009-10-08 13:24:26 [1737]  AMT: Initializing ALM for serialized activation.
    2009-10-08 13:24:26 [1737]  ALMService: Initializing as licensed app
    2009-10-08 13:24:26 [1737]  ALMService: Setting FNP path to /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [PhotoshopElements-8.0-Mac-GM{|}0] in hive [SSC-8.0-LE-Dominance] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [NTL_WO_SN] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [915597064391354245422795] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a/adobelm.framework/adobelm
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/adobelm.framework/adobelm
    2009-10-08 13:24:26 [1737]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/adobelm
    2009-10-08 13:24:26 [1737]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/Versions/a/adobelm
    2009-10-08 13:24:26 [1737]  ServiceLoader: Removing reference to library adobelm.framework/adobelm
    2009-10-08 13:24:26 [1737]  ServiceLoader: Unloading library adobelm.framework/adobelm
    2009-10-08 13:24:26 [1737]  AMT: Performing ALM silent license verification.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [EncryptedSerial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [Serial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:24:26 [1737]  config: No pre-serial number found in {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:24:26 [1737]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:26 [1737]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:24:26 [1737]  ALMService: License_Check error 150:30. (Errno = 2)
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  AMT: ALM failed to initialize and read trusted storage, hence no license.
    2009-10-08 13:24:26 [1737]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:26 [1737]  AMT: Starting Data Collection for SWTag_Init()
    2009-10-08 13:24:26 [1737]  AMT: DoISOTagging() productCanonicalLEID = PhotoshopElements-8.0-Mac-GM;outMappedLEID =  PhotoshopElements-8.0-Mac-GM, unused =
    2009-10-08 13:24:26 [1737]  AMT: DoISOTagging() productPayloadCode = {31740D0A-72CF-4B95-A6B3-B43D6DDE573D};driverPayloadCode =  {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:26 [1737]  AMT: SWTag_Init() Tags Arguments Photoshop Elements 8.0; PhotoshopElements-8.0-Mac-GM;
    2009-10-08 13:24:26 [1737]  AMT: DoISOTagging() License Status = unlicensed
    2009-10-08 13:24:26 [1737]  AMT: DoISOTagging() Tags 915597075496890260169626; 8.0; UNKNOWN
    2009-10-08 13:24:26 [1737]  AMT: DoISOTagging() Product Version 8; 0
    2009-10-08 13:24:26 [1737]  performance: AMTObtainProductLicense took 118.232002 ms
    2009-10-08 13:24:28 [1737]  ALMService: Terminating
    2009-10-08 13:24:28 [1737]  PCDService: shutdown requested
    2009-10-08 13:24:28 [1737]  PCD thread: PCD thread terminated
    2009-10-08 13:24:28 [1737]  performance: AMTReleaseProductLicense took 0.855000 ms
    2009-10-08 13:24:28 [1737]  AMT: END SESSION.
    2009-10-08 13:24:31 [1743]  AMT: START SESSION, library version 2.1.0.1029,55.395602
    2009-10-08 13:24:31 [1743]  AMT: Initializing /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/
    2009-10-08 13:24:31 [1743]  AMT: Adobe License Manager version 3.1 (build 0.1029) RELEASE
    2009-10-08 13:24:31 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:31 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:31 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    2009-10-08 13:24:31 [1743]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/Versions/a/adobe_caps
    2009-10-08 13:24:31 [1743]  PCDService: PCD Service in threaded mode
    2009-10-08 13:24:31 [1743]  performance: AMTPreObtainProductLicense took 9.447000 ms
    2009-10-08 13:24:31 [1743]  PCD thread: PCD thread started
    2009-10-08 13:24:32 [1743]  AMT: App Product Locale [0] = en_US
    2009-10-08 13:24:32 [1743]  config: Loading configuration for /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:32 [1743]  config: Found payload code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  PCDService: found driver code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  config: config: Host app was installed, using installed license configuration.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [FLMap] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:32 [1743]  config: Setting current license to the driver at startup because no mapping was found.
    2009-10-08 13:24:32 [1743]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:24:32 [1743]  config: payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  config: driver payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  config: driver licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743]  config: current licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743]  config: current locale code: ALL
    2009-10-08 13:24:32 [1743]  config: Done loading configuration
    2009-10-08 13:24:32 [1743]  config: Setting insalled locales
    2009-10-08 13:24:32 [1743]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/asneu.framework/asneu
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/asneu.framework/asneu
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/asneu
    2009-10-08 13:24:32 [1743]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    2009-10-08 13:24:32 [1743]  AMT: App's last known config file is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:32 [1743]  apf: current config file path is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:24:32 [1743]  AMT: config: Finding license info for payload: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  AMT: config: PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  AMT: config: Driver PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  AMT: config: Installed LicensingCode: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [EULA] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [Registration] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [SuiteFeatureCount] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  AMT: Application is serialized.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:24:32 [1743]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [LineCV 6] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [LineCV 7] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:32 [1743]  AMT: First launch (serial [91559707549689026016]).
    2009-10-08 13:24:32 [1743]  AMT: Application state initialized.  Obtaining Product License.
    2009-10-08 13:24:32 [1743]  AMT: Obtaining client features from cache.
    2009-10-08 13:24:32 [1743]  AMT: Obtaining client product info from cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  AMT: Forcing first launch workflow because product is not licensed from previous launch.
    2009-10-08 13:24:32 [1743]  AMT: AMT: Obtaining Product License.
    2009-10-08 13:24:32 [1743]  AMT: Launch Workflow not yet done in foreground in this session.
    2009-10-08 13:24:32 [1743]  AMT: Starting First Launch Workflow
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    2009-10-08 13:24:32 [1743]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/Versions/a/adobe_eula
    2009-10-08 13:24:32 [1743]  AMT: EULA has already been accepted.
    2009-10-08 13:24:32 [1743]  AMT: Starting ALM workflow.
    2009-10-08 13:24:32 [1743]  AMT: Initializing ALM for serialized activation.
    2009-10-08 13:24:32 [1743]  ALMService: Initializing as licensed app
    2009-10-08 13:24:32 [1743]  ALMService: Setting FNP path to /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [PhotoshopElements-8.0-Mac-GM{|}0] in hive [SSC-8.0-LE-Dominance] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [NTL_WO_SN] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [915597064391354245422795] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a/adobelm.framework/adobelm
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/adobelm.framework/adobelm
    2009-10-08 13:24:32 [1743]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/adobelm
    2009-10-08 13:24:32 [1743]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/Versions/a/adobelm
    2009-10-08 13:24:32 [1743]  ServiceLoader: Removing reference to library adobelm.framework/adobelm
    2009-10-08 13:24:32 [1743]  ServiceLoader: Unloading library adobelm.framework/adobelm
    2009-10-08 13:24:32 [1743]  AMT: Performing ALM silent license verification.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [EncryptedSerial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [Serial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:24:32 [1743]  config: No pre-serial number found in {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:24:32 [1743]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:24:32 [1743]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:24:32 [1743]  ALMService: License_Check error 150:30. (Errno = 2)
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  AMT: ALM failed to initialize and read trusted storage, hence no license.
    2009-10-08 13:24:32 [1743]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:24:32 [1743]  AMT: Starting Data Collection for SWTag_Init()
    2009-10-08 13:24:32 [1743]  AMT: DoISOTagging() productCanonicalLEID = PhotoshopElements-8.0-Mac-GM;outMappedLEID =  PhotoshopElements-8.0-Mac-GM, unused = ¿ø Í¥
    2009-10-08 13:24:32 [1743]  AMT: DoISOTagging() productPayloadCode = {31740D0A-72CF-4B95-A6B3-B43D6DDE573D};driverPayloadCode =  {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:24:32 [1743]  AMT: SWTag_Init() Tags Arguments Photoshop Elements 8.0; PhotoshopElements-8.0-Mac-GM;
    2009-10-08 13:24:32 [1743]  AMT: DoISOTagging() License Status = unlicensed
    2009-10-08 13:24:32 [1743]  AMT: DoISOTagging() Tags 915597075496890260169626; 8.0; UNKNOWN
    2009-10-08 13:24:32 [1743]  AMT: DoISOTagging() Product Version 8; 0
    2009-10-08 13:24:32 [1743]  performance: AMTObtainProductLicense took 78.894997 ms
    2009-10-08 13:24:33 [1743]  ALMService: Terminating
    2009-10-08 13:24:33 [1743]  PCDService: shutdown requested
    2009-10-08 13:24:33 [1743]  PCD thread: PCD thread terminated
    2009-10-08 13:24:33 [1743]  performance: AMTReleaseProductLicense took 1.030000 ms
    2009-10-08 13:24:33 [1743]  AMT: END SESSION.
    2009-10-08 13:25:12 [1762]  AMT: START SESSION, library version 2.1.0.1029,55.395602
    2009-10-08 13:25:12 [1762]  AMT: Initializing /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/
    2009-10-08 13:25:12 [1762]  AMT: Adobe License Manager version 3.1 (build 0.1029) RELEASE
    2009-10-08 13:25:12 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_caps.framework/adobe_caps
    2009-10-08 13:25:12 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_caps.framework/adobe_caps
    2009-10-08 13:25:12 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    2009-10-08 13:25:12 [1762]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_caps.framework/Versions/a/adobe_caps
    2009-10-08 13:25:12 [1762]  PCDService: PCD Service in threaded mode
    2009-10-08 13:25:12 [1762]  performance: AMTPreObtainProductLicense took 10.394000 ms
    2009-10-08 13:25:12 [1762]  PCD thread: PCD thread started
    2009-10-08 13:25:12 [1762]  AMT: App Product Locale [0] = en_US
    2009-10-08 13:25:12 [1762]  config: Loading configuration for /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:25:12 [1762]  config: Found payload code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  PCDService: found driver code {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  config: config: Host app was installed, using installed license configuration.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [FLMap] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:25:13 [1762]  config: Setting current license to the driver at startup because no mapping was found.
    2009-10-08 13:25:13 [1762]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:25:13 [1762]  config: payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  config: driver payload code: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  config: driver licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762]  config: current licensing code: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762]  config: current locale code: ALL
    2009-10-08 13:25:13 [1762]  config: Done loading configuration
    2009-10-08 13:25:13 [1762]  config: Setting insalled locales
    2009-10-08 13:25:13 [1762]  config: Changing locale to "en_US" because old locale "" is not in the new list of installed languages
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/asneu.framework/asneu
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/asneu.framework/asneu
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/asneu
    2009-10-08 13:25:13 [1762]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    2009-10-08 13:25:13 [1762]  AMT: App's last known config file is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:25:13 [1762]  apf: current config file path is: /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Resources/AMT/application.xml
    2009-10-08 13:25:13 [1762]  AMT: config: Finding license info for payload: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  AMT: config: PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  AMT: config: Driver PayloadCode: {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  AMT: config: Installed LicensingCode: PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ISO_TAGGING_DISABLED] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [EULA] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [Registration] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [Updates] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [SuiteFeatureCount] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  AMT: Application is serialized.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:25:13 [1762]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [LineCV 6] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [LineCV 7] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:25:13 [1762]  AMT: First launch (serial [91559707549689026016]).
    2009-10-08 13:25:13 [1762]  AMT: Application state initialized.  Obtaining Product License.
    2009-10-08 13:25:13 [1762]  AMT: Obtaining client features from cache.
    2009-10-08 13:25:13 [1762]  AMT: Obtaining client product info from cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  AMT: Forcing first launch workflow because product is not licensed from previous launch.
    2009-10-08 13:25:13 [1762]  AMT: AMT: Obtaining Product License.
    2009-10-08 13:25:13 [1762]  AMT: Launch Workflow not yet done in foreground in this session.
    2009-10-08 13:25:13 [1762]  AMT: Starting First Launch Workflow
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/a/adobe_eula.framework/adobe_eula
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtservices.framework/Versions/adobe_eula.framework/adobe_eula
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    2009-10-08 13:25:13 [1762]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobe_eula.framework/Versions/a/adobe_eula
    2009-10-08 13:25:13 [1762]  AMT: EULA has already been accepted.
    2009-10-08 13:25:13 [1762]  AMT: Starting ALM workflow.
    2009-10-08 13:25:13 [1762]  AMT: Initializing ALM for serialized activation.
    2009-10-08 13:25:13 [1762]  ALMService: Initializing as licensed app
    2009-10-08 13:25:13 [1762]  ALMService: Setting FNP path to /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [PhotoshopElements-8.0-Mac-GM{|}0] in hive [SSC-8.0-LE-Dominance] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [NTL_WO_SN] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [915597064391354245422795] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/a/adobelm.framework/adobelm
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/amtlib.framework/Versions/adobelm.framework/adobelm
    2009-10-08 13:25:13 [1762]  ServiceLoader: looking for library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/adobelm
    2009-10-08 13:25:13 [1762]  ServiceLoader: Found library /Applications/Adobe Photoshop Elements 8/Adobe Photoshop Elements.app/Contents/Frameworks/adobelm.framework/Versions/a/adobelm
    2009-10-08 13:25:13 [1762]  ServiceLoader: Removing reference to library adobelm.framework/adobelm
    2009-10-08 13:25:13 [1762]  ServiceLoader: Unloading library adobelm.framework/adobelm
    2009-10-08 13:25:13 [1762]  AMT: Performing ALM silent license verification.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [EncryptedSerial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [Serial] in hive [{31740D0A-72CF-4B95-A6B3-B43D6DDE573D}] in cache.
    2009-10-08 13:25:13 [1762]  config: No pre-serial number found in {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [SN] in hive [PhotoshopElements-8.0-Mac-GM{|}en_US] in cache.
    2009-10-08 13:25:13 [1762]  config: No en_US licensed serial number found in PhotoshopElements-8.0-Mac-GM
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [915597075496890260169626] in hive [RejectedSNDomain_CS4] in cache.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [CacheStatus] in hive [PhotoshopElements-8.0-Mac-GM{|}ALL] in cache.
    2009-10-08 13:25:13 [1762]  config: Setting current license to PhotoshopElements-8.0-Mac-GM [ALL]
    2009-10-08 13:25:13 [1762]  ALMService: License_Check error 150:30. (Errno = 2)
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  AMT: ALM failed to initialize and read trusted storage, hence no license.
    2009-10-08 13:25:13 [1762]  PCDService: No value for key [ExpirationDate] in hive [PhotoshopElements-8.0-Mac-GM] in master.
    2009-10-08 13:25:13 [1762]  AMT: Starting Data Collection for SWTag_Init()
    2009-10-08 13:25:13 [1762]  AMT: DoISOTagging() productCanonicalLEID = PhotoshopElements-8.0-Mac-GM;outMappedLEID =  PhotoshopElements-8.0-Mac-GM, unused =
    2009-10-08 13:25:13 [1762]  AMT: DoISOTagging() productPayloadCode = {31740D0A-72CF-4B95-A6B3-B43D6DDE573D};driverPayloadCode =  {31740D0A-72CF-4B95-A6B3-B43D6DDE573D}
    2009-10-08 13:25:13 [1762]  AMT: SWTag_Init() Tags Arguments Photoshop Elements 8.0; PhotoshopElements-8.0-Mac-GM;
    2009-10-08 13:25:13 [1762]  AMT: DoISOTagging() License Status = unlicensed
    2009-10-08 13:25:13 [1762]  AMT: DoISOTagging() Tags 915597075496890260169626; 8.0; UNKNOWN
    2009-10-08 13:25:13 [1762]  AMT: DoISOTagging() Product Version 8; 0
    2009-10-08 13:25:13 [1762]  performance: AMTObtainProductLicense took 79.235001 ms
    2009-10-08 13:25:14 [1762]  ALMService: Terminating
    2009-10-08 13:25:14 [1762]  PCDService: shutdown requested
    2009-10-08 13:25:14 [1762]  PCD thread: PCD thread terminated
    2009-10-08 13:25:14 [1762]  performance: AMTReleaseProductLicense took 0.794000 ms
    2009-10-08 13:25:14 [1762]  AMT: END SESSION.

  • I get a message that says "Safari browserversionyou are currently using does not support the community toolbar

    I get an annoying message everytime I open Safari. It reads - "Safari browser version you are currenty using does not support the commuinty toolbar" How do I get rid of this

    victoria Hamlin wrote:
    it didn't... but at least I know where to find the Library-  any other ideas?
    Instead of being installed as a standard plug-in, the Community Toolbar uses the system loader "launchd" to load the plugin on-demand whenever Safari is opened. You will need to remove three components that are installed, starting with the binary files.
    The binary file is the actual toolbar application, and is located in the /Library/InputManagers/CTLoader/ folder. Removing the entire CTLoader folder will remove the application and other files that are installed along with the toolbar. If you just care to quickly stop the toolbar from loading, doing this will be enough to keep it from loading.
    With the binary file removed, the toolbar will no longer launch; however, the system will still try to load it when Safari is opened because the system launcher instructions file is still installed. While having these instructions present will not cause a decrease in performance, removing them will prevent the system from outputting errors and warnings in the system log files.
    Removing only this instructions file is another way to stop the toolbar from loading; however, it will require either the use of the following command in the Terminal (done before removing the file) or a restart of the system after removing the file to unload the instructions from the system loader and prevent the toolbar from launching.
    sudo launchctl unload /Library/LaunchAgents/com.conduit.loader.agent.plist
    The final components to the toolbar are some resources that it uses, which are relatively benign and will become unused "orphaned" files when the other components of the toolbar are removed. These files are all located in the /Macintosh HD/Library/Application Support/ folder in a directory called Conduit. Remove this directory and the toolbar in its entirety will be removed.

  • How to uninstall Disk for iPhone (x2) ?!?!

    someone already posted about this, but that thread is archived.  I'm new to mac and wanted my iphone to behave similar to that on a PC in the sense that it can be browsed via windows explorer to batch capture photos, etc. I installed MacFuse and Disk for iPhone, but now my macbook freezes whenever I plug it in. I tried to remove the Disk for iPhone program, but to no avail. It's probably a simple answer and I'm doing something wrong. Here is what I'm trying:
    MacBook-Air:~ urbanrobots$ sudo "/Volumes/Disk\ for\ iPhone/uninstall.sh"
    Password:
    sudo: /Volumes/Disk\ for\ iPhone/uninstall.sh: command not found
    MacBook-Air:~ urbanrobots$ /Volumes/Disk\ for\ iPhone/uninstall.sh
    Stopping org.thebends.iphonedisk.mobile_fs_util
    Unloading /Library/LaunchAgents/org.thebends.iphonedisk.mobile_fs_util.plist
    launchctl: Couldn't stat("/Library/LaunchAgents/org.thebends.iphonedisk.mobile_fs_util.plist"): No such file or directory
    nothing found to unload
    Removing /Library/LaunchAgents/org.thebends.iphonedisk.mobile_fs_util.plist
    Removing /Library/iphonedisk
    this should work, no? but it's not finding the volume, so I'm a bit confused as to how to remove this program.....

    Contact the developer for help in removal. You've mucked up your system trying to make a Windows machine out of your new Mac. Let the Mac do it's thing the way it's designed and get away from Windows.

  • Launchd[1] com.makerbot.conveyor.daemon :getpwname ("_conveyor") failed

    Immediately after getting a new drive installed, and using Migration Assistant to migrate my files from a backup drive, the Console is repeating the above message every 10 seconds in Console Messages and System.log. These files are getting large!
    I had to change my user name during migration, but kept my old password.
    Any help or guidance would be much appreciated
    (Using iMac 21.5" 3.06GHz Core i3 4GB 1333MHz RAM/ 500GB Seagate HD - all updates done to OS 10.6.8)

    Well, I have finally fixed this problem myself. My Apple Dealer installed my new drive, and my system re-installation and updates. The culprit is something called "Makerbot", which is apparently for some kind of 3-D printer (which I have never had). There was no Application or Control Panel, but a lot of other "Makerbot" folders and files were left on my Mac. The solution for me was as follows:
    In Terminal (as Root):
    sudo launchctl stop com.makerbot.conveyor.daemon
    sudo launchctl unload /Library/LaunchDaemons/com.makerbot.conveyor.plist
    sudo rm -f /Library/LaunchDaemons/com.makerbot.conveyor.plist
    sudo rm -f /var/log/conveyor.log
    sudo rm -rf /Library/Frameworks/MakerBot.framework
    I now no longer have my System Log being banged every ten seconds, and seem to be back to normal.

  • Unable to print email - iMac Mail freezes

    Hi
    Just purchased a epson xp-205 printer and managed to set it up wirelessly. Everything seems fine - its scans photos and  I can print documents from Pages and Numbers. However it won't print any of my emails through Mac Mail
    Once I click the 'print' button Mail just freezes and I have to force quit it.
    I have a iMac (intel Core i5) OS X version 10.8.5.
    I have the very same problem when using my Macbook Pro.
    Any ideas out there on how I can fix this problem?
    Thanks

    24/09/2013 20:10:55.665 com.apple.launchd[1]: *** launchd[1] has started up. ***
    24/09/2013 20:11:07.000 kernel[0]: PMAP: PCID enabled
    24/09/2013 20:11:07.000 kernel[0]: Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
    24/09/2013 20:11:07.000 kernel[0]: vm_page_bootstrap: 851518 free pages and 188866 wired pages
    24/09/2013 20:11:07.000 kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    24/09/2013 20:11:07.000 kernel[0]: zone leak detection enabled
    24/09/2013 20:11:07.000 kernel[0]: standard timeslicing quantum is 10000 us
    24/09/2013 20:11:07.000 kernel[0]: standard background quantum is 2500 us
    24/09/2013 20:11:07.000 kernel[0]: mig_table_max_displ = 74
    24/09/2013 20:11:07.000 kernel[0]: TSC Deadline Timer supported and enabled
    24/09/2013 20:11:07.000 kernel[0]: corecrypto kext started!
    24/09/2013 20:11:07.000 kernel[0]: Running kernel space in FIPS MODE
    24/09/2013 20:11:07.000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    24/09/2013 20:11:07.000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    24/09/2013 20:10:55.665 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    24/09/2013 20:11:02.451 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    24/09/2013 20:11:07.000 kernel[0]: corecrypto.kext FIPS POST passed!
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    24/09/2013 20:11:07.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    24/09/2013 20:11:07.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    24/09/2013 20:11:07.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    24/09/2013 20:11:07.000 kernel[0]: calling mpo_policy_init for Sandbox
    24/09/2013 20:11:07.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    24/09/2013 20:11:07.000 kernel[0]: calling mpo_policy_init for Quarantine
    24/09/2013 20:11:07.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    24/09/2013 20:11:07.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    24/09/2013 20:11:07.000 kernel[0]: The Regents of the University of California. All rights reserved.
    24/09/2013 20:11:07.000 kernel[0]: MAC Framework successfully initialized
    24/09/2013 20:11:07.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    24/09/2013 20:11:07.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    24/09/2013 20:11:07.000 kernel[0]: ACPI: sleep states S3 S4 S5
    24/09/2013 20:11:07.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 159A
    24/09/2013 20:11:07.000 kernel[0]: AppleIntelCPUPowerManagement: (built 16:43:02 Jul 29 2013) initialization complete
    24/09/2013 20:11:07.000 kernel[0]: pci build Aug 29 2013 20:19:31, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    24/09/2013 20:11:07.000 kernel[0]: [ PCI configuration begin ]
    24/09/2013 20:11:07.000 kernel[0]: console relocated to 0xf80010000
    24/09/2013 20:11:07.000 kernel[0]: [ PCI configuration end, bridges 12, devices 17 ]
    24/09/2013 20:11:07.000 kernel[0]: Thunderbolt runtime power conservation disabled.
    24/09/2013 20:11:07.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    24/09/2013 20:11:07.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    24/09/2013 20:11:07.000 kernel[0]: rooting via boot-uuid from /chosen: 4F3C37AE-332D-312E-983A-C572739C31CE
    24/09/2013 20:11:07.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    24/09/2013 20:11:07.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    24/09/2013 20:11:07.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    24/09/2013 20:11:07.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    24/09/2013 20:11:07.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    24/09/2013 20:11:07.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    24/09/2013 20:11:07.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST31000528AS Media/IOGUIDPartitionScheme/Customer@2
    24/09/2013 20:11:07.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    24/09/2013 20:11:07.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffe7ac028; max speed s800.
    24/09/2013 20:11:07.000 kernel[0]: Kernel is LP64
    24/09/2013 20:11:07.000 kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    24/09/2013 20:11:07.000 kernel[0]: ath_get_caps[4038] rx chainmask mismatch actual 7 sc_chainmak 0
    24/09/2013 20:11:07.000 kernel[0]: 1.098652: ath_get_caps[4013] tx chainmask mismatch actual 7 sc_chainmak 0
    24/09/2013 20:11:07.000 kernel[0]: 1.102350: Atheros: mac 448.3 phy 0.0 radio 0.0
    24/09/2013 20:11:07.000 kernel[0]: 1.102360: Use hw queue 0 for WME_AC_BE traffic
    24/09/2013 20:11:07.000 kernel[0]: 1.102366: Use hw queue 1 for WME_AC_BK traffic
    24/09/2013 20:11:07.000 kernel[0]: 1.102373: Use hw queue 2 for WME_AC_VI traffic
    24/09/2013 20:11:07.000 kernel[0]: 1.102379: Use hw queue 3 for WME_AC_VO traffic
    24/09/2013 20:11:07.000 kernel[0]: 1.102385: Use hw queue 8 for CAB traffic
    24/09/2013 20:11:07.000 kernel[0]: 1.102391: Use hw queue 9 for beacons
    24/09/2013 20:11:07.000 kernel[0]: 1.102480: wlan_vap_create : enter. devhandle=0x90e786b8, opmode=IEEE80211_M_STA, flags=0x1
    24/09/2013 20:11:07.000 kernel[0]: 1.102523: wlan_vap_create : exit. devhandle=0x90e786b8, opmode=IEEE80211_M_STA, flags=0x1.
    24/09/2013 20:11:07.000 kernel[0]: USBMSC Identifier (non-unique): 201110150B46 0x939 0xb15 0x132, 2
    24/09/2013 20:11:08.820 hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    24/09/2013 20:11:08.821 hidd[47]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    24/09/2013 20:11:08.900 distnoted[20]: Bug: 12F37: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    24/09/2013 20:11:09.000 kernel[0]: Waiting for DSMOS...
    24/09/2013 20:11:09.000 kernel[0]: macx_swapon SUCCESS
    24/09/2013 20:11:09.000 kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:3a:62:ba
    24/09/2013 20:11:09.000 kernel[0]: AirPort_AtherosNewma40: Ethernet address 04:54:53:0e:17:82
    24/09/2013 20:11:09.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    24/09/2013 20:11:09.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    24/09/2013 20:11:10.570 appleeventsd[53]: main: Starting up
    24/09/2013 20:11:11.369 com.apple.usbmuxd[27]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    24/09/2013 20:11:11.372 mDNSResponder[40]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    24/09/2013 20:11:11.380 coreservicesd[61]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    24/09/2013 20:11:11.400 airportd[67]: _processDLILEvent: en1 attached (down)
    24/09/2013 20:11:11.000 kernel[0]: AtherosNewma40P2PInterface::init name <p2p0> role 1 this 0xffffff8032d27000
    24/09/2013 20:11:11.000 kernel[0]: AtherosNewma40P2PInterface::init() <p2p> role 1
    24/09/2013 20:11:11.719 com.apple.kextd[12]: Can't load /System/Library/Extensions/iavkfs.kext - no code for running kernel's architecture.
    24/09/2013 20:11:11.779 com.apple.kextd[12]: Load com.pctools.iantivirus.kfs failed; removing personalities from kernel.
    24/09/2013 20:11:12.000 kernel[0]: Previous Shutdown Cause: 5
    24/09/2013 20:11:12.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    24/09/2013 20:11:12.000 kernel[0]: IOBluetoothUSBDFU::probe
    24/09/2013 20:11:12.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8215 FirmwareVersion - 0x0206
    24/09/2013 20:11:12.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff8032f5ac00 ****
    24/09/2013 20:11:12.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff8032f5ac00
    24/09/2013 20:11:12.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    24/09/2013 20:11:12.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    24/09/2013 20:11:12.000 kernel[0]: AMDTurksGraphicsAccelerator: ** Device in slot: SLOT--1 **
    24/09/2013 20:11:12.000 kernel[0]: DSMOS has arrived
    24/09/2013 20:11:12.000 kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6740
    24/09/2013 20:11:12.263 WindowServer[78]: Server is starting up
    24/09/2013 20:11:12.266 WindowServer[78]: Session 256 retained (2 references)
    24/09/2013 20:11:12.266 WindowServer[78]: Session 256 released (1 references)
    24/09/2013 20:11:12.271 WindowServer[78]: Session 256 retained (2 references)
    24/09/2013 20:11:12.272 WindowServer[78]: init_page_flip: page flip mode is on
    24/09/2013 20:11:12.442 WindowServer[78]: mux_initialize: Couldn't find any matches
    24/09/2013 20:11:12.454 WindowServer[78]: GLCompositor enabled for tile size [256 x 256]
    24/09/2013 20:11:12.454 WindowServer[78]: CGXGLInitMipMap: mip map mode is on
    24/09/2013 20:11:12.480 WindowServer[78]: WSMachineUsesNewStyleMirroring: false
    24/09/2013 20:11:12.481 WindowServer[78]: Display 0x042801c0: GL mask 0x1; bounds (0, 0)[2560 x 1440], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a007, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a00700000000042801c0
    24/09/2013 20:11:12.481 WindowServer[78]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffff003f0040
    24/09/2013 20:11:12.481 WindowServer[78]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    24/09/2013 20:11:12.481 WindowServer[78]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    24/09/2013 20:11:12.481 WindowServer[78]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    24/09/2013 20:11:12.487 WindowServer[78]: Created shield window 0x5 for display 0x042801c0
    24/09/2013 20:11:12.487 WindowServer[78]: Created shield window 0x6 for display 0x003f0040
    24/09/2013 20:11:12.487 WindowServer[78]: Created shield window 0x7 for display 0x003f003f
    24/09/2013 20:11:12.487 WindowServer[78]: Created shield window 0x8 for display 0x003f003e
    24/09/2013 20:11:12.487 WindowServer[78]: Created shield window 0x9 for display 0x003f003d
    24/09/2013 20:11:12.488 WindowServer[78]: Display 0x042801c0: GL mask 0x1; bounds (0, 0)[2560 x 1440], 36 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a007, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a00700000000042801c0
    24/09/2013 20:11:12.489 WindowServer[78]: Display 0x003f0040: GL mask 0x10; bounds (3584, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffff003f0040
    24/09/2013 20:11:12.489 WindowServer[78]: Display 0x003f003f: GL mask 0x8; bounds (3585, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    24/09/2013 20:11:12.489 WindowServer[78]: Display 0x003f003e: GL mask 0x4; bounds (3586, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    24/09/2013 20:11:12.489 WindowServer[78]: Display 0x003f003d: GL mask 0x2; bounds (3587, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    24/09/2013 20:11:12.489 WindowServer[78]: CGXPerformInitialDisplayConfiguration
    24/09/2013 20:11:12.489 WindowServer[78]:   Display 0x042801c0: MappedDisplay Unit 0; Vendor 0x610 Model 0xa007 S/N 0 Dimensions 23.50 x 13.23; online enabled built-in, Bounds (0,0)[2560 x 1440], Rotation 0, Resolution 1
    24/09/2013 20:11:12.489 WindowServer[78]:   Display 0x003f0040: MappedDisplay Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3584,0)[1 x 1], Rotation 0, Resolution 1
    24/09/2013 20:11:12.489 WindowServer[78]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3585,0)[1 x 1], Rotation 0, Resolution 1
    24/09/2013 20:11:12.489 WindowServer[78]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3586,0)[1 x 1], Rotation 0, Resolution 1
    24/09/2013 20:11:12.489 WindowServer[78]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (3587,0)[1 x 1], Rotation 0, Resolution 1
    24/09/2013 20:11:12.512 WindowServer[78]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, accelerator 0x0000491b, unit 0, caps QEX|QGL|MIPMAP, vram 512 MB
    24/09/2013 20:11:12.512 WindowServer[78]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    24/09/2013 20:11:12.526 WindowServer[78]: Unable to open IOHIDSystem (e00002bd)
    24/09/2013 20:11:12.000 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    24/09/2013 20:11:13.428 mds[39]: (Normal) FMW: FMW 0 0
    24/09/2013 20:11:13.615 com.apple.SecurityServer[15]: Session 100000 created
    24/09/2013 20:11:13.000 kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    24/09/2013 20:11:13.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:11:13.000 kernel[0]: 20.315142: setWOW_PARAMETERS:wowevents = 2(1)
    24/09/2013 20:11:13.993 configd[17]: network changed.
    24/09/2013 20:11:13.994 configd[17]: setting hostname to "Padraigs-iMac.local"
    24/09/2013 20:11:14.088 blued[56]: Read the UHE Info
    24/09/2013 20:11:14.088 blued[56]: Read version 2 info.  Number of devices:3
    24/09/2013 20:11:14.088 blued[56]: Class of device:     0x2580
    24/09/2013 20:11:14.089 blued[56]: Device name: ' ' length:18
    24/09/2013 20:11:14.089 blued[56]: Finished reading the HID data
    24/09/2013 20:11:14.089 blued[56]: Found a device with PID:0x030d VID:0x05ac
    24/09/2013 20:11:14.089 blued[56]: Class of device:     0x2540
    24/09/2013 20:11:14.089 blued[56]: Device name: 'Apple Wireless Keyboard' length:24
    24/09/2013 20:11:14.089 blued[56]: Finished reading the HID data
    24/09/2013 20:11:14.089 blued[56]: Found a device with PID:0x0256 VID:0x05ac
    24/09/2013 20:11:14.090 blued[56]: Class of device:     0x2594
    24/09/2013 20:11:14.090 blued[56]: Device name: '  Trackpad' length:27
    24/09/2013 20:11:14.090 blued[56]: Finished reading the HID data
    24/09/2013 20:11:14.090 blued[56]: Found a device with PID:0x030e VID:0x05ac
    24/09/2013 20:11:14.488 WindowServer[78]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    24/09/2013 20:11:15.517 WindowServer[78]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042801c0 device: 0x10f5bda10  isBackBuffered: 1 numComp: 3 numDisp: 3
    24/09/2013 20:11:19.604 com.apple.SecurityServer[15]: Entering service
    24/09/2013 20:11:19.629 systemkeychain[70]: done file: /var/run/systemkeychaincheck.done
    24/09/2013 20:11:19.641 mDNSResponder[40]: D2D_IPC: Loaded
    24/09/2013 20:11:19.641 mDNSResponder[40]: D2DInitialize succeeded
    24/09/2013 20:11:19.648 configd[17]: network changed: DNS*
    24/09/2013 20:11:19.700 loginwindow[43]: Login Window Application Started
    24/09/2013 20:11:19.711 awacsd[57]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    24/09/2013 20:11:19.714 UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    24/09/2013 20:11:19.721 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    24/09/2013 20:11:19.731 loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    24/09/2013 20:11:19.829 digest-service[107]: label: default
    24/09/2013 20:11:19.829 digest-service[107]:           dbname: od:/Local/Default
    24/09/2013 20:11:19.829 digest-service[107]:           mkey_file: /var/db/krb5kdc/m-key
    24/09/2013 20:11:19.829 digest-service[107]:           acl_file: /var/db/krb5kdc/kadmind.acl
    24/09/2013 20:11:19.831 digest-service[107]: digest-request: uid=0
    24/09/2013 20:11:19.840 rpcsvchost[112]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    24/09/2013 20:11:19.842 digest-service[107]: digest-request: init request
    24/09/2013 20:11:19.845 digest-service[107]: digest-request: init return domain: BUILTIN server:  -IMAC
    24/09/2013 20:11:19.000 kernel[0]: 26.079641: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
    24/09/2013 20:11:19.000 kernel[0]: 26.079654: switchVap from 1 to 1
    24/09/2013 20:11:20.000 kernel[0]: 26.348625: performCountryCodeOperation: Not connected, scan in progress[0]
    24/09/2013 20:11:21.000 kernel[0]: en1: BSSID changed to fc:f5:28:4b:98:68
    24/09/2013 20:11:21.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:11:21.000 kernel[0]: AirPort: Link Up on en1
    24/09/2013 20:11:21.000 kernel[0]: 27.345670: apple80211Request[10310] Unsupported ioctl 181
    24/09/2013 20:11:21.000 kernel[0]: en1: BSSID changed to fc:f5:28:4b:98:68
    24/09/2013 20:11:21.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:11:22.000 kernel[0]: AirPort: RSN handshake complete on en1
    24/09/2013 20:11:19.720 netbiosd[84]: Unable to start NetBIOS name service:
    24/09/2013 20:11:22.871 locationd[44]: NOTICE,Location icon should now be in state 0
    24/09/2013 20:11:22.000 kernel[0]: Sandbox: sandboxd(99) deny mach-lookup com.apple.coresymbolicationd
    24/09/2013 20:11:23.180 WindowServer[78]: Created shield window 0xa for display 0x042801c0
    24/09/2013 20:11:23.180 WindowServer[78]: Display 0x042801c0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    24/09/2013 20:11:23.196 launchctl[116]: com.apple.findmymacmessenger: Already loaded
    24/09/2013 20:11:23.211 com.apple.SecurityServer[15]: Session 100003 created
    24/09/2013 20:11:23.264 hidd[47]: CGSShutdownServerConnections: Detaching application from window server
    24/09/2013 20:11:23.264 hidd[47]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    24/09/2013 20:11:23.265 UserEventAgent[117]: cannot find useragent 1102
    24/09/2013 20:11:23.278 loginwindow[43]: Login Window Started Security Agent
    24/09/2013 20:11:23.329 SecurityAgent[124]: This is the first run
    24/09/2013 20:11:23.330 SecurityAgent[124]: MacBuddy was run = 0
    24/09/2013 20:11:23.512 WindowServer[78]: Display 0x042801c0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    24/09/2013 20:11:23.525 WindowServer[78]: Display 0x042801c0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    24/09/2013 20:11:23.883 configd[17]: network changed: v4(en1+:192.168.1.3) DNS+ Proxy+ SMB+
    24/09/2013 20:11:23.895 UserEventAgent[11]: Captive: en1: Not probing 'eircom55925788' (protected network)
    24/09/2013 20:11:23.898 configd[17]: network changed: v4(en1!:192.168.1.3) DNS Proxy SMB
    24/09/2013 20:11:24.445 ntpd[104]: proto: precision = 1.000 usec
    24/09/2013 20:11:25.258 com.apple.launchd[1]: (com.apple.xprotectupdater[24]) Exited with code: 252
    24/09/2013 20:11:25.642 airportd[67]: _doAutoJoin: Already associated to “eircom55925788”. Bailing on auto-join.
    24/09/2013 20:11:25.652 airportd[67]: _doAutoJoin: Already associated to “eircom55925788”. Bailing on auto-join.
    24/09/2013 20:11:25.662 airportd[67]: _doAutoJoin: Already associated to “eircom55925788”. Bailing on auto-join.
    24/09/2013 20:11:27.661 sandboxd[99]: ([84]) netbiosd(84) deny mach-lookup com.apple.networkd
    24/09/2013 20:11:28.038 BezelServices 237.2[43]: -[DriverServices sendPreferencesToDevice:resetDefaults:] error: classPrefID (null), classPrefs (null)
    24/09/2013 20:11:29.406 timezoned[143]: bootstrap_look_up failed (44e)
    24/09/2013 20:11:29.431 locationd[144]: NOTICE,Location icon should now be in state 0
    24/09/2013 20:11:29.503 timezoned[143]: bootstrap_look_up failed (44e)
    24/09/2013 20:11:32.000 kernel[0]: [BNBTrackpadDevice::init][75.19] init is complete
    24/09/2013 20:11:33.000 kernel[0]: [BNBTrackpadDevice::handleStart][75.19] returning 1
    24/09/2013 20:11:33.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    24/09/2013 20:11:33.000 kernel[0]: [AppleMultitouchDevice::start] entered
    24/09/2013 20:11:35.220 awacsd[57]: Exiting
    24/09/2013 20:11:36.396 netbiosd[84]: name servers down?
    24/09/2013 20:12:04.690 SecurityAgent[124]: User info context values set for Padraig
    24/09/2013 20:12:05.078 SecurityAgent[124]: Login Window login proceeding
    24/09/2013 20:12:05.413 loginwindow[43]: Login Window - Returned from Security Agent
    24/09/2013 20:12:05.450 loginwindow[43]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    24/09/2013 20:12:05.479 loginwindow[43]: USER_PROCESS: 43 console
    24/09/2013 20:12:05.593 com.apple.launchd.peruser.502[148]: (com.spotify.webhelper) Unknown key: SpotifyPath
    24/09/2013 20:12:05.594 com.apple.launchd.peruser.502[148]: (com.apple.gamed) Ignored this key: UserName
    24/09/2013 20:12:05.594 com.apple.launchd.peruser.502[148]: (com.apple.gamed) Ignored this key: GroupName
    24/09/2013 20:12:05.594 com.apple.launchd.peruser.502[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    24/09/2013 20:12:05.598 loginwindow[43]: Connection with distnoted server was invalidated
    24/09/2013 20:12:05.607 distnoted[152]: # distnote server agent  absolute time: 71.436972088   civil time: Tue Sep 24 20:12:05 2013   pid: 152 uid: 502  root: no
    24/09/2013 20:12:05.895 WindowServer[78]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    24/09/2013 20:12:05.000 kernel[0]: en1: 802.11d country code set to 'GB '.
    24/09/2013 20:12:05.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    24/09/2013 20:12:05.000 kernel[0]: en1: BSSID changed to fc:f5:28:4b:98:68
    24/09/2013 20:12:05.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:12:06.046 WindowServer[78]: Display 0x042801c0: MappedDisplay Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    24/09/2013 20:12:06.070 coreaudiod[165]: Enabled automatic stack shots because audio IO is inactive
    24/09/2013 20:12:06.105 talagent[161]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    24/09/2013 20:12:06.111 talagent[161]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    24/09/2013 20:12:06.202 com.apple.launchd.peruser.502[148]: (com.apple.afpstat-qfa[183]) Exited with code: 2
    24/09/2013 20:12:06.211 com.apple.launchd.peruser.502[148]: (com.epson.ews.launcher[185]) Exited with code: 2
    24/09/2013 20:12:06.240 com.apple.launchd.peruser.502[148]: ([email protected][190]) Exited with code: 2
    24/09/2013 20:12:06.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=184[GoogleSoftwareUp] clearing CS_VALID
    24/09/2013 20:12:06.000 kernel[0]: AirPort: RSN handshake complete on en1
    24/09/2013 20:12:06.782 com.apple.launchd.peruser.502[148]: (com.apple.mrt.uiagent[173]) Exited with code: 255
    24/09/2013 20:12:06.822 UserEventAgent[151]: cannot find fw daemon port 1102
    24/09/2013 20:12:07.062 NetworkBrowserAgent[216]: Starting NetworkBrowserAgent
    24/09/2013 20:12:07.494 com.apple.SecurityServer[15]: Session 100006 created
    24/09/2013 20:12:07.601 com.apple.time[151]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    24/09/2013 20:12:07.824 apsd[201]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    24/09/2013 20:12:10.235 gconsync[188]: [0x7fef6b40a570] |ISyncManager|Warning| Could not retrieve ISyncClient with id com.apple.Keychain!
    24/09/2013 20:12:11.237 com.apple.time[151]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    24/09/2013 20:12:11.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=242[ksadmin] clearing CS_VALID
    24/09/2013 20:12:11.000 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=243[ksadmin] clearing CS_VALID
    24/09/2013 20:12:13.571 com.apple.launchd.peruser.502[148]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 8 seconds
    24/09/2013 20:12:14.365 MusicManagerHelper[199]: objc[199]: Object 0x451ea30 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    24/09/2013 20:12:22.645 com.apple.SecurityServer[15]: Session 100004 created
    24/09/2013 20:13:08.627 KernelEventAgent[45]: tid 00000000 received event(s) VQ_LOWDISK, VQ_VERYLOWDISK (516)
    24/09/2013 20:13:08.000 kernel[0]: HFS: Vol: EPSON Very Low Disk: freeblks: 0, dangerlimit: 664
    24/09/2013 20:13:20.863 coreservicesd[61]: Application App:"Epson Install Navi" [ 0x0/0x1b01b]  @ 0x0x7fb252c26f40 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x1c01c:) ), so denying.
    24/09/2013 20:13:20.863 WindowServer[78]: [cps/setfront] Failed setting the front application to Epson Install Navi, psn 0x0-0x1b01b, securitySessionID=0x186a3, err=-13066
    24/09/2013 20:13:20.888 authexec[272]: executing /Volumes/EPSON/EPSON/Install Navi.app/Contents/Resources/Launch Navi.app/Contents/MacOS/Launch Navi
    24/09/2013 20:14:21.299 sudo[336]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.WCIPSv/Scripts/com.epson.EpsonScan_XP-200_ME- 301.pkg.H7TLqo ; USER=Padraig ; COMMAND=/usr/bin/defaults read -g AppleLocale
    24/09/2013 20:15:32.538 com.apple.kextd[12]: Rescanning kernel extensions.
    24/09/2013 20:15:32.538 com.apple.kextd[12]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories/System/Library/Extensi ons/KextIdentifiers.plist.gz is out of date; not using.
    24/09/2013 20:15:32.765 com.apple.kextd[12]: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/IOKitPersonalities_x86_64. ioplist.gz is out of date; not using.
    24/09/2013 20:15:34.000 kernel[0]: Resetting IOCatalogue.
    24/09/2013 20:15:34.948 com.apple.kextd[12]: Can't load iavkfs.kext - no code for running kernel's architecture.
    24/09/2013 20:15:34.950 com.apple.kextd[12]: Load com.pctools.iantivirus.kfs failed; removing personalities from kernel.
    24/09/2013 20:15:53.335 sudo[1325]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.0Jv6CU/tmp ; USER=Padraig ; COMMAND=/Volumes/EPSON/EPSON/Apps/EventManager/Epson Event Manager.pkg/Contents/Resources/EditLoginWindow -user -delete /Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app
    24/09/2013 20:15:53.528 sudo[1329]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.0Jv6CU/tmp ; USER=Padraig ; COMMAND=/bin/launchctl unload /Library/LaunchAgents/com.epson.eventmanager.agent.plist
    24/09/2013 20:15:54.163 sudo[1346]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.0Jv6CU/tmp ; USER=Padraig ; COMMAND=/bin/launchctl load /Library/LaunchAgents/com.epson.eventmanager.agent.plist
    24/09/2013 20:16:11.922 com.apple.kextcache[1480]: rebuilding /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache
    24/09/2013 20:16:17.194 com.apple.kextcache[1482]: / locked; waiting for lock.
    24/09/2013 20:16:24.350 com.apple.kextcache[1481]: Created prelinked kernel //System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    24/09/2013 20:16:24.365 com.apple.kextcache[1480]: /: no supported helper partitions to update.
    24/09/2013 20:16:24.365 com.apple.kextcache[1482]: Lock acquired; proceeding.
    24/09/2013 20:16:24.366 com.apple.kextcache[1482]: /: no supported helper partitions to update.
    24/09/2013 20:16:54.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    24/09/2013 20:16:54.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:16:54.000 kernel[0]: 360.160164: setDISASSOCIATE ****STA SYNC DISASSOC SUCCESS 
    24/09/2013 20:16:55.380 configd[17]: network changed: v4(en1-:192.168.1.3) DNS- Proxy- SMB-
    24/09/2013 20:16:57.000 kernel[0]: 363.181676: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
    24/09/2013 20:16:57.000 kernel[0]: 363.181686: switchVap from 1 to 0
    24/09/2013 20:16:57.000 kernel[0]: 363.186400: osif_com_vap_event_handler vap delete event
    24/09/2013 20:16:57.000 kernel[0]: 363.186405: deleteVap ****SYNC VAP DELETE SUCCESS 
    24/09/2013 20:16:57.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:16:57.000 kernel[0]: AirPort: Link Up on en1
    24/09/2013 20:16:57.000 kernel[0]: 363.197000: apple80211Request[10310] Unsupported ioctl 181
    24/09/2013 20:16:57.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:17:00.533 digest-service[1493]: label: default
    24/09/2013 20:17:00.533 digest-service[1493]:           dbname: od:/Local/Default
    24/09/2013 20:17:00.533 digest-service[1493]:           mkey_file: /var/db/krb5kdc/m-key
    24/09/2013 20:17:00.533 digest-service[1493]:           acl_file: /var/db/krb5kdc/kadmind.acl
    24/09/2013 20:17:00.534 digest-service[1493]: digest-request: uid=0
    24/09/2013 20:17:00.537 digest-service[1493]: digest-request: init request
    24/09/2013 20:17:00.538 digest-service[1493]: digest-request: init return domain: 'my name'-IMAC server: 'my name'-IMAC
    24/09/2013 20:17:23.047 configd[17]: subnet_route: write routing socket failed, Network is unreachable
    24/09/2013 20:17:24.653 configd[17]: network changed: v4(en1+:169.254.62.126) DNS* Proxy+ SMB
    24/09/2013 20:17:24.662 UserEventAgent[11]: Captive: Online (IBSS mode)
    24/09/2013 20:17:24.665 configd[17]: network changed: v4(en1:169.254.62.126) DNS Proxy SMB
    24/09/2013 20:17:27.073 configd[17]: setting hostname to "padraigs-imac.local"
    24/09/2013 20:17:28.998 CalendarAgent[180]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7ffd230792b0 {NSUnderlyingError=0x7ffd2339db60 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://robopads%[email protected]/1052702496/principal///robopads%[email protected]/1052702496/principal/, NSErrorFailingURLKey=https://robopads%[email protected]/1052702496/principal///robopads%[email protected]/1052702496/principal/, AccountName=iCloud, CalDAVErrFromRefresh=YES, NSLocalizedDescription=The Internet connection appears to be offline.}]
    24/09/2013 20:17:29.676 timezoned[1504]: bootstrap_look_up failed (44e)
    24/09/2013 20:17:29.686 timezoned[1504]: bootstrap_look_up failed (44e)
    24/09/2013 20:17:29.793 digest-service[1493]: digest-request: uid=0
    24/09/2013 20:17:29.793 digest-service[1493]: digest-request: init request
    24/09/2013 20:17:29.794 digest-service[1493]: digest-request: init return domain: PADRAIGS-IMAC server: PADRAIGS-IMAC
    24/09/2013 20:17:36.813 netbiosd[84]: name servers down?
    24/09/2013 20:17:44.044 configd[17]: LINKLOCAL en1: parent has no IP
    24/09/2013 20:17:44.044 configd[17]: LINKLOCAL en1: parent has no IP
    24/09/2013 20:17:44.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    24/09/2013 20:17:44.000 kernel[0]: en1: BSSID changed to 00:00:00:00:00:00
    24/09/2013 20:17:44.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:17:44.000 kernel[0]: 409.766071: setDISASSOCIATE ****IBSS SYNC DISASSOC SUCCESS 
    24/09/2013 20:17:44.000 kernel[0]: 409.766077: switchVap from 0 to 1
    24/09/2013 20:17:44.000 kernel[0]: 409.782321: osif_com_vap_event_handler vap delete event
    24/09/2013 20:17:44.000 kernel[0]: 409.782335: deleteVap ****SYNC VAP DELETE SUCCESS 
    24/09/2013 20:17:44.000 kernel[0]: en1: BSSID changed to fc:f5:28:4b:98:68
    24/09/2013 20:17:44.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:17:44.000 kernel[0]: AirPort: Link Up on en1
    24/09/2013 20:17:44.000 kernel[0]: 409.819241: apple80211Request[10310] Unsupported ioctl 181
    24/09/2013 20:17:44.000 kernel[0]: en1: BSSID changed to fc:f5:28:4b:98:68
    24/09/2013 20:17:44.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    24/09/2013 20:17:44.048 configd[17]: network changed: v4(en1-:169.254.62.126) DNS* Proxy- SMB
    24/09/2013 20:17:44.056 configd[17]: setting hostname to "'my name'.local"
    24/09/2013 20:17:45.000 kernel[0]: AirPort: RSN handshake complete on en1
    24/09/2013 20:17:45.209 configd[17]: network changed: v4(en1+:192.168.1.3) DNS+ Proxy+ SMB+
    24/09/2013 20:17:45.219 UserEventAgent[11]: Captive: en1: Not probing 'eircom55925788' (protected network)
    24/09/2013 20:17:45.222 configd[17]: network changed: v4(en1!:192.168.1.3) DNS Proxy SMB
    24/09/2013 20:17:45.366 airportd[1509]: _doAutoJoin: Already associated to “eircom55925788”. Bailing on auto-join.
    24/09/2013 20:17:45.443 netbiosd[84]: network address or mask changed for en1
    24/09/2013 20:17:50.296 digest-service[1493]: digest-request: uid=0
    24/09/2013 20:17:50.296 digest-service[1493]: digest-request: init request
    24/09/2013 20:17:50.298 digest-service[1493]: digest-request: init return domain: PADRAIGS-IMAC server: PADRAIGS-IMAC
    24/09/2013 20:18:00.320 netbiosd[84]: name servers down?
    24/09/2013 20:18:25.597 System Preferences[1526]: Can't open search index until its validated…
    24/09/2013 20:18:26.361 System Preferences[1526]:
    ***** AESendMessage [async] returned: -1712 [loc:0]
    24/09/2013 20:19:45.633 coreservicesd[61]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=174
    24/09/2013 20:20:04.917 CVMServer[81]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    24/09/2013 20:20:04.943 CVMServer[81]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    24/09/2013 20:20:36.262 Mail[1578]: Using V2 Layout
    24/09/2013 20:20:36.324 librariand[1580]: MMe quota status changed: under quota
    24/09/2013 20:20:37.269 com.apple.SecurityServer[15]: Session 100010 created
    24/09/2013 20:20:39.009 Mail[1578]: *** -[IADomainCache init]: IA domains cache is out of date.
    24/09/2013 20:21:02.943 coreaudiod[165]: Disabled automatic stack shots because audio IO is active
    24/09/2013 20:21:03.756 coreaudiod[165]: Enabled automatic stack shots because audio IO is inactive
    24/09/2013 20:22:09.689 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-1".
    24/09/2013 20:22:09.922 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSDictionary-0".
    24/09/2013 20:22:09.922 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-10".
    24/09/2013 20:22:09.926 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-11".
    24/09/2013 20:22:09.936 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-13".
    24/09/2013 20:22:09.940 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-14".
    24/09/2013 20:22:09.944 Numbers[1604]: Object (0x55333c0 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-15".
    24/09/2013 20:22:10.101 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-13"
    24/09/2013 20:22:10.101 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-14"
    24/09/2013 20:22:10.101 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-1"
    24/09/2013 20:22:10.102 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-10"
    24/09/2013 20:22:10.102 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-15"
    24/09/2013 20:22:10.102 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSDictionary-0"
    24/09/2013 20:22:10.102 Numbers[1604]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55333c0 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-11"
    24/09/2013 20:22:11.482 WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Numbers" for over 1.00 seconds. Server has re-enabled them.
    24/09/2013 20:22:12.492 WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Numbers" after 2.01 seconds (server forcibly re-enabled them after 1.00 seconds)
    24/09/2013 20:22:24.216 Dock[160]: no information back from LS about running process
    24/09/2013 20:22:30.287 PrinterProxy[1616]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:22:30.288 PrinterProxy[1616]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:28:25.760 Dock[160]: no information back from LS about running process
    24/09/2013 20:28:30.952 PrinterProxy[1692]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:28:30.953 PrinterProxy[1692]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:29:53.218 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-1".
    24/09/2013 20:29:53.344 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSDictionary-0".
    24/09/2013 20:29:53.344 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-6".
    24/09/2013 20:29:53.347 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-7".
    24/09/2013 20:29:53.356 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-9".
    24/09/2013 20:29:53.359 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-10".
    24/09/2013 20:29:53.363 Numbers[1716]: Object (0x55a0280 of class __NSDictionaryI) named "NSMutableDictionary-0" was already registered with another name "NSMutableDictionary-11".
    24/09/2013 20:29:53.402 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-6"
    24/09/2013 20:29:53.403 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-7"
    24/09/2013 20:29:53.403 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-9"
    24/09/2013 20:29:53.403 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-1"
    24/09/2013 20:29:53.404 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-10"
    24/09/2013 20:29:53.404 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSDictionary-0"
    24/09/2013 20:29:53.404 Numbers[1716]: NameKeyHashSet and ObjectHashMap out of sync: object map entry for __NSDictionaryI 0x55a0280 references name "NSMutableDictionary-0" instead of "NSMutableDictionary-11"
    24/09/2013 20:30:06.366 Dock[160]: no information back from LS about running process
    24/09/2013 20:30:11.564 PrinterProxy[1728]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:30:11.564 PrinterProxy[1728]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24/09/2013 20:30:44.184 com.apple.launchd.peruser.502[148]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 9 seconds
    24/09/2013 20:30:44.188 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.188 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.188 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.188 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.188 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.189 WindowServer[78]: dict count after removing entry for window 0x2e is 0
    24/09/2013 20:30:44.201 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.201 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.201 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.201 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.201 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.204 com.apple.launchd.peruser.502[148]: ([0x0-0x1e01e].com.apple.AppleSpell[273]) Exited: Terminated: 15
    24/09/2013 20:30:44.205 com.apple.launchd.peruser.502[148]: ([0x0-0x11011].com.sonyericsson.Sony-Ericsson-Bridge-Helper[210]) Exited: Terminated: 15
    24/09/2013 20:30:44.206 coreservicesd[61]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=271
    24/09/2013 20:30:44.208 coreservicesd[61]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=159
    24/09/2013 20:30:44.254 com.apple.launchd[1]: (com.apple.quicklook.satellite.3EB18B4B-CB9F-4EAC-81AE-7D1730E1C71E[1697]) Could not terminate job: 3: No such process
    24/09/2013 20:30:44.254 com.apple.launchd[1]: (com.apple.quicklook.satellite.3EB18B4B-CB9F-4EAC-81AE-7D1730E1C71E[1697]) Using fallback option to terminate job...
    24/09/2013 20:30:44.255 com.apple.launchd.peruser.502[148]: (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[1694]) Exited: Killed: 9
    24/09/2013 20:30:44.255 com.apple.launchd.peruser.502[148]: (com.apple.quicklook[1695]) Exited: Killed: 9
    24/09/2013 20:30:44.256 com.apple.launchd.peruser.502[148]: (com.apple.mdworker.lsb.01000000-0000-0000-0000-000000000000[1732]) Exited: Killed: 9
    24/09/2013 20:30:44.502 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.502 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.502 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.502 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.502 WindowServer[78]: CGXGetConnectionProperty: Invalid connection 52739
    24/09/2013 20:30:44.503 coreservicesd[61]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=131
    24/09/2013 20:30:48.273 loginwindow[43]: DEAD_PROCESS: 43 console
    24/09/2013 20:30:48.415 airportd[1741]: _doAutoJoin: Already associated to “eircom55925788”. Bailing on auto-join.
    24/09/2013 20:30:48.520 loginwindow[43]: Application hardKill returned -600
    24/09/2013 20:30:48.520 loginwindow[43]: Application hardKill returned -600
    24/09/2013 20:30:48.687 shutdown[1745]: reboot by 'my name':
    24/09/2013 20:30:48.688 shutdown[1745]: SHUTDOWN_TIME: 1380051048 687536
    24/09/2013 20:30:48.716 ntpd[104]: ntpd exiting on signal 15
    24/09/2013 20:31:21.000 bootlog[0]: BOOT_TIME 1380051081 0
    I'm not very tech savy but I hope this helps

  • Adobe Reader DC segmentation fault

    Hi,
    I have been using adobe reader through AxAcroPDF interface, and it worked great with adobe reader XI, but something just broke with adobe reader DC: I get a SIGSEGV when calling IOleControl::Release in MinGW.
    with MSVC it reports a frame in an unloaded library accessed by IOleControl::Release() (005df9e4 005df9f8 <Unloaded_AcroPDFImpl.dll>+0x15ce6005df9e8 00cf254c 0x5df9f8)
    Is this a known bug of Adobe Reader DC ?
    Thanks in advance

    It seems to happen only if the IOleControl is Released after the IOleObject, so the workaround is to release first the IOleControl, then release the IOleObject

  • OSMServer still loaded in launchd after uninstalling Opdicom Opditracker

    Some questions were asked about this a year ago but are now archived, so I couldn't reply.
    Opdicom Opditracker leaves a daemon registered with launchd after uninstalling Opditracker.
    You can check this by opening Console application (In /Applications/Utilities) and looking for entries from com.opdicom.osm or com.opdicom.osmservercontrol
    If you still have these entries appearing in Console after uninstalling Opditracker, open Terminal and run the following commands to remove the daemon.
    *sudo launchctl unload /Library/LaunchDaemons/com.opdicom.osm.plist*
    *sudo launchctl unload /Library/LaunchDaemons/com.opdicom.osmservercontrol.plist*
    You will be asked for an administrator password.
    Then you can delete these files using Finder or in the Terminal use,
    sudo rm /Library/LaunchDaemons/com.opdicom.osm.plist
    sudo rm /Library/LaunchDaemons/com.opdicom.osmservercontrol.plist
    That should fix it.

    Welcome to the Apple Support Communities
    It shows that you've Parallels, so you haven't uninstalled the app. Have you uninstalled Parallels with the uninstaller?

  • Black Screen, but Could See Expose and Desktop

    I am not sure if this is the correct forum to talk about this, but I have been having some strange things happen to my Macbook Pro 13.
    Last night, I was watching a show on my computer and all of sudden the fans started to run loudly. Next thing I know, the screen turns black, but I am still able to launch expose and see my desktop. However, when I went into expose the windows would multiply. I tried shutting down the computer, but Microsoft Word wouldn't quit, and I couldn't reach the force quit button and didn't know the shortcut. I kind of thought that perhaps the computer could have overheated, since my Mac was sitting on my bed and the vents must have bee blocked, but I called Apple this morning and I told them the situation and they thought that it was really weird that that happened. However, they told me how to force quit through a shortcut and low and behold, everything returned to normal.
    The representative said that it could be something to deal with my software or possibly a hardware issue. But what I'd like to know is has anyone had something similar like this happen to them before? Or do you have any inclination as to what may have caused this? Its starting to bother me, because Macs are supposed to "just work" and mine which is six months old is starting to cause some problems. Additionally, I had to call Apple two days ago because my screen had turned blue after I was forced to restart my computer due to a freeze. I'm starting to get frustrated!
    Thanks for all your comments and advice in advance!

    Below is what my console said, I don't really know what these sentences mean.
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] mel[milevel] == NULL
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] arrrrrrrrrrrrrg Up cannot escape itself
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] mel[milevel] == NULL
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] arrrrrrrrrrrrrg Up cannot escape itself
    10-01-31 12:24:49 AM [0x0-0x1c41c4].org.videolan.vlc[5422] [0x2109aa8] a52 decoder: A/52 channels:6 samplerate:48000 bitrate:448000
    10-01-31 12:24:50 AM [0x0-0x1c41c4].org.videolan.vlc[5422] No accelerated IMDCT transform found
    10-01-31 12:24:55 AM ShakesPeer[5428] got init completion level 25
    10-01-31 12:24:55 AM ShakesPeer[5428] got init completion level 50
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent sphubd crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent sphashd crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent gui crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] got init completion level 6
    10-01-31 12:24:56 AM ShakesPeer[5428] got init completion level 100
    10-01-31 12:24:57 AM ShakesPeer[5428] got init completion level 200
    10-01-31 12:25:03 AM ShakesPeer[5428] download folder not found or not a directory: /Users/sharraelyon-moncrieffe/Downloads/Shakespeer Downloads
    10-01-31 12:26:08 AM com.apple.backupd-auto[5437] Not starting scheduled Time Machine backup - time machine destination not resolvable.
    10-01-31 12:33:13 AM ShakesPeer[5457] got init completion level 25
    10-01-31 12:33:13 AM ShakesPeer[5457] got init completion level 50
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent sphubd crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent sphashd crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent gui crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 6
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 100
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 200
    10-01-31 12:33:17 AM ShakesPeer[5457] download folder not found or not a directory: /Users/sharraelyon-moncrieffe/Downloads/Shakespeer Downloads
    10-01-31 12:34:50 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:35:05 AM [0x0-0x11011].org.mozilla.firefox[157] Sun Jan 31 00:35:05 EST 2010 JEP creating applet NinjaVideoApplet (http://www.ninjavideo.net/)
    10-01-31 12:35:41 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:36:17 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:36:18 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:36:42 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:37:19 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:37:19 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 1:26:08 AM com.apple.backupd-auto[5558] Not starting scheduled Time Machine backup - time machine destination not resolvable.
    10-01-31 1:34:42 AM [0x0-0x1d71d7].backupd-helper[5577] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 2:34:46 AM [0x0-0x1db1db].backupd-helper[5601] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 3:51:00 AM [0x0-0x1e01e0].backupd-helper[5677] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    This continues until about 12:31 pm on January 31st.

Maybe you are looking for

  • Constant fan noise on macbook pro

    Hello, my macbook pro (mid 2010 model, 13 inch, 2.4 ghz intel core duo 2 running Mountain lion) is experiencing constant fan activity at very high speed. The CPU however is only used at 9% of its capabilities top. The problem occured after a freeze i

  • Numbers instead of names in Messages

    A couple of days ago, my "recent calls" list started showing numbers instead of contact names, but the Messages app still showed names.  I did the Verizon *228 reset and the recent calls changed to names, but the Messages switched to numbers.  I have

  • How much data does Apple TV use?

    I am experiencing a large amount of data usage and cannot determine what the culprit is.  I am approaching my cap of data allowance on a regular basis.  Does anyone know how much data the Apple TV uses?  I realize it depends on what you are streaming

  • Is there any resources about how to write ADT?

    I know the adt is actrually abstract data type. but in our exam there are question about how to transfer java coding to adt I search internet there is books about adt in usa. but not accseable in malaysia there seemed no norm or free introduction sit

  • Workspace is not opening IE8 (Server 2003)

    Hi Team, I am very confused on this topic. In my laptop I am unable to launch Workspace URL in IE8. http:\\srikanth:19000\workspace\index.jsp OS - Server 2003 Please find the below link for error: https://drive.google.com/file/d/0B1aHIW7gwJRyTXZQcWE0