Problem using extension manager CS5 with command line

Hi All,
I had posted my question here : http://forums.adobe.com/message/4695419#4695419, but was advised to do so here as well..
I have a requirement to get the path of all the installed Extension Managers on any Windows system for the purpose of installing an extension.. I thought, there would be no problem in getting the path from the registry. There was no problem in Win XP, but the same does not work for Win 7.. I googled, and found alternate ways to get the path.
Here is the link : http://forums.adobe.com/thread/851359. I followed the instructions in this post, but failed to get this working for CS5 as mentioned in my previous thread... No problem for CS5.1 and CS6.. Why is that?
I want to get this working for CS5, CS5.1, CS6... How can I get the path of all the Extension Manager versions installed on a Windows system?
Please refer to the following screenshots to get a better understanding of my problem,
I created a jsx file named "Result.jsx", which I saved in my D drive, with the following code,
resultFile = new File("D:/result.log");
resultFile.open("w");
resultFile.write(BridgeTalk.__diagnostics__);
resultFile.close();
If I run this directly from ESTK CS5, there is no problem, and I get the result.log file. I tried to execute this script via command line as shown in the screenshot,
On executing the above, I got the following error,
What is going wrong?
Please help!

I am sorry for the poor documentation of Extension Manager which causes you so much trouble.
1. You can use BridgeTalk API to ask specific version of Extension Manager to do something. There is sample in packaging_extension.pdf about this. You don't need to know the installation path of Extension Manager. One thing to note is that the value of bt.target is version specific, i.e. "exman-5.0", "exman-5.5" send this message to different version of Extension Manager, so you can change this value to install/enable/disable/remove extensions using different version of Extension Manager. More detailed documentation of BridgeTalk can be found by clicking "Help" menu then clicking "Javascript Tools Guide CS5" in "Adobe ExtendScript Toolkit CS5".
2. Specific version of Extension Manager only manage extensions for corresponding version of product. You should use Extension Manager CS5 to install extensions for Photoshop CS5. The reason that the extension you installed for Photoshop CS5.1 using Extension Manager CS5.5 is displayed for Photoshop CS5 in Extension Manager CS5 is that two versions of Photoshop specified the same directory for Extension Manager to manage extensions. This is a defect and will cause some problems if multiple versions of Photoshop co-existed in one machine. But "to find  previous (CS5) extension manager and to enable it" should work for you, I guess you use command line to enable it and specify wrong product name (see #3) so that it doesn't work.
3. When using command line, you should specify "product" attribute with the name displayed at the left panel of Extension Manager. So "Photoshop CS5 32" is correct. Remember to enclose it with double quote because of existence of space character.
4. As above mentioned, use display name of Photoshop, and call proper version of Extension Manager by BridgeTalk.

Similar Messages

  • Various problems using extension manager with command line

    Hello all,
    We are installing our plugins  to CS4/5/5.1 version of Adobe Photoshop as part of our installer and  allow the users to select specific versions of Photoshop to install the  panel for. There are a few old problems that I wanted to rant about for  quite some while and now with a whole bunch of problems that the 5.1  update introduced I feel I just have to voice them. I will limit it to  PC only as it seems to be the most troubled platform
    #1 As we cannot install our plugin only by using the  Extension Manager (simply because it cannot handle all we've to do upon  the installation) we have to run commands from within the our installer,  non-interactively, of course.
    The interface to command line installation is xmancommand.exe (or "Extension manager (Version). exe" - not sure whether it makes any difference. ). Now the first question is how to find this executable on   the target machine, from an installer. Users may specify different  locations to install the Creative Suite and it certainly does NOT have  to  be  C:\Program Files\...(or %PRGRAMFILES% in general). ATM we are using an odd place in the registry  to to find the path to the most recent Extension Manager but first its  sometimes overwritten by another installation and in any case it  only shows ONE version of the extension manager which of course cannot  handle other versions (see #2)
    #2 Why the most recent version of  Adobe Extension Manager (5.5) cannot install the extension for 5.0?  Well, install it actually does, however its disabled for CS5 and it  seems that the only way to enable it on this platform is to find  previous (CS5) extension manager and to enable it. Oh, actually no - it  doesn't work! The only way that I found here working is to find CS5  extension manager first, install the extension there and then use CS5.5  extension manager to enable it. Why do I need both utilities to manage  my extensions?!
    #3 The program is severely lacking in  documentation AND it doesn't produce reasonable output messages, so  determining what it can actually support is a puzzle. For example, why  "Dreamweaver CS5" is a correct product name and "Photoshop CS5" is not (don't different teams talk to each other)? Ok, lets forget the consistency, but how do I make the utility output the list of all products it supports, in their  magic token form that it will actually be understood if passed in in the  command line? By trial and error? This menthod btw is also extremely painful: nany times when  specifying wrong parameters the program doesn't provide any output and just shrugs "whatever, go figure it yourself"...
    #4 Why the only way to enable/disable an extension in Photoshop  seems to be using magic "productfamily" keyword that is not even listed  on Adobe's help page for command line options (here:  http://help.adobe.com/en_US/extensionmanager/cs/using/WSB4845EDD-14E5-476a-B749-FF328830D1 4F.html).?  E.g. "xmancommand.exe" -suppress -remove  product=Photoshop  extension=OurExtension" will ALWAYS fail with a lovely "'Photoshop is  not supported by Extension Manager CS5.5." error; I've tried "PhotoshopCS5", "Photoshop CS5", "PhotoshopCS5.1"  "Photoshop CS5.1", "Photoshop-12" (mentioned in examples section in  http://help.adobe.com/en_US/extensionmanager/cs/using/packaging_extension.pdf )  and a whole bunch of other permutations - none  seem to work (see #3). Magic "productfamily=Photoshop" does work. But  then it only aims the current version ("CS5.1") and I need it to work  for CS5 (I'm not even mentioning CS4...."). Would there be any suggestions?
    Really, the question is, how do we, third-party developers, are  supposed to interact with the command-line utility without knowing where  it is, what product names is capable to work with and without being  able to target specific platforms (i86 vs x64 anyone  (http://forums.adobe.com/thread/672537)? CS5 vs CS5.1 (above)?). I don't  know what your test cases are for the command line tool (if any!), but this is simply insane, folks, simply  insane.

    I am sorry for the poor documentation of Extension Manager which causes you so much trouble.
    1. You can use BridgeTalk API to ask specific version of Extension Manager to do something. There is sample in packaging_extension.pdf about this. You don't need to know the installation path of Extension Manager. One thing to note is that the value of bt.target is version specific, i.e. "exman-5.0", "exman-5.5" send this message to different version of Extension Manager, so you can change this value to install/enable/disable/remove extensions using different version of Extension Manager. More detailed documentation of BridgeTalk can be found by clicking "Help" menu then clicking "Javascript Tools Guide CS5" in "Adobe ExtendScript Toolkit CS5".
    2. Specific version of Extension Manager only manage extensions for corresponding version of product. You should use Extension Manager CS5 to install extensions for Photoshop CS5. The reason that the extension you installed for Photoshop CS5.1 using Extension Manager CS5.5 is displayed for Photoshop CS5 in Extension Manager CS5 is that two versions of Photoshop specified the same directory for Extension Manager to manage extensions. This is a defect and will cause some problems if multiple versions of Photoshop co-existed in one machine. But "to find  previous (CS5) extension manager and to enable it" should work for you, I guess you use command line to enable it and specify wrong product name (see #3) so that it doesn't work.
    3. When using command line, you should specify "product" attribute with the name displayed at the left panel of Extension Manager. So "Photoshop CS5 32" is correct. Remember to enclose it with double quote because of existence of space character.
    4. As above mentioned, use display name of Photoshop, and call proper version of Extension Manager by BridgeTalk.

  • Using process manager to get command line of a running application

    hello,
    i'm currently using the process manager framework to get a list of current running processes on the machine. i would like to get the command line to display to the user. i can see how to get the path to the executable file. i.e. /Applications/AppRunning however i'd like to get the full command line and im either missing it from the documentation or not seeing the links to get that information. so i want to get /Applications/AppRunning -c someoption -f another option. can anyone recommend a function to assist me or if im using the wrong API to get the information i am looking for can someone recommend the correct API?
    thank you very much.

    musikit wrote:
    thank you very much. you have been more then informative about this. i'll have to check out the kernel queues and events api you mentioned. i've never really digged this far into a unix style OS before. it's pretty interesting. it seems like EVFILT_PROC is what i want to get process starts/stops.
    I've never done this either, so I'm quite sure I'm missing some big things here. Some other things that might be handy are dtrace and ptrace. I strongly suspect that there is some really easy way to do it that I don't know about. You might try searching on the Apple developer mailing lists.
    at the end of the day though i still need to be able to retrieve the command line of a running executable. 'ps' can do it so i'm assuming there is a programatic way of doing it. is the mac 'ps' command source code online anywhere that i can see what it's doing?
    I don't know about ps. There are a number of Mac applications that do things similar to what you propose. Marcopolo is open-source and can detect when applications are launched.
    i have looked at the linux procps package however it relies on the procfs which mac does not have.
    Amit Singh wrote a MacFUSE-based procfs for the Mac. You can look at the source code to that, but, to quote Amit "the MacFUSE version of procfs makes heavy use of the Mach programming interfaces". Good luck with that. Still, there might be some helpful information in that link.

  • How to create and use library JAR files with command-line tools?

    Development Tools -> General Questions:
    I am trying to figure out how to put utility classes into JAR files and then compile and run applications against those JAR files using the command-line javac, jar, and java tools. I am using jdk1.7.0_17 on Debian GNU/Linux 6.0.7.
    I have posted a simple example with one utility class, one console application class, and a Makefile:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130520-2134.tar.gz
    Here is a console session:
    2013-05-20 21:39:01 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-20 21:39:12 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/hello/HelloConsole.java
    package com.example.hello;
    import static com.example.util.Hello.hello;
    public class HelloConsole {
        public static void main(String [] args) {
         hello("world!");
    2013-05-20 21:39:21 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -f hello
    find . -name '*.class' -delete
    javac src/com/example/util/Hello.java
    javac -cp src src/com/example/hello/HelloConsole.java
    echo "java -cp src com.example.hello.HelloConsole" > hello
    chmod +x hello
    2013-05-20 21:39:28 dpchrist@desktop ~/sandbox/java/jar
    $ ./hello
    hello, world!I believe I am looking for:
    1. Command-line invocation of "jar" to put the utility class bytecode file (Hello.class) into a JAR?
    2. Command-line invocation of "javac" to compile the application (HelloConsole.java) against the JAR file?
    3. Command-line invocation of "java" to run the application (HelloConsole.class) against the JAR file?
    I already know how t compile the utility class file.
    Any suggestions?
    TIA,
    David

    I finally figured it out:
    1. All name spaces must match -- identifiers, packages, file system, JAR contents, etc..
    2. Tools must be invoked from specific working directories with specific option arguments, all according to the project name space.
    My key discovery was that if the code says
    import com.example.util.Hello;then the JAR must contain
    com/example/util/Hello.classand I must invoke the compiler and interpreter with an -classpath argument that is the full path to the JAR file
    -classpath ext/com/example/util.jarThe code is here:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130525-1301.tar.gz
    Here is a console session that demonstrates building and running the code two ways:
    1. Compiling the utility class into bytecode, compiling the application class against the utility bytecode, and running the application bytecode against the utility bytecode.
    2. Putting the (previously compiled) utility bytecode into a JAR and running the application bytecode against the JAR. (Note that recompiling the application against the JAR was unnecessary.)
    (If you don't know Make, understand that the working directory is reset to the initial working directory prior to each and every command issued by Make):
    2013-05-25 14:02:47 dpchrist@desktop ~/sandbox/java/jar
    $ cat apps/com/example/hello/Console.java
    package com.example.hello;
    import com.example.util.Hello;
    public class Console {
        public static void main(String [] args) {
         Hello.hello("world!");
    2013-05-25 14:02:55 dpchrist@desktop ~/sandbox/java/jar
    $ cat libs/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-25 14:03:03 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -rf bin ext obj
    mkdir obj
    cd libs; javac -d ../obj com/example/util/Hello.java
    mkdir bin
    cd apps; javac -d ../bin -cp ../obj com/example/hello/Console.java
    cd bin; java -cp .:../obj com.example.hello.Console
    hello, world!
    mkdir -p ext/com/example
    cd obj; jar cvf ../ext/com/example/util.jar com/example/util/Hello.class
    added manifest
    adding: com/example/util/Hello.class(in = 566) (out= 357)(deflated 36%)
    cd bin; java -cp .:../ext/com/example/util.jar com.example.hello.Console
    hello, world!
    2013-05-25 14:03:11 dpchrist@desktop ~/sandbox/java/jar
    $ tree -I CVS .
    |-- Makefile
    |-- apps
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.java
    |-- bin
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.class
    |-- ext
    |   `-- com
    |       `-- example
    |           `-- util.jar
    |-- libs
    |   `-- com
    |       `-- example
    |           `-- util
    |               `-- Hello.java
    `-- obj
        `-- com
            `-- example
                `-- util
                    `-- Hello.class
    19 directories, 6 filesHTH,
    David

  • Extension Manager CS5/Pixel Bender problems.

    I have seen others with this issue, but even after researching I can not find an answer for this question. Here are the specs: I'm running Photoshop CS5.1 (64 bit) on Windows 7, using Extension Manager CS5, and I have tried several different Pixel Bender plugins. None of them work, notably the one that is compatible with CS5.1, found here http://labs.adobe.com/downloads/pixelbenderplugin.html. I get this error: This extension cannot be installed, it requires 64bit Photoshop version in range of inclusively between 12.1 and 12.1. Not only that the option to install things with Extension Manager is not even available, even run as administrator. See here : http://imgur.com/rs3xS
    How do I fix this? I've tried other versions of Extension Manager as well as other versions of Pixel Bender. Nothing has worked.

    I GUESS THERE IS NO FIX? THANKS ADOBE!

  • Can you push install an extension without using Extension Manager?

    I'm looking for a way to deploy a CS5 extension en mass using an unattended network push install utility (i.e. LanDesk). I have not been able to find any documentation yet on how to do this and our corporate customers do not want to send someone to every desktop to install or upgrade extensions manually using Extension Manager (in some cases they can have over 1000 end users spread across the country). Please help me locate some documentation on how to do this.
    Thanks,
    Dwane Ferry

    Extension Manager supports updatable extension. If your existing extension specifies update URL in its mxi file, when the new version of the extension is available, you can put the update information file to the URL. Extension Manager will detect the extension update during launch and notify users. After user clicks the "Update" button, the updated extension will be downloaded and installed.
    Extension Manager also supports command line interface. You can put the extension to a shared loacation, and write a batch file using commands. Send the batch file to all customers to run.
    More detailed information about updatable extension can be found in http://www.adobe.com/go/em_file_format .
    About command line interface, please see http://help.adobe.com/en_US/extensionmanager/cs/using/WSB4845EDD-14E5-476a-B749-FF328830D1 4F.html .

  • Extension Manager CS5.5 keeps crashing on mountain lion

    Hi all,
    I'm trying to install an extention for Photoshop but therefor I need to use Extension Manager CS5.5, but it keeps crashing on opening over and over again. I've even installed it again to make sure I was the right installation..
    Can someone please tell me how to fix this? This is de error I get:
    Process:         Adobe Extension Manager CS5.5 [11110]
    Path:            /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/MacOS/Adobe Extension Manager CS5.5
    Identifier:      com.adobe.ExtensionManager
    Version:         "5.5.0.163" (5.5.163)
    Code Type:       X86 (Native)
    Parent Process:  launchd [133]
    User ID:         501
    Date/Time:       2013-01-09 17:22:23.994 +0100
    OS Version:      Mac OS X 10.8.2 (12C3012)
    Report Version:  10
    Interval Since Last Report:          753291 sec
    Crashes Since Last Report:           30
    Per-App Interval Since Last Report:  35 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      7BD1D3E0-9567-7584-F67A-745AA88E0E94
    Crashed Thread:  11
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/MacOS/Adobe Extension Manager CS5.5
        __TEXT                 0000000000001000-0000000000209000 [ 2080K] r-x/rwx SM=COW  /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/MacOS/Adobe Extension Manager CS5.5
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x97d5a7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x97d59cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x966e7599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x966ecf7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x966ec63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x966ec4ab CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x9885215a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x98851ec9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x989b735d _AcquireNextEvent + 68
    9   com.apple.HIToolbox                     0x989a611a RunApplicationEventLoop + 225
    10  com.adobe.ExtensionManager              0x0000445d main + 4417
    11  com.adobe.ExtensionManager              0x0000309e start + 54
    Thread 1:
    0   libsystem_kernel.dylib                  0x97d5d0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9934304c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99342e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9932acca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x97d5d9ae kevent + 10
    1   libdispatch.dylib                       0x94db2c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x94db27a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x97d5d0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9934304c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99342e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9932acca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x97d5a8e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x993d1c1c nanosleep + 375
    2   com.adobe.ExtensionManager              0x0014c58b ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.ExtensionManager              0x0014c5eb ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.ExtensionManager              0x001431b6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.ExtensionManager              0x0014caf5 ScObjects::Thread::go(void*) + 315
    6   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    7   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x97d5d0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9934304c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99342e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9932acca start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x97d5a7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x97d59cb0 mach_msg + 68
    2   com.adobe.adobeswfl                     0x0620718f ExternalPlayer_Initialize + 465535
    3   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    4   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x97d5c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99345289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x993d2afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x061b4f54 ExternalPlayer_Initialize + 129092
    4   com.adobe.adobeswfl                     0x05f8534a 0x5f76000 + 62282
    5   com.adobe.adobeswfl                     0x061b4ce7 ExternalPlayer_Initialize + 128471
    6   com.adobe.adobeswfl                     0x061b4d3f ExternalPlayer_Initialize + 128559
    7   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    8   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x97d5c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99345289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x993d2afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x061b4f54 ExternalPlayer_Initialize + 129092
    4   com.adobe.adobeswfl                     0x05f8534a 0x5f76000 + 62282
    5   com.adobe.adobeswfl                     0x061b4ce7 ExternalPlayer_Initialize + 128471
    6   com.adobe.adobeswfl                     0x061b4d3f ExternalPlayer_Initialize + 128559
    7   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    8   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x97d5c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99345289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x993d2afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x061b4f54 ExternalPlayer_Initialize + 129092
    4   com.adobe.adobeswfl                     0x05f8534a 0x5f76000 + 62282
    5   com.adobe.adobeswfl                     0x061b4ce7 ExternalPlayer_Initialize + 128471
    6   com.adobe.adobeswfl                     0x061b4d3f ExternalPlayer_Initialize + 128559
    7   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    8   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x97d5c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99345289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x993d2afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x061b4f54 ExternalPlayer_Initialize + 129092
    4   com.adobe.adobeswfl                     0x05f8534a 0x5f76000 + 62282
    5   com.adobe.adobeswfl                     0x061b4ce7 ExternalPlayer_Initialize + 128471
    6   com.adobe.adobeswfl                     0x061b4d3f ExternalPlayer_Initialize + 128559
    7   libsystem_c.dylib                       0x99340557 _pthread_start + 344
    8   libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 11 Crashed:
    0   com.apple.CoreFoundation                0x966d1d1e CFURLCreateStringWithFileSystemPath + 206
    1   com.apple.CoreFoundation                0x966d1c25 CFURLCopyFileSystemPath + 53
    2   com.adobe.ExtensionManager              0x000d062d CMemoryMappedFile::CMemoryMappedFile(FSRef const&, bool) + 97
    3   com.adobe.ExtensionManager              0x000d0a72 CMacFileBuffer::CMacFileBuffer(FSRef const&, HFSUniStr255 const&, bool, bool) + 192
    4   com.adobe.ExtensionManager              0x000ad8e7 CFile::Open(wchar_t const*, unsigned int, bool) + 411
    5   com.adobe.ExtensionManager              0x0011cfb2 CMacrPluginConfigFile::load(CString const&) + 196
    6   com.adobe.ExtensionManager              0x000197dc CMacrExtensionManager::updatePluginFile(CMacrExtension const*, CMacrProduct const*, CMacrExtensionPaths const&, bool) + 126
    7   com.adobe.ExtensionManager              0x00028f3b CMacrExtensionManager::migrateFiles(CString const&, CMacrPath const&, CMacrPath const&, CMacrPath const&, CMacrPath const&, CMacrProduct const*, int) + 7253
    8   com.adobe.ExtensionManager              0x00029667 CMacrExtensionManager::migrateExtensionFromExtensionFile(CString const&, CString const&, CString const&, CMacrProduct const*) + 1377
    9   com.adobe.ExtensionManager              0x00029ae0 CMacrExtensionManager::migrateExtensionsFromProductPreferredFolder(CMacrProduct const*) + 574
    10  com.adobe.ExtensionManager              0x00029fa1 CMacrExtensionManager::migrateExtensionsFromProductsPreferredFolders() + 163
    11  com.adobe.ExtensionManager              0x00118d95 MigratePreferredExtensionCommand::execute() + 19
    12  com.adobe.ExtensionManager              0x000dce98 CommandExecutor_Impl::run() + 144
    13  com.adobe.ExtensionManager              0x000dceb3 CommandExecutor_Impl::runHelper(void*) + 17
    14  libsystem_c.dylib                       0x99340557 _pthread_start + 344
    15  libsystem_c.dylib                       0x9932acee thread_start + 34
    Thread 11 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x966d1c61  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000000  esi: 0xac725840  ebp: 0xb05b0798  esp: 0xb05aef20
       ss: 0x00000023  efl: 0x00010246  eip: 0x966d1d1e   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
        0x1000 -   0x208feb +com.adobe.ExtensionManager ("5.5.0.163" - 5.5.163) <BF161FD0-556D-9583-15CB-CDFF88A55B97> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/MacOS/Adobe Extension Manager CS5.5
      0x35c000 -   0x35ffe7 +libwchar.dylib (1) <DE7B4F71-F31A-46F7-B70D-A8A157B5EB6B> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/libwchar.dylib
      0x364000 -   0x55efef +AdobeOwl (1) <466BD72B-E2A5-447A-9384-B6DC9AD3AE0C> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
      0x5d9000 -   0xad7fc3 +AdobeOwlCanvas (1) <45219076-15E0-4A0D-9BC0-2FFED8EA7E46> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
      0xc20000 -   0xc67fc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/a/adobe_caps
      0xc74000 -   0xc78ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
      0xc7e000 -   0xcbaff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
      0xe92000 -   0xed9fc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    0x1f00000 -  0x1fabfff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x4d6c000 -  0x4d79ff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x4e41000 -  0x4e42ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x5f76000 -  0x6779fe2 +com.adobe.adobeswfl (1.0.7) <53D59B93-133D-41B4-AE25-83532E5C0F6C> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Resources/AdobeSWFL.bundle/Contents/MacO S/AdobeSWFL
    0xf124000 -  0xf132fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xf136000 -  0xf148ffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xf74b000 -  0xfb3dfff +WebKit.dylib (1.0.7) <6FB30C58-17FE-4A4B-971E-CDE89FB7DD1B> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Resources/WebKit.dylib
    0x10e48000 - 0x10f06ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x8fec6000 - 0x8fef8e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90013ffd  libkxld.dylib (2050.20.9) <29C6FCF5-E450-3724-BEA5-278A954A5247> /usr/lib/system/libkxld.dylib
    0x9007b000 - 0x900bdff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x900be000 - 0x90133ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x90134000 - 0x90134ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90135000 - 0x9015efff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9015f000 - 0x90169fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x90175000 - 0x9047aff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9047c000 - 0x9047fff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x904d8000 - 0x904fcfff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x904fd000 - 0x90506fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <05EF69BB-5D55-3A9E-9E5E-2EF9F84B3985> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90507000 - 0x9050bfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9050c000 - 0x90664ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90665000 - 0x907ddff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x907de000 - 0x90876fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x908a8000 - 0x908bdfff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x908be000 - 0x909bcff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x909bd000 - 0x909c9ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x909ca000 - 0x909cdffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x909ce000 - 0x90a03fff  libTrueTypeScaler.dylib (84.5) <2598F930-5E6B-37D7-B1E6-18181A972C6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90a04000 - 0x90aaefff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x90d3c000 - 0x90d52fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x90d53000 - 0x90d6fff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90d70000 - 0x90e2eff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x90e2f000 - 0x90e4cfff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x90ec3000 - 0x90ec7fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x90ec8000 - 0x90ec9fff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x90eca000 - 0x90f61ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x90f62000 - 0x90f81ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x90f82000 - 0x90fb8ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x90fb9000 - 0x90fd9ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x90fe8000 - 0x90fecffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91092000 - 0x910bbff7  libRIP.A.dylib (328.0.4) <00D3148A-C70D-3D5A-B60B-C23F2ACE99FE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x910bc000 - 0x9135fffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x919ee000 - 0x91a1bffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x91a1c000 - 0x91a80fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x91a81000 - 0x91b8e057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x91cf2000 - 0x91d6effb  libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x91d6f000 - 0x91d82ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91e3b000 - 0x91e89ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x91e8a000 - 0x91e8afff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e8b000 - 0x91ebcfff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x91ebd000 - 0x91ec8fff  libcommonCrypto.dylib (60027) <D9337AF4-C094-370E-858C-059AB6560719> /usr/lib/system/libcommonCrypto.dylib
    0x92027000 - 0x92044fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x92045000 - 0x92119fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9211a000 - 0x92122fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x92123000 - 0x92125fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x92126000 - 0x92ce2ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92ce3000 - 0x92d3cfff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x92d3d000 - 0x92d61fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x92d62000 - 0x92dc4fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x92e21000 - 0x92e36fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x92e37000 - 0x92e3afff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x92e3b000 - 0x92e3bfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92e3c000 - 0x92e4aff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x92e4b000 - 0x92e57ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x92e58000 - 0x92e7dffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x92e7e000 - 0x92ec2fff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93643000 - 0x9364dffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9364e000 - 0x936fdff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x936fe000 - 0x937e7ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x938f9000 - 0x9391bfff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x93a03000 - 0x93e45ff7  com.apple.CoreGraphics (1.600.0 - 328.0.4) <E1D5CF68-B1CB-370E-A326-DA4292C0C096> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x93e46000 - 0x93eacfff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x93f4b000 - 0x93f4cfff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x93f4d000 - 0x93fa8fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x93fa9000 - 0x93fb0fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x94194000 - 0x94197ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x94198000 - 0x941fcff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x941fd000 - 0x94265ff7  com.apple.framework.IOKit (2.0.1 - 755.20.4) <12C97562-CBBD-3255-A998-28A341128FC8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94266000 - 0x94270fff  libCSync.A.dylib (328.0.4) <A875CE4A-EB89-309F-B160-F3CC8BBF0A11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x942a0000 - 0x9431aff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9431b000 - 0x94413ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x94414000 - 0x94431ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x94432000 - 0x94440ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x948e0000 - 0x948e0fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x948e1000 - 0x94938ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x94cb2000 - 0x94cb3fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x94cb4000 - 0x94cb5fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x94cfe000 - 0x94d0cfff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94d5e000 - 0x94d6bff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x94d6c000 - 0x94dabff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94dae000 - 0x94dc0ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x94dc1000 - 0x94eceff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x94ecf000 - 0x94edbff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x94edc000 - 0x94f33ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x94f40000 - 0x94f44ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x94f45000 - 0x94f45fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94f46000 - 0x95081ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x95082000 - 0x95082fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x95083000 - 0x9520cff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x95657000 - 0x95762ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x95763000 - 0x957a8ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x957a9000 - 0x957d6ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x957d7000 - 0x957d8ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x957d9000 - 0x95855ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95856000 - 0x95891fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x95892000 - 0x95892fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95893000 - 0x958b8ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95922000 - 0x95c3fff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95c40000 - 0x95c81ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x95c82000 - 0x95d07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x95fa2000 - 0x961b9fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x961ba000 - 0x96376ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x9637e000 - 0x965faff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x965fb000 - 0x966affff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x966b0000 - 0x966b4ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x966b5000 - 0x9689dff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x968dd000 - 0x9690cff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x96a02000 - 0x96a05ff9  libCGXType.A.dylib (328.0.4) <9BC4856B-B92A-3D46-AABD-F5E3E80A8748> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x96a06000 - 0x96a48ffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x96f1d000 - 0x96f49ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x96f4a000 - 0x96f4bfff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x96f4c000 - 0x96f98fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x96f99000 - 0x96f99fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x96f9a000 - 0x96fb1fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x96fb2000 - 0x96fb2fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96fb3000 - 0x96fb3fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x96fb8000 - 0x96fd1fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96fd2000 - 0x9703afe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9705d000 - 0x970bafff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x970bb000 - 0x9715bff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9718e000 - 0x97191ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x97a0f000 - 0x97a0ffff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x97a10000 - 0x97a5fff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97c3f000 - 0x97c41ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97c42000 - 0x97c49fff  libsystem_dnssd.dylib (379.34) <885F324F-43A3-30A9-8A6B-3665065CC588> /usr/lib/system/libsystem_dnssd.dylib
    0x97c4a000 - 0x97c53ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97c54000 - 0x97d45ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x97d48000 - 0x97d62ffc  libsystem_kernel.dylib (2050.20.9) <561E35E5-E32E-3BFB-9E8B-C977BA6C4F85> /usr/lib/system/libsystem_kernel.dylib
    0x97d65000 - 0x97db3ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97db4000 - 0x98074fff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98075000 - 0x98077fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x98078000 - 0x9807fff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98080000 - 0x98082fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x98083000 - 0x98089fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x980cb000 - 0x980d8fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98193000 - 0x985b0fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x985b1000 - 0x985b5fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x985b6000 - 0x985b7fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x985b8000 - 0x985d6ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x985d7000 - 0x9860aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9860b000 - 0x98665fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x98677000 - 0x986e6ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x986e7000 - 0x986f0ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x98717000 - 0x987b1fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x987b9000 - 0x987c1fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x987fa000 - 0x98bddff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x98bde000 - 0x98be8fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x98be9000 - 0x98bf7fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x98ee7000 - 0x99034ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x99035000 - 0x9903cffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9903d000 - 0x9903dffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x99297000 - 0x99329ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9932a000 - 0x993e7feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x993e8000 - 0x99504ff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x99505000 - 0x998bdffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x998be000 - 0x998d0fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x998d1000 - 0x998d2ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9a611000 - 0x9a656ff5  com.apple.opencl (2.1.21 - 2.1.21) <8B48DA40-593C-36D1-8E1B-6739448F38F7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a657000 - 0x9a65effb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9a65f000 - 0x9a66fff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9a6cc000 - 0x9a6d2fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0xb0000000 - 0xb0011ff8 +com.adobe.ahclientframework (1.6.0.20 - 1.6.0.20) <6FB288F2-45FD-E54A-C9A4-A0D0C374FE37> /Applications/Adobe Extension Manager CS5.5/Adobe Extension Manager CS5.5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba91cffd  libJapaneseConverter.dylib (61) <A3F2F55D-E491-3532-A8F6-8D3F2455704F> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ffc  libKoreanConverter.dylib (61) <39F6BEE7-AE54-3423-B920-2A3573BC9A1A> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 9137
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=143.2M resident=62.2M(43%) swapped_out_or_unallocated=81.0M(57%)
    Writable regions: Total=138.9M written=26.3M(19%) resident=33.6M(24%) swapped_out=944K(1%) unallocated=105.4M(76%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 33.1M
    CG backing stores                  3232K
    CG shared images                   1216K
    CoreServices                       3172K
    MALLOC                             49.6M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      156K
    Memory tag=35                      7160K
    Stack                              69.6M
    VM_ALLOCATE                       116.7M
    __DATA                             9804K
    __DATA/__OBJC                       120K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         32.8M
    __OBJC                             1728K
    __OBJC/__DATA                       116K
    __PAGEZERO                            4K
    __TEXT                            110.3M
    __UNICODE                           544K
    mapped file                       121.3M
    shared memory                       316K
    ===========                      =======
    TOTAL                             561.1M
    Model: MacBookAir5,2, BootROM MBA51.00EF.B01, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353737334448302D594B302020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353737334448302D594B302020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.14)
    Bluetooth: Version 4.1.2f9 11046, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD TS128E, 121,33 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 6
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 9
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024d, 0x1d182000 / 5
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 4
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3

    This worked for me too, after i installed the wrong cs6 version because it is so unclear what you actually need from the plethera of patches and updates on the linked page.
    Why can't adobe do what normal companies do and update the actual cs5.5 extension manager downloader for mountain lion or at the very least put a blurb on the extension manager page about needing a patch. Instead you make me waste my time googling all over the place to find a single link inside of a forum.
    Adobe is the most disorganized software company i have ever seen!

  • Picture Manager with command line for Bat files

    Hello 
    I am wondering if Microsoft Picture manager has any command line switches i could use.
    I resize thousands of photos weekly using Picture manager for a semi automated process. The resize is the part that is not automated. For some reason when using image magik the resize is done but it does not accept some images where i upload them, yet if
    i do it in parallel with Office picture manager the Microsoft re-sized always work. 
    The process uses VB Access, downloads all images changes the extension from one card extensions to jpg and ammends the name. sorts the images to two folders.
    Then i resize as a batch manually. Not difficult but needs hands on and have you tried changing the dimensions in picture manager when all are selected. tedious!
    Then the final bat uploads to correct locations. 
    So my question, how to use command line with Microsoft picture manager. If not command line Powershell. I can not beleive that the program can not be opened specifying a folder and resize image dimension to use. I cant see the source code where i believe
    it would be apparent to me how to do so.
    Thank you
    Sometimes the answer is so blindingly obvious i fail to see!

    I have done it before on BOXI R2 with the IW, and it works fine
    But any how, this is the way that we have to work with, since it is part of a customer product and the link universe and it's reports  is an additional part of the product.
    So is there a way that I can pull just the main universe and it's reports?

  • Flash version problems when using Extension Manager

    I am deaf so I wanted to try the extension at
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1182 518
    in case any web sites I visit happen to have provided captioning.
    When I try to install the extension with Extension Manager CS5, it halts with a message saying that I need Flash version 8 or higher.  Downgrading from Flash version 10.1 to 9.x did not help.  Further downgrading to version 8.42 did not help either.  Yes, I did uninstall Flash each time before installing the next version.
    I spent some time trying to find help in "Adobe Community Help", but that program is useless because the font is so tiny and it does not provide a way for the user to select a usable font size.   Reducing my display resolution enough to make "Adobe Community Help" readable renders everything else useless because menus, buttons, fonts, dialog boxes, etc are now so freaking huge.

    I do not have the "Creative Suite" in any version.   I thought I was trying to install an extension for viewing content - I have no interest in creating anything. 
    I went back to the link I posted and it still makes me think it is an extension for displaying captions and that there is a different extension for creating them.
    If it really is not an extension to allow end-users to read captions, then I've been wasting both of ours times.  I'll just go back to nagging web sites - news sites in particular - to stop using Flash and switch to proper video formats that allows captioning for deaf users.

  • Why does Fireworks CS5 not show in Adobe Extension Manager CS5.5?

    Hello,
    I have problem with Extension Manager CS5.5.
    But i have been found worng version of Extension Manager CS5. How do i move to new version of Extension Manager CS5.5?
    I have been found help but it can not work while i am using command
    http://help.adobe.com/de_DE/extensionmanager/cs/using/WSB4845EDD-14E5-476a-B749-FF328830D1 4F.html
    i have been tried ..
    look like this "Adobe Extension Manager CS5.exe" -enable product="Fireworks CS5" extension="Fireworks CS5"
    But Extension Manager CS5.5 does not show "Fireworks CS5?
    How do i fix this?

    Hi,
    1. Extension Manager CS5.5 is used to manager products of CS5.5. Extensions of Fireworks CS5 can only be managed by Extension Manager CS5, which could be downloaded from below link.
    http://www.adobe.com/exchange/em_download/em50_download.html
    2. The '-enable' is used to enable extensions, not product. Fireworks CS5 shall be listed automacially in Extension Manager CS5.
    Tell us if you have further problem.
    Thanks,
    Guo

  • Adobe Application Manager Update fehlgeschlagen Fireworks Update auf Adobe Pixel Bender Toolkit 2.5, CS5 11.0.2-Aktualisierung, Update für Adobe Extension Manager CS5 5.0, Adobe Illustrator CS5 15.0.2 Aktualisierung

    Guten Abend Community, erst einmal bin ich neu hier und leider auch hier, da ich ein Problem habe welches ich einfach nicht gelöst bekomme.
    Ich musste mein System kommplett neu Installieren und habe anschließend Adobe Web Premium 5 Installiert was auch ohne Probleme Funktioniert, anschließend habe ich die Updates durcheführt welches auch fast ohne Probleme läuft qalle anderen Updates wurden Installiert bis auf die in der fehlermeldung. was kann ich da machen damit das nicht mehr auftritt ?
    PS: Davor ging das auch problemlos, das System habe ich erst vor 3 Tagen neu Aufgesetzt.
    Protokol der fehlermeldung
    Update auf Adobe Pixel Bender Toolkit 2.5
    Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut. Fehlercode: U43M1D207
    Fireworks CS5 11.0.2-Aktualisierung
    Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut. Fehlercode: U43M1D207
    Update für Adobe Extension Manager CS5 5.0
    Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut. Fehlercode: U43M1D207
    Adobe Illustrator CS5 15.0.2 Aktualisierung
    Beim Herunterladen dieses Updates ist ein Fehler aufgetreten. Schließen Sie den Vorgang und versuchen Sie es später erneut. Fehlercode: U43M1D207
    Ja ich habe das mehrmals Versucht
    Mein System:
    Betriebssystem: Windows 8.1 Pro 64-bit
    CPU: AMD FX-8350 (8 x 4,00 GHz bzw. 8 x 4,20 GHz im Turbo Modus)
    DDR RAM III: 12,0GB Dual Kanal DDR3 @ 664MHz (9-9-9-24)
    Motherboard: MSI 970A-G43 (MS-7693) (CPU 1)
    Grafik: ASUS VS247 (1920x1080@60Hz)
    1023 MBNVIDIA GeForce GTX 460 (Gigabyte)
    Speicher:
    74GB INTEL SSDSA2M080G2GC (SSD)
    1863GB Seagate ST2000DM001-1CH164 (SATA)
    Installierte Programme:
    [spoiler]
    7-Zip 9.20 (x64 edition)
    Adobe Acrobat 9 Pro - English, Français, Deutsch
    Adobe AIR
    Adobe Community Help
    Adobe Creative Suite 5 Web Premium
    Adobe Extension Manager CS5
    Adobe Flash Player 10 ActiveX
    Adobe Flash Player 14 Plugin
    Adobe Media Player
    Adobe Photoshop Elements 12
    Adobe Photoshop Elements 12
    Adobe Photoshop Lightroom 5.4 64-bit
    Adobe Pixel Bender Toolkit 2
    Adobe Premiere Elements 12
    Adobe Reader XI (11.0.07) - Deutsch
    Apple Application Support
    Apple Software Update
    BioShock 2
    BioShock Infinite
    Bitdefender Total Security
    CCleaner
    CLICKBIOSII
    Clive Barker's Jericho
    CrystalDiskInfo 6.1.14
    CyberGhost 5
    DAEMON Tools Lite
    Defraggler
    Deus Ex: Human Revolution - Director's Cut
    DHTML Editing Component
    Die Siedler 7
    DiskCryptor 1.1
    Duke Nukem Forever
    Elements 12 Organizer
    Entity Framework 6.0.1 Tools for Visual Studio Next
    Entity Framework 6.1.0 Tools for Visual Studio 2013
    Entity Framework Designer für Visual Studio 2012 - DEU
    Erforderliche Komponenten für SSDT
    Far Cry® 3
    Free Studio version 2014
    Freemake Audio Converter Version 1.1.0
    Freemake Video Converter Version 4.1.4
    Freemake Video Downloader
    GIMP 2.8.10
    Grand Theft Auto IV
    Grand Theft Auto: Episodes from Liberty City
    GRID 2
    Hitman: Absolution
    Homefront
    IIS 8.0 Express
    IIS Express Application Compatibility Database for x64
    IIS Express Application Compatibility Database for x86
    ImgBurn
    Inno Setup Version 5.5.5
    Java 8 Update 5
    Java 8 Update 5 (64-bit)
    Java SE Development Kit 8 Update 5
    Java SE Development Kit 8 Update 5 (64-bit)
    Just Cause
    Just Cause 2
    Just Cause 2: Multiplayer Mod
    Left 4 Dead 2
    Left 4 Dead 2 Beta
    Mafia II
    Metro 2033
    Microsoft .NET Framework 4.5 Multi-Targeting Pack
    Microsoft .NET Framework 4.5 SDK
    Microsoft .NET Framework 4.5 SDK - DEU Lang Pack
    Microsoft .NET Framework 4.5.1 Multi-Targeting Pack
    Microsoft .NET Framework 4.5.1 Multi-Targeting Pack (ENU)
    Microsoft .NET Framework 4.5.1 SDK
    Microsoft .NET Framework 4.5.1 SDK (Deutsch)
    Microsoft .NET Framework 4.5.3 Multi-Targeting Pack
    Microsoft .NET Framework 4.5.3 Multi-Targeting Pack (ENU)
    Microsoft Expression Design 4
    Microsoft Expression Encoder 4
    Microsoft Expression Encoder 4 Screen Capture Codec
    Microsoft Expression Web 4
    Microsoft Help Viewer 2.0
    Microsoft Help Viewer 2.0 Language Pack - DEU
    Microsoft Help Viewer 2.1
    Microsoft Help Viewer 2.1 Sprachpaket - DEU
    Microsoft Help Viewer 2.2
    Microsoft Mathematics (64-Bit)
    Microsoft Office Professional Plus 2013
    Microsoft Silverlight
    Microsoft Silverlight 4 SDK - Deutsch
    Microsoft Silverlight 5 SDK
    Microsoft SQL Server 2012 Command Line Utilities
    Microsoft SQL Server 2012 Data-Tier App Framework
    Microsoft SQL Server 2012 Data-Tier App Framework (x64)
    Microsoft SQL Server 2012 Express LocalDB
    Microsoft SQL Server 2012 Management Objects
    Microsoft SQL Server 2012 Management Objects (x64)
    Microsoft SQL Server 2012 Native Client
    Microsoft SQL Server 2012 T-SQL-Sprachdienst
    Microsoft SQL Server 2012 Transact-SQL Compiler Service
    Microsoft SQL Server 2012 Transact-SQL ScriptDom
    Microsoft SQL Server 2014 Express LocalDB
    Microsoft SQL Server 2014 Management Objects
    Microsoft SQL Server 2014 Management Objects (x64)
    Microsoft SQL Server 2014 T-SQL Language Service
    Microsoft SQL Server 2014 Transact-SQL ScriptDom
    Microsoft SQL Server Compact 4.0 SP1 x64 DEU
    Microsoft SQL Server Compact 4.0 SP1 x64 ENU
    Microsoft SQL Server Data Tools - DEU (11.1.20828.01)
    Microsoft SQL Server Data Tools - DEU (12.0.30919.1)
    Microsoft SQL Server Data Tools - enu (14.0.40528.0)
    Microsoft SQL Server Data Tools Build Utilities - DEU (11.1.20828.01)
    Microsoft SQL Server Data Tools Build Utilities - DEU (12.0.30919.1)
    Microsoft SQL Server System CLR Types
    Microsoft SQL Server System CLR Types (x64)
    Microsoft System CLR Types for SQL Server 2014
    Microsoft Visual C++ 14 CTP Redistributable (x64) - 14.0.21901
    Microsoft Visual C++ 14 CTP Redistributable (x86) - 14.0.21901
    Microsoft Visual C++ 2005 Redistributable
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.17
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.17
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161
    Microsoft Visual C++ 2010 x64 Redistributable - 10.0.40219
    Microsoft Visual C++ 2010 x86 Redistributable - 10.0.40219
    Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.60610
    Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.60610
    Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.60610
    Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.60610
    Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.21005
    Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.21005
    Microsoft Visual Studio 2010 Tools for Office Runtime (x64)
    Microsoft Visual Studio Express 2012 für Windows Desktop - DEU
    Microsoft Visual Studio Express 2013 für das Web - DEU
    Microsoft Visual Studio Express 2013 für Windows Desktop - DEU
    Microsoft Visual Studio Professional 14 CTP
    Microsoft Web Deploy 3.5
    Microsoft Web Platform Installer 5.0
    Microsoft WebMatrix 3
    Microsoft-System-CLR-Typen für SQL Server 2012
    Microsoft-System-CLR-Typen für SQL Server 2012 (x64)
    Mozilla Firefox 30.0 (x86 de)
    Mozilla Maintenance Service
    Mozilla Thunderbird 24.6.0 (x86 de)
    NirSoft Wireless Network Watcher
    Nmap 6.46
    Notepad++
    NVIDIA 3D Vision Controller-Treiber 337.88
    NVIDIA 3D Vision Treiber 337.88
    NVIDIA GeForce Experience 2.1
    NVIDIA Grafiktreiber 337.88
    NVIDIA HD-Audiotreiber 1.3.30.1
    NVIDIA PhysX-Systemsoftware 9.13.1220
    Opera Stable 22.0.1471.70
    Oracle VM VirtualBox 4.3.14
    paint.net
    Paket zur Festlegung von Zielversionen für Microsoft .NET Framework 4.5.1 (Deutsch)
    Prerequisites for SSDT
    PunkBuster Services
    QuickTime 7
    RAGE
    Recuva
    Safari
    Sleeping Dogs™
    Spec Ops: The Line
    Speccy
    Steam
    TAP-Windows 9.9.2
    TeamViewer 9
    The Bureau: XCOM Declassified
    The Elder Scrolls III: Morrowind
    TIPP10 Version 2.1.0
    Tom Clancy's Ghost Recon Phantoms - EU
    Tom Clancy's Splinter Cell Conviction
    Tomb Raider
    Turbo Lister 2
    Uplay
    VeraCrypt
    VLC media player 2.1.4
    VMware Player
    Wacom Tablett
    WCF RIA Services V1.0 SP2
    WebTablet FB Plugin 32 bit
    WebTablet FB Plugin 64 bit
    Windows Azure Authoring Tools - v2.3
    Windows Azure Compute Emulator - v2.3
    Windows Azure Libraries for .NET – v2.3
    Windows Azure PowerShell - June 2014
    Windows Azure Storage Emulator - v3.2
    Windows Azure Storage Tools - v2.2.2
    Windows Phone 8.1 Emulators - ENU
    Windows Phone SDK 8.0 - DEU
    WinHTTrack Website Copier 3.48-17
    WinPcap 4.1.2
    Worms Reloaded
    XAMPP
    XEOX Gamepad SL-6556-BK
    XMind 2013 (v3.4.1)
    Zune
    [/spoiler]
    Wenn noch fragen offen sind einfach fragen, ich würde gerne das Problem so schnell wie möglich lösen....

    Ja wie gesagt es hat davor auch ohne Probleme Funktioniert nur war ich gezwungen das System neu zu Installieren und ab dann konnte ich die da oben genannten Updates nicht mehr Installieren. Ein Mac ist zwar eine schöne Sache kommt aber für mich nie in Frage da ich mein PC als Arbeitsrechner und Gamer Rechner nutze und das meiste läuft halt nicht auf einen Mac und man müsste manche Programme neu Kaufen, das sehe ich überhaupt nicht ein, und meine Anwendungen werden aus Prinzipien nicht für Apple Produkte entwickelt da verdient man kaum etwas... aber das muss jeder für sich entscheiden. An eine neue Version habe ich eventuell nächstes Jahr gedacht aber auch nur die CS6 ob man das brauch ist die Frage da CS 5 genau macht was es soll. Das Modell mit der Adobe Cloud hat zwar denn Vorteil das die Programme Aktuell sind aber man muss Monatlich dafür Zahlen und CS5/CS6 oder älter brauch man nur einmal Kaufen. Darüber hinaus finde ich eh das Adobe so eine richtige S*** ist wenn es um Support ältere Programme geht so zeigt Adobe meiner Meinung nach das Ihre Produkte nichts wert sind zumindest macht es den Anschein. Aber wie gesagt, bin ich hier um Hilfe zu bekommen um das Problem zu lösen ohne ein neue Version zu kaufen, das ist ja bekanntlich die einfachste Lösung, aber wenn Informatiker auch so denken würden dann würde es sehr schlecht aussehen... und als Anmerkung am Rande, es wäre ja nett wenn man mir denn Link dieser Updates zukommen lassen könnte um die Updates Manuell zu Installieren.
    "Aber wie sollen wir denn Programme testen auf Hardware und OS, die es erst in ein paar Jahren geben wird."
    Dies kann man in voraus natürlich nicht aber in nachhinein geht das und Software Entwickler denn etwas an Ihre Produkte liegt, machen das nachhinein auch und passen gegebenenfalls Ihr Produkt an.
    PS: CS 2 läuft ebenfalls auf einem Windows 8.1 rechner ;-)

  • Adobe Extension Manager CS5 wont work on Windows 7 Pro x64 only on XP Mode in Virtual PC

    I am on Windows 7 Professional 64 bit operating system on HP ProBook 4720s with XPMode in Virtual PC activated
    I run Adobe Extension Manager CS5.exe as Admin and the log files has only 3 lines
    [DEBUG]  Sat Apr 16 10:33:53 2011  (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manage  r\win\owlmain.cpp,941) -OWL environment initializd OK
    [DEBUG] Sat Apr  16 10:33:53 2011  (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manage  r\win\owlmain.cpp,944) -C:\Program Files (x86)\Adobe\Adobe Extension  Manager CS5
    [FATAL] Sat Apr 16 10:33:53 2011  (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manage  r\win\owlmain.cpp,982) -Failure to create SWf window
    I noticed that the drive d: doesn't exist on my computer; there was only Local Disk (C:) and HP_TOOLS (F:)
    I  have installed Adobe Creative Suite CS5 in Windows XP Mode in Virtual  PC and Adobe Extension Manager CS5 runs OK but I am in Windows XP pro  SP3 not in Windows 7 Professional x64
    How do I make to run Adobe Creative Suite CS5 correctly in Windows 7 Professional 64 bit operating system

    I have the same problem.
    I installed Dreamweaver CS5 and Adobe Exchange Manager for CS5 too in my Lenovo 760p Windows 7 x64.
    The extension not open and appear this errors in the log.
    [DEBUG] Tue Apr 19 07:36:54 2011 (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manager\win\owlmain.cpp,94 1) -OWL environment initializd OK
    [DEBUG] Tue Apr 19 07:36:54 2011 (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manager\win\owlmain.cpp,94 4) -C:\Program Files (x86)\Adobe\Adobe Extension Manager CS5
    [FATAL] Tue Apr 19 07:36:54 2011 (d:\extensionmanager_5.0.1_win\20110110.5_0_1.334\trelo\source\manager\win\owlmain.cpp,98 2) -Failure to create SWf window
    I tried to open the extension manager as Adminstrator and not open.
    Please tell us what is the issue?
    I bought all the webassist extensions but i can´t install for it.
    Best regards,
    JG

  • How do i add a .pbk effect from adobe in adobe extension manager CS5

    *THIS IS FOR PHOTOSHOP CS5 ON A MAC*
    Does anyone know how to add an effect like the droste effect which is a .pbk file into a pixel bender file which is a .mxp file for the Adobe Extension Manager CS5. I have yet to find a solution for this problem but all help is appreciated. Thank you.

    First update to the newest Illustrator version if needed. The SVG files you create with Adobe Shape CC are added to your Libraries and are accessible from many desktop applications. From Illustrator create a new document. Open the Libraries panel and right-click on the Shape file and choose Use in document. Then click on the Illustrator file to place the Shape. Save the file to your Creative Cloud Files folder and it will sync up to the Files section at https://assets.adobe.com.
    Shape added to Illustrator file:
    Viewing the file from the Files section:

  • Error Code: U43M1D207 installing Adobe Extension Manager CS5 5.0 Update

    I've searched for this error and read the replies. None of them helped.
    I'm running PS CS5 Extended, version 12.0.4. It was just moved onto a new computer. Other Adobe products include Acrobat XI Pro and Reader XI.
    After the software was installed on the new computer, I updated Acrobat and Reader with no problems. When I updated PS, IIRC, some updates installed properly, but Extension Manager CS5 5.0 will not install.
    I tried manually installing AEM CS5 5.0. It installed without error, but PS doesn't seem to recognize it.
    This problem was not happening on my old computer.
    Any suggestions?

    I spent more time reading the related posts on this topic and found a work-around, which was to set the clock on the PC back. The post I found mentioned October 2011, so I used October 1, 2011. That worked. PS updated completely with no errors.

  • Extension manager CS5 don't launch properly ... (empty menus)

    Hi,
    I've got only the Extension Manager CS5 menu, and no more, when I launch Extention manager CS5 on a mac os 10.6.3,
    no splash screen.
    I've fixed all the permissions in /Library/Application Support/Adobe/ and ~/Library/Application Support/Adobe/
    Tried to unistall Ext.manager and reinstall, nothing to do.
    When I quit the app, there is a crash windows :
    Process:         Adobe Extension Manager CS5 [1064]
    Identifier:      com.adobe.ExtensionManager
    Version:         "5.0.0.298" (5.0.298)
    Code Type:       X86 (Native)
    Parent Process:  launchd [689]
    Date/Time:       2010-05-23 19:23:33.687 +0200
    OS Version:      Mac OS X 10.6.3 (10D573)
    Report Version:  6
    Interval Since Last Report:          570015 sec
    Crashes Since Last Report:           50
    Per-App Interval Since Last Report:  1511 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      A19F67E8-2F77-43D3-BDA9-5AE620D63D97
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    And when I try to launch it in command mode (# Adobe\ Extension\ Manager\ CS5/Adobe\ Extension\ Manager\ CS5.app/Contents/MacOS/Adobe\ Extension\ Manager\ CS5), here are the results :
    2010-05-23 19:21:59.980 Adobe Extension Manager CS5[1048:903] 5.00000
    2010-05-23 19:22:00.120 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2b1ca20 of class NSCFString autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.120 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2928ec0 of class NSPathStore2 autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.121 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2928a80 of class NSBundle autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.122 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd10740 of class NSCFString autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.147 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd08290 of class NSCFData autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.158 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xa01b7848 of class NSCFString autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.158 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd14b50 of class NSCFArray autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.159 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd14ed0 of class NSMutableParagraphStyle autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.159 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd14f20 of class NSCFDictionary autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.160 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xe016b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.160 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2b08d90 of class NSCFData autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.161 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xa01bcb08 of class NSCFString autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.161 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x292c9d0 of class __NSArray0 autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.162 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2b1d090 of class NSView autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.162 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0x2b1d580 of class NSCFArray autoreleased with no pool in place - just leaking
    2010-05-23 19:22:00.163 Adobe Extension Manager CS5[1048:903] *** __NSAutoreleaseNoPool(): Object 0xd152b0 of class NSCFArray autoreleased with no pool in place - just leaking
    Hope to go trough this to install extensions, thanks.

    I have the same problem. Questions:
    1. Did you find in the meantime a solution?
    No solution yet ...
    I made some tests with desactivation my InpuManagers, same thing ... 
    2. Did you accomplish an update of leopard on SnowLeopard?
    Yes Snow Leopard came on an Leopard installation. 
    On my new MacBook Pro the manager runs problem-free!
    Yes, should be a damn old thing in the /Library/Adobe (there is really
    lots of things in here) or something like that, but I don't want to break
    more things ...  

Maybe you are looking for

  • ASK THE EXPERTS : High Density Wireless Deployments and CleanAir Technology

    with Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to get an update on High Density Wireless Deployments and CleanAir technology with Cisco expert Fred Niehaus. Fred is a technical marketing engineer for t

  • Unrecognized Event Datatype Using ActionScript 3.0 Cookbook

    This is my first time using Flash 9 Alpha (F9A)/ActionScript 3.0. I am using code from the ActionScript 3.0 Cookbook so I assumed it would work immediately; this is not the case. I've verified that my code looks exactly as it does in the Cookbook wit

  • Photos Not Loading After Transferring Library

    I have recently transferred my Aperture 3 Library from my old 2006 iMac to my new 2011 iMac. The folders and albums appear the same as they did on my old iMac and the number of photos in each of the folders and albums appear as a popup when I run my

  • Strange "code" in the Comments field when playing songs

    When I play some songs (probably 80% of my archive) iTunes generate some strange code in the Comments field. This is quite annoying, since I use the field to write additional info about the song, artist, location, whatever. Examples of such codes: "

  • Changing resolution with iPhoto

    I work for a small church and we are running into the issue of our photos not being a high enough resolution for printed materials. Is there a way to check and to change the resolution to at least 300dpi? Many thanks in advance!