Assistance with my script to find all opened windows (applications running) on remote computer

Hello,
I have the following script whereby I want to list all the running (opened) applications on a remote computer.  It's a shared computer between two people who use the same generic ID.  Before one RDP's into it, I thought it would be interesting
to see if any apps are opened before logging in. 
Here is the code:
$cred = Get-Credential
Invoke-Command -ComputerName server123 {Get-Process *mail* | Where {$_.MainWindowHandle} | Select Name,MainWindowTitle} -Cred $cred
It works in that it asks for my credentials and runs without any error...but this script also does not display any running applications. I'm not sure what it should show. Perhaps I need to add a line of code to display what it found?
Another bit of info I would like to use in this script is to also confirm that the generic ID is logged in at the time I run this script.  I could use the following bit of code:
get-wmiobject Win32_ComputerSystem -computername server123 | format-table -property username
But when I run this code I get an access denied message. I'm assuming I need to use the Get-Credential again from my first script, but I'm unsure how to use it in the get-wmiobject?
Any help you can provide would be greatly appreciated.
Thank you.

Ok...shifting gears again.  Instead of running this remotely I'm thinking of running a scheduled task on the server and creating this .htm file.  That way no one has to run and enter in credentials (and if entered wrong cause issues with locking
out the account).  So, I've modified my script and confirmed that when I run it from Powershell when logged into the server, the results file correctly shows the logged in userid and the running applications (windows) I have opened. 
But, when I run this same exact script from my task scheduler, the running applications piece is blank?  The server I'm running this on is Windows Server 2008.  I've tried running it from Task Scheduler using Powershell and from a .bat file that
calls my Powershell script.  Both ways results in my .htm file not showing any applications running.  Yet when I run the same script (either from Powershell or the .bat file) the .htm file correctly shows the running applications.  My Task Scheduler
Job is using the same user id that I'm logged in with so there shouldn't be any permission issues with running from the task scheduler.
Here is my code:
$a = "<style>"
$a = $a + "BODY{background-color:peachpuff;}"
$a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
$a = $a + "TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:thistle}"
$a = $a + "TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:PaleGoldenrod}"
$a = $a + "</style>"
get-wmiobject Win32_ComputerSystem | ConvertTo-HTML -head $a -body "<H2>Logged in UserID</H2>" -property username | Out-File C:\Powershell_Scripts\Test.htm ; Get-Process |where {$_.mainWindowTItle} |Select-Object name,mainwindowtitle | ConvertTo-HTML -head $a -body "<H2>Open Applications</H2>" | Out-File C:\Powershell_Scripts\Test.htm -Append
Can anyone tell me what might be the reason for the script running from the scheduled task having issues?
Thank you.

Similar Messages

  • Find all open windows and close them

    Hi,
    I'm writing an application that creates a new thread. This thread loads an other application from the filesystem and invokes the main method.
    When the thread loads an application that opens a frame, my application can stop the thread, but the frame stays open.
    Is there a way that my application can detect if the thread has opened a frame and if there are opened frames that it can close them?

    Well, tht's an idea, but my problem is, that my thread can start any aplication by invoking it's main-method.
    That means that even my Thread doesn't know which and how many frames it has opened or at least I don't know how I could get a list of all openened frames :-(
    A little bit code:
    /*Class classToRun is given to the Thread at it's initalisation and already loaded
    by a custom ClassLoader, that loads any .class file from a given location*/
    classToRun.getMethod("main", new Class[]{String[].class}).invoke(null, new String[]);

  • Find names of all open windows including other applications besides LabView VIs

    Hi All, I have researched this subject, i.e., to find names of all open windows including other applications besides LabView VIs, but found no solution. Could someone suggest a solution to this?  Thanks.

    Hi,
    Certainly! The Windows API Function Utilities (32-bit) for LabVIEW includes set of LabVIEW libraries (llb) with VIs that make calls to the Windows Application Programming Interface (API) for managing and controlling windows (minimize, maximize, move, resize, rename, close, and so on) including task list with names of windows application running. The Readme.doc contains information on running these VIs.
    Attached below is a zipped file with a VI that list the names of all opened windows.
    Tunde
    Message Edited by Tunde A on 04-18-2007 02:28 PM
    Attachments:
    List Windows Application LV8.0.zip ‏55 KB

  • Script to find all mailboxes a user can access

    I am looking for a script to find all mailboxes to which one user has access to. I have used:
    get-mailbox -resultsize unlimited | get-folderpermission -user username > file.csv
    The problem with this is the amount of mailboxes, powershell returns:
    Sending data to a remote command failed with the following error message: The total data received from the remote clien
    t exceeded allowed maximum. Allowed maximum is 524288000. For more information, see the about_Remote_Troubleshooting
    The problem is the amount of data. Is there a way to do this by database, by servers, skimmed down, etc?
    Thanks

    Hi,
    The following command can list all mailboxes which the specific user Bob has full access permissions, please try it:
    Get-Mailbox -Database "Mailbox Database01" -ResultSize unlimited | Foreach {Get-MailboxPermission -Identity $_.Name -User Bob}
    Regards,
    Winnie Liang
    TechNet Community Support

  • An OS before 10.10 provided shortcut f10 to "show all open windows".  How do we do that with 10.10?

    It Has been very convenient at times to review all open windows, especially when working on multiple projects that clutter the desktop.  Without the f10 shortcut, I can't easily find my way through the mishmash piled high on my desktop.  How do we "show all open windows" with Yosemite??

    I'm guessing you are referring to "Mission Control" - the keyboard shortcut for this is set in "System Preferences" then "Mission Control" and I think the default when the system is first setup is F3, not F10. So check out "System Preferences" and see what it currently is and if you want to change it to the F10 go ahead and change it there, along with any of the other shortcuts you might have had before with the previous OS X version.
    Good luck...

  • How to find all open POs and there SUM

    How to find all open POs and there SUM
    Please help.
    Thanks,
    vihar9

    Have you tried looking at the tables, standard reports, or the PO display transaction?  Have you asked your functional analyst or development team lead? This is not a forum to post a requirement and get your job done for you...

  • How to find list of all open windows?

    Hi,
    I was wondering how to find a list of all open windows on the
    desktop. I have been able to use this to find the number of open
    windows in the AIR application:
    var windows:Array =
    NativeApplication.nativeApplication.openedWindows;
    test.text = String(windows.length);
    I cant seem to get the list of all open windows on the
    desktop though or the names of the windows.
    Any pointers would be appreciated.
    Thanks!

    Thanks anirudhs. I had a feeling this was the case. It just
    seemed odd that the built-in function calls like orderToBack() and
    orderToFront actually put the AIR windows behind or in front of all
    the windows on the desktop. Somehow AIR is finding the list of open
    windows on the desktop. I just didnt know if there was some way to
    access AIR's way of finding the windows. Guess it must be a
    protected function. Thanks!

  • Why the question mark on all open windows while in the Finder?

    I am running OS X version 10.10 on an iMac and a MBP with Retina display. While in the finder every open window has a large question mark displayed. Why is this? What might be the he problem? What can be done to correct the issue?
    Thanks in advance!

    Where is it displayed? Post an image here:
    To post screen shot do this:
    Press COMMAND-SHIFT-4 which will change the cursor to crosshairs.
    Hold down the mouse button and use the crosshairs to select the part of the screen you wish to capture.
    Release the button and the image will be saved to your Desktop.
    Click on the Camera icon in the toolbar of the forum message editor.
    Drag the image onto the Choose File button and click on the Insert button.
    No guarantee anyone will see it given how the forum has been, but if it is then a picture is worth a thousand words.

  • When i click on a single photo or a folder in finder, preview opens virtually every photograph on my computer in rapid-fire succession. I made a video showing what happens and will try to attach it. Please help.

    Please help. when I click on a single picture or a folder of photos in finder, preview launches and opens virtually all photos in rapid fire succession. I turned off the setting that restores open windows when you restart the computer. That did not help. It has assigned the name  "untitled" to my photos. i don't know what to do. Apple doesn't know what to do. the imac was purchased 6 months ago from apple store in king of prussia PA. I have taken a video showing what happens. i can send this to anyone who wants to see what is going on.
    Please help. This problem persists after restarting and after closing everything down.

    Process: Preview [3268]
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: com.apple.Preview
    Version:         5.5.2 (719.25)
    Build Info: Preview-719025000000000~8
    Code Type: X86-64 (Native)
    Parent Process: launchd [916]
    Date/Time: 2012-07-08 13:49:24.147 -0400
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          3771442 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  1810338 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: B388121D-AFAB-4591-96E0-89D6998B0CC5
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010a70ecec
    VM Regions Near 0x10a70ecec:
        IOKit (reserved) 000000010a68d000-000000010a70d000 [ 512K] rw-/rw- SM=NUL  reserved VM address space (unallocated)
    -->
        MALLOC_LARGE           000000010a725000-000000010a777000 [  328K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[3268]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreGraphics              0x00007fff8c43df9b sseCGSFill8by1 + 155
    1 com.apple.CoreGraphics              0x00007fff8c471fb6 argb32_mark_constshape + 547
    2 com.apple.CoreGraphics              0x00007fff8c4719c3 argb32_mark + 235
    3 libRIP.A.dylib                    0x00007fff8aabf100 ripl_BltShape + 1737
    4 libRIP.A.dylib                    0x00007fff8aabc3af ripc_Render + 362
    5 libRIP.A.dylib                    0x00007fff8aab8c86 ripc_DrawRects + 660
    6 com.apple.CoreGraphics              0x00007fff8c46dc9f CGContextFillRects + 135
    7 com.apple.AppKit                         0x00007fff8b8924b3 NSRectFill + 227
    8 com.apple.AppKit                         0x00007fff8b819a67 -[NSView _drawRect:clip:] + 3995
    9 com.apple.AppKit                         0x00007fff8b817719 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3020
    10 com.apple.AppKit                       0x00007fff8b963560 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 274
    11 com.apple.AppKit                       0x00007fff8b81186f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
    12 com.apple.AppKit                       0x00007fff8b80a2ed -[NSView displayIfNeeded] + 1676
    13 com.apple.AppKit                       0x00007fff8b963438 -[NSNextStepFrame displayIfNeeded] + 83
    14  com.apple.AppKit                       0x00007fff8b809a2d _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 648
    15 com.apple.CoreFoundation        0x00007fff81e848e7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    16 com.apple.CoreFoundation        0x00007fff81e84846 __CFRunLoopDoObservers + 374
    17 com.apple.CoreFoundation        0x00007fff81e59af9 __CFRunLoopRun + 825
    18 com.apple.CoreFoundation        0x00007fff81e59486 CFRunLoopRunSpecific + 230
    19 com.apple.CoreFoundation        0x00007fff81e6919f CFRunLoopRun + 95
    20 com.apple.RemoteViewServices            0x00007fff8c3d2bdc -[NSRemoteSavePanel beginSheetModalForWindow:completionHandler:] + 432
    21 com.apple.AppKit                       0x00007fff8bb6cff9 __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 950
    22 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    23 com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    24 com.apple.AppKit                       0x00007fff8bb6cbdb __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_1 + 208
    25 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    26 com.apple.AppKit                       0x00007fff8bb6cb05 -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 96
    27 com.apple.AppKit                       0x00007fff8bb6c1a4 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_3 + 138
    28 com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    29  com.apple.AppKit                       0x00007fff8bb6c06b __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_2 + 496
    30 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    31  com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    32 com.apple.AppKit                       0x00007fff8bb6be13 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_1 + 192
    33 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    34 com.apple.AppKit                       0x00007fff8bb6bd4d -[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:] + 92
    35 com.apple.Preview                     0x00000001036c7ed6 0x1035ff000 + 822998
    36 com.apple.AppKit                       0x00007fff8bb898ff __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_8 + 131
    37  com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    38 com.apple.AppKit                       0x00007fff8bb71ca9 __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_1 + 1111
    39  com.apple.AppKit                       0x00007fff8bb84acf -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 516
    40 com.apple.AppKit                       0x00007fff8bb71850 -[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:] + 291
    41  com.apple.Preview                     0x0000000103627d89 0x1035ff000 + 167305
    42 com.apple.Preview                     0x0000000103627bd0 0x1035ff000 + 166864
    43 com.apple.Preview                     0x0000000103627987 0x1035ff000 + 166279
    44 com.apple.Preview                     0x00000001036277b8 0x1035ff000 + 165816
    45 com.apple.AppKit                       0x00007fff8be62ef2 -[NSWindow __close] + 286
    46 com.apple.AppKit                       0x00007fff8be62c05 -[NSWindow _batchClose] + 65
    47 com.apple.Preview                     0x00000001036fbbb8 0x1035ff000 + 1035192
    48 com.apple.CoreFoundation        0x00007fff81ebbfb1 -[NSObject performSelector:] + 49
    49 com.apple.AppKit                       0x00007fff8b7cb91b -[NSApplication makeWindowsPerform:inOrder:] + 217
    50 com.apple.AppKit                       0x00007fff8ba7bae5 -[NSApplication _makeWindowsPerform:forEvent:inWindow:standardWindowButton:] + 29
    51 com.apple.CoreFoundation        0x00007fff81eb470d -[NSObject performSelector:withObject:] + 61
    52 com.apple.AppKit                       0x00007fff8b8d0f7e -[NSApplication sendAction:to:from:] + 139
    53 com.apple.AppKit                       0x00007fff8b9bdbfb -[NSMenuItem _corePerformAction] + 399
    54 com.apple.AppKit                       0x00007fff8b9bd932 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    55 com.apple.AppKit                       0x00007fff8b93b524 -[NSMenu performKeyEquivalent:] + 281
    56 com.apple.AppKit                       0x00007fff8b93a175 -[NSApplication _handleKeyEquivalent:] + 526
    57 com.apple.AppKit                       0x00007fff8b833536 -[NSApplication sendEvent:] + 4282
    58 com.apple.Preview                     0x0000000103601d4c 0x1035ff000 + 11596
    59 com.apple.AppKit                       0x00007fff8b7ca0c6 -[NSApplication run] + 555
    60 com.apple.AppKit                       0x00007fff8ba46244 NSApplicationMain + 867
    61 com.apple.Preview                     0x00000001036007f4 0x1035ff000 + 6132
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff819bd7e6 kevent + 10
    1 libdispatch.dylib              0x00007fff8ac6778a _dispatch_mgr_invoke + 923
    2 libdispatch.dylib              0x00007fff8ac6631a _dispatch_mgr_thread + 54
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0 libsystem_kernel.dylib                 0x00007fff819bb6ce semaphore_timedwait_trap + 10
    1 libdispatch.dylib              0x00007fff8ac69270 _dispatch_semaphore_wait_slow + 211
    2 com.apple.RemoteViewServices             0x00007fff8c3d234e __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0323 + 64
    3 libdispatch.dylib              0x00007fff8ac65a86 _dispatch_call_block_and_release + 18
    4 libdispatch.dylib              0x00007fff8ac66965 _dispatch_worker_thread2 + 255
    5 libsystem_c.dylib              0x00007fff856af3da _pthread_wqthread + 316
    6 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 5:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 6:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000003  rbx: 0x0000000000000000  rcx: 0x0000000000000280  rdx: 0x0000000000000000
      rdi: 0x0000000000000280  rsi: 0x0000000000000000  rbp: 0x00007fff631fa0c0  rsp: 0x00007fff631fa098
       r8: 0x000000010a70ecec   r9: 0x0000000000000000  r10: 0x0000000000000440  r11: 0x0000000000000001
      r12: 0x00007fc553e72a60  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fc553e7378c
      rip: 0x00007fff8c43df9b  rfl: 0x0000000000010202  cr2: 0x000000010a70ecec
    Logical CPU: 2
    Binary Images:
           0x1035ff000 -        0x1037e3fef  com.apple.Preview (5.5.2 - 719.25) <EF424E00-DDDF-321B-A789-8273F8BAEE48> /Applications/Preview.app/Contents/MacOS/Preview
           0x103876000 -        0x103895ff7  com.apple.MediaUI (1.0 - 1) <62F2783A-413F-3E6F-849D-B748D726DE81> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
           0x103a17000 -        0x103a25fff  com.apple.Librarian (1.0.1 - 1) <8479DC40-D188-3262-B33F-BC08E46AFD4D> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x105edc000 -        0x105ee2fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x105ee9000 -        0x105eecff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x105ef4000 -        0x105ef4ffd +cl_kernels (??? - ???) <8F424F91-546C-4612-B8C1-F7844F9B45D7> cl_kernels
           0x105efa000 -        0x105efbff3 +cl_kernels (??? - ???) <871199D1-8041-496D-982D-7149CE363CFD> cl_kernels
           0x105f05000 -        0x105f06ffc +cl_kernels (??? - ???) <C541B738-4853-474C-BA6D-745EA88533D6> cl_kernels
           0x105f17000 -        0x105f18ff3 +cl_kernels (??? - ???) <7361CFF4-57C2-4D70-9605-5A20A94328B8> cl_kernels
           0x1082d1000 -        0x10846afff  GLEngine (??? - ???) <61484217-C41D-3A65-86BD-397ACC0D069F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10849e000 -        0x108597fff  libGLProgrammability.dylib (??? - ???) <7396EE13-5FA6-3E78-88D0-2502CFE79A97> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x1085bd000 -        0x108885ff7  com.apple.ATIRadeonX3000GLDriver (7.18.18 - 7.1.8) <337EB117-0CB0-3C9E-AEE8-76BCB3CB9371> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x1088d0000 -        0x1088feff7  GLRendererFloat (??? - ???) <E33704BC-AA25-3279-A585-ABC6B3176D3E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10968c000 -        0x1096acfff  com.apple.ChunkingLibrary (1.0 - 127) <ED9D3079-A201-30D8-9FC4-2F5860100E63> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x109994000 -        0x1099d1fff  com.apple.Ubiquity (1.1 - 210) <E198603B-C205-3366-82BD-7D642FF2F909> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10aa10000 -        0x10aaa3ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
        0x7fff631ff000 -     0x7fff63233baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff81322000 -     0x7fff81328fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff81329000 -     0x7fff81329fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff81680000 -     0x7fff81712ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff81713000 -     0x7fff81725ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8193a000 -     0x7fff819a5ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff819a6000 -     0x7fff819c6fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff819c7000 -     0x7fff81a1bff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff81a5f000 -     0x7fff81a7cff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff81a7d000 -     0x7fff81a93fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81a94000 -     0x7fff81b5bff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff81b5c000 -     0x7fff81b60fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff81b61000 -     0x7fff81b64fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff81b65000 -     0x7fff81b68fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81be0000 -     0x7fff81be0fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81c56000 -     0x7fff81c7ffff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81c80000 -     0x7fff81cc4ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff81cc5000 -     0x7fff81cc6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff81cc7000 -     0x7fff81cddff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff81e21000 -     0x7fff81ff5ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff81ff6000 -     0x7fff82042ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff82043000 -     0x7fff8205dfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8205e000 -     0x7fff8205efff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8205f000 -     0x7fff82348ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82349000 -     0x7fff823dcff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff823dd000 -     0x7fff823f4fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8312d000 -     0x7fff83132fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83133000 -     0x7fff83139fff IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8313a000 -     0x7fff831beff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff831cf000 -     0x7fff8324aff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8324b000 -     0x7fff83274fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83275000 -     0x7fff832ddff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8331f000 -     0x7fff83320fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff83321000 -     0x7fff83341fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83342000 -     0x7fff83342fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff83343000 -     0x7fff83427fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83428000 -     0x7fff838effff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff838f0000 -     0x7fff838f4fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff838f5000 -     0x7fff83957ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff83958000 -     0x7fff83980fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83981000 -     0x7fff83a17ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83a37000 -     0x7fff83b9efff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff83b9f000 -     0x7fff83fd2ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff83fd3000 -     0x7fff83fd8fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff84208000 -     0x7fff84521fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84522000 -     0x7fff84527ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff84528000 -     0x7fff84535ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff84539000 -     0x7fff8458cfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8458d000 -     0x7fff848a9fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff848aa000 -     0x7fff84906ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84907000 -     0x7fff8490eff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8496c000 -     0x7fff84997ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84998000 -     0x7fff8499efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8499f000 -     0x7fff8499ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff849a0000 -     0x7fff849b5fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84ad8000 -     0x7fff84afcfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff84afd000 -     0x7fff84afdfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84afe000 -     0x7fff84bf3fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff84c6e000 -     0x7fff84c6fff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84ca6000 -     0x7fff84d8ae5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff84d8b000 -     0x7fff84dc6fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff84dc7000 -     0x7fff84df7ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff84df8000 -     0x7fff85301ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff85302000 -     0x7fff8530ffff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85561000 -     0x7fff8565eff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8565f000 -     0x7fff8573cfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8573d000 -     0x7fff8576afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86249000 -     0x7fff86473fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86474000 -     0x7fff86552fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff86553000 -     0x7fff8655cff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8658a000 -     0x7fff86591fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86592000 -     0x7fff86b76fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86b77000 -     0x7fff86be7fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86be8000 -     0x7fff86be8fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86be9000 -     0x7fff86be9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86bea000 -     0x7fff86beafff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86c68000 -     0x7fff86cebfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86def000 -     0x7fff86df0fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86e0e000 -     0x7fff86e62fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86e92000 -     0x7fff86eccfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff86ecd000 -     0x7fff86ed2fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff871b7000 -     0x7fff87310fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87311000 -     0x7fff8731cff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8731d000 -     0x7fff87334fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff87335000 -     0x7fff8738dfff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8738e000 -     0x7fff87518fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87519000 -     0x7fff87524ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <F260D4A7-C727-3FB6-8525-50E279BF9BAF> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87525000 -     0x7fff87604ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87772000 -     0x7fff87839ff7  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <7E2E109C-A438-3EDC-A6EB-3EF634A1B28B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8783a000 -     0x7fff8787aff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8787b000 -     0x7fff87886ff7  com.apple.aps.framework (2.1 - 2.1) <D0C49BA6-A5FB-3DBD-AFCC-7B6F056A57A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87887000 -     0x7fff87889fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87a89000 -     0x7fff87a9bff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff87b13000 -     0x7fff87b70ff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff87b86000 -     0x7fff87bc8ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87bc9000 -     0x7fff87bcbfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87bee000 -     0x7fff87e63ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87e8e000 -     0x7fff87ed5ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87ed6000 -     0x7fff87ee5ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff87ee6000 -     0x7fff87f4ffff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87f8f000 -     0x7fff87fabff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87fac000 -     0x7fff87fbafff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87fe7000 -     0x7fff8808cfff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8808d000 -     0x7fff88187ff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff88188000 -     0x7fff8818afff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff8818b000 -     0x7fff8838dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8838e000 -     0x7fff88390ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff88391000 -     0x7fff883d0fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff883d1000 -     0x7fff883d7ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff883d8000 -     0x7fff88b6cfef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff88b6d000 -     0x7fff88b72fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88b77000 -     0x7fff88ea3ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88ef1000 -     0x7fff88f1cff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff88f1d000 -     0x7fff88f2fff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff88f30000 -     0x7fff89252fe7  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff89253000 -     0x7fff89680fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89794000 -     0x7fff897bafff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff897bb000 -     0x7fff897bbfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff897bc000 -     0x7fff89b65fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff89b66000 -     0x7fff89ba1fff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89ba2000 -     0x7fff89ba6fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89ba7000 -     0x7fff89baefff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff89baf000 -     0x7fff89bb5fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89bb6000 -     0x7fff89ccffff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff89cd8000 -     0x7fff89d17ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a735000 -     0x7fff8a83cfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8a83d000 -     0x7fff8a870ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a92b000 -     0x7fff8a92cfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8a95e000 -     0x7fff8a9afff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a9b0000 -     0x7fff8aa26fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8aa27000 -     0x7fff8aa87fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8aa88000 -     0x7fff8aab5ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8aab6000 -     0x7fff8aafaff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8aafb000 -     0x7fff8abfbfff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8abfc000 -     0x7fff8abfdff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8abfe000 -     0x7fff8ac1dfff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8ac1e000 -     0x7fff8ac57fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8ac58000 -     0x7fff8ac63ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8ac64000 -     0x7fff8ac72fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8b105000 -     0x7fff8b153fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8b154000 -     0x7fff8b1aeff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b1af000 -     0x7fff8b1c3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b1c4000 -     0x7fff8b5e1ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8b60b000 -     0x7fff8b690ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b6d2000 -     0x7fff8b72bfff  MetadataLib.dylib (3.14.0 - compatibility 2.2.1) <DCA76A5E-14B4-3260-8C00-7C4EE675E049> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8b72c000 -     0x7fff8b73cff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b73d000 -     0x7fff8b741ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8b7b6000 -     0x7fff8b7b9ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8b7ba000 -     0x7fff8b7c4ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff8b7c5000 -     0x7fff8c3cbff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c3cc000 -     0x7fff8c3f0fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c3f1000 -     0x7fff8cd8ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8cd8f000 -     0x7fff8cde1ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8cde2000 -     0x7fff8ce58fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff8ce59000 -     0x7fff8ceccfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8cecd000 -     0x7fff8d003fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d004000 -     0x7fff8d017ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8d018000 -     0x7fff8d035fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8d036000 -     0x7fff8d2a9fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8d2aa000 -     0x7fff8d2b5fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8d2fc000 -     0x7fff8d3afff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8d3b0000 -     0x7fff8d3bbff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8d42d000 -     0x7fff8d435fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d436000 -     0x7fff8d461fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8d462000 -     0x7fff8d470ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff8d471000 -     0x7fff8d474fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8d510000 -     0x7fff8d5aaff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d5c4000 -     0x7fff8d665ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d769000 -     0x7fff8d908ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d935000 -     0x7fff8d962fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8d96f000 -     0x7fff8da74fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8da75000 -     0x7fff8db17fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8db18000 -     0x7fff8db1bfff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8db51000 -     0x7fff8dc5dfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8dc5e000 -     0x7fff8dc9ffff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8dca0000 -     0x7fff8dca1ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8dca2000 -     0x7fff8df10ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8df9b000 -     0x7fff8e09dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8e09e000 -     0x7fff8e1abfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8e1d4000 -     0x7fff8e21afff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8e29e000 -     0x7fff8e2a3fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        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: 4954
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.3M resident=85.8M(44%) swapped_out_or_unallocated=108.6M(56%)
    Writable regions: Total=992.5M written=350.3M(35%) resident=830.7M(84%) swapped_out=0K(0%) unallocated=161.9M(16%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                 249.7M
    CG image                           3056K
    CG raster data                     1472K
    CG shared images                   4624K
    CoreAnimation                      4104K
    CoreGraphics                         16K
    CoreImage 8K
    CoreServices                       1324K
    IOKit                             333.9M
    IOKit (reserved)                   26.0M        reserved VM address space (unallocated)
    MALLOC                            380.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       88K
    OpenCL                               44K
    OpenGL GLSL                        1372K
    OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.7M
    __CI_BITMAP                          80K
    __DATA                             17.4M
    __IMAGE                             528K
    __LINKEDIT                         48.6M
    __RC_CAMERAS                        248K
    __TEXT                            145.8M
    __UNICODE                           544K
    mapped file                       210.2M
    shared memory                       9.8M
    ===========                      =======
    TOTAL                               1.5G
    TOTAL, minus reserved VM space      1.5G
    Model: iMac12,1, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.7 GHz, 4 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.64.8-P2P
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Generic USB Hub, 0x058f  (Alcor Micro, Corp.), 0x9254, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Computer goes on standby and crashes all open windows.

    When my computer goes on standby, all open windows (word, chrome, excel) crash and reopen. Word appears with a solid orange or dark yellow. How can I stop this from happening?
    It might happen most often when the screen is being projected during the work day.
    This problem has only been occuring since I updated to Mavericks a few weeks ago.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Quit all open dock applications at once?

    Is there a way to quit all open dock applications at once? I find it time-consuming to go in and quit applications I have used in the dock one at a time.
    May be I don't understand why they even stay open after I quit what I was doing with them? Is it possible to set it up that way? I find it is not very Mac-like
    to have to go in and quit 5 or 6 items in the dock one at a time. Can you please shed some light on this for me? Thank you for your time and patience.

    No, but there is an alternative.
    Press command+tab to show the application switcher. While keeping the command key held down, you can press q on a selected application to quit it. The only one you can't quit is the Finder (as this is the application that shows you your Desktop).

  • Cannot access to any site with ssl connection and fail to open safari and keychain, unless restart computer and login in with Guest account.

    when Update to 10.7.2 ,I cannot access to any site with ssl connection and fail to open safari and keychain, unless restart computer and login in with Guest account.
    OS:10.7.2
    Macbook Pro 2010-mid 13inch

    I also have the same problem, however if I use Firefox or Opera sites with ssl connection work fine. Still, I can't use Google Chrome (ssl), Safari (ssl), the Mac app store (generally), or the iTunes store (generally). Both the iTunes store, Safari and the app store won't respond, and Chrome displays this error: (net::ERR_TIMED_OUT). The problem persists regardless of what network I'm using. Also, when trying to access the keychain or iCloud, the process will not start (will hang). I didn't have these problems at all before updating to 10.7.2.
    Sometimes rebooting helps, and sometimes not. If the problem disappears by rebooting, then it only lasts a few minutes before it reappears. It is very frustrating, especially since there doesn't seem to be any obvious or consistent way of which to fix it.
    I'm also using a Macbook Pro 13-inch mid 2010.

  • Howto close all open windows?

    Hi,
    I am developing some kind of library, and I would like to close all open windows, dialogs, tooltips in the error case.
    The problem is I don't have control about the windows currently open, many are instantiated by plug-ins.
    Is there a way to get a list of all windows? This way I could go throw the list and simply call dispose() on all.
    Thank you in advance, Clemens

    One possible approach could be trying to track AWT event. I would try to get notified as each Component is added and maintained in a hashtable.
    getToolkit().addAWTEventListener (aWTEventListener, AWTEvent.COMPONENT_EVENT_MASK | AWTEvent.CONTAINER_EVENT_MASK);
    AWTEventListener  aWTEventListener = new AWTEventListener()
            public void eventDispatched (AWTEvent Event)
            // find the component from event source and record it.
    };

  • Close all open windows

    Is there any way to close all open windows at once? I cannot find any way to do so. Any keyboard shortcut?

    Thanks, Tom.
    Your response led me to the answer I was looking for. However, I found it worked better to press command and option , then click the red close button on the top line of the top window. This closed all open windows within the application of the open window. I had to do the same thing for each application. In my test case, I opened about 10 word processor windows and 10 email windows, all at the same time. I had to do the command-option - click red button twice, once for my email application, and once for the word processor application. It took me about 2 seconds to close all of the open windows.
    Thanks a lot for your instructions.

  • I want to reset Firefox, and the message is that something is preventing the reset. I have closed all open windows and I still get the "Oops" message,

    I have uninstalled and reinstalled Firefox because I was receiving unwanted adware and was being directed to untrusted sites. Now I want to reset Firefox because I want to change the home page and toolbars, and something is preventing the reset. I have closed all open windows repeatedly, but the problem continues.
    =====Moved from Firefox OS product to Firefox for Desktop product category by Moderator. -feer56=====

    Check the programs that are on your computer
    '''Windows:''' Start > Control Panel > Uninstall Programs.
    '''Mac:''' Open the "Applications" folder
    '''Linux:'''
    * [http://www.freesoftwaremagazine.com/articles/see_all_your_installed_applications_ubuntu_unity Ubuntu Unity]''' {web link}
    * Xfce: Applications Menu category sections
    * options depends on the package manager and the desktop environment
    Go thru the list. If you find something that you don't
    know what it is, use a web search.
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware Troubleshoot Firefox Issues Caused By Malware]''''' {web link}

Maybe you are looking for

  • How can i stop firefox from asking "Choose A Network Connection" when i'm offline and using my saved pages

    How can i stop Firefox from asking "Choose A Network Connection" when i'm offline and using my saved pages i use Firefox 22.0 on windows 7 it's about one week that it ask for "Network Connections" when i'm offline and disconnected from the internet e

  • Solaris 8 IA installation problem.

    Hello ! I've the following computer : Athlon 1Ghz (200MHz fsb) 1GB RAM, Ati Rage 128 PRO (16MB ram) AGP Tekram DC390U2W (sym 53C895 chip) SCSI card IBM 4.5 Gb FW scsi disk (will be used for install) On this computer I boot the Solaris 8 IA install CD

  • Importing prices failt with DTW

    Hi experts, I have a problem when importing item prices with DTW. I have 2 prices, salesprice with pricelistnum 1, i use 0 for import, and purchaseprice with pricelistnum 10, i use 9 for import. Strange is that te salesprice is importing oke, but in

  • MSA-Activity: Invalid Funtion of person responsible

    Hello, We are on CRM 4.0 and MSA 4.0/SP06 release. Problem Desc: 1) Created new activity in MSA (Activity-->Details tileset) and saved. 2) Person responsible tile will be defaulted to logged in employee with function as "Sales rep" 3) Now added one m

  • Is Fireworks buggy or is this just the way it usually is?...

    Im new to Fireworks CS4 so I dont know what to expect. But: Is there supposed to be nothing in the behavior pallette? It's blank. For the 25 years I have been using every other Adobe app there is, usually the palettes I want to use have something ins