Script to find a user and restart two services

I am looking to make a script to first find a user that is connected to a server (list) the to stop Spooler, then stop cpsvc. Once the services are stopped, the script would then clear out the folder on "C:\Windows\System32\spool\PRINTERS"
Directory. Once that was done, the script would then start Spooler and cpsvc. At the end it would echo the services were restarted and to try to print now.
Lee Mossolle

A user cannot stop and start services and cannot delete files in the system folders.
There is no need to look for the services in that way  You will have to do this remotely.  Just find the services if they exisit and stop them then remotely delete the contents of the spooler folder.
PowerShell remoting would be the easies way to do this.
strComputer = WScript.Arguments(0)
WScript.Echo "Running Against Remote Computer Named: " & strComputer
set objWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name = 'cpsvc' OR Name = 'spooler'")
for Each objService in colListOfServices
objService.StopService()
objService.StartService()
Next
Until you understand how yor code will work avoid over coding.  It just adds confusion and errors.   The above is functionally equivalent to what you posted. 
I suspect there may be a dependency between cpsvc and spooler.  In that casr yo can only kill them in the correct order.  This will require to loops of a more sophisticated scripting approach.
We can also use the 'Forse' argument and retriev the master service (spooler) and force it to stop all dependent services.  We would then retrive all services and start them. We can also just retrieve the dependency list and use that.
The code is simple and will allow the dependencies to be added if needed.
You can also use PowerShell which is much easier.
Get-Service spooler -computer remotepc | Stop-Service -force
Get-Service spooler -computer remotepc | Start-Service
We can wrap this in a function for convenience.
¯\_(ツ)_/¯

Similar Messages

  • Script to find out table and index candidates to keep in the buffer pool

    I am looking for a script to find out tables and indexes to keep in the buffer pool.
    Could you help me on this ?
    thanks...
    Markus

    this is more of a open question. As you know ur data well. We do not know whats ur data. cachin tables in buffer pool is okay, but it might age out after not being used...instead you can use the KEEP POOL...to cache small tables/popular tables into the keep pool...as keep pool guarantees full caching .....
    here are some links on keep pool cacheing
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/memory.htm#sthref410
    http://www.dba-oracle.com/oracle_tips_cache_small_fts.htm
    http://www.dba-oracle.com/t_script_automate_keep_pool_tables_indexes.htm
    http://www.dba-oracle.com/oracle_news/news_caching_keep_pool_large_objects_clob_blob.htm
    Edited by: user630084 on Apr 8, 2009 5:48 AM

  • Script that enables mail users and kicks out two csv files

    I am working on a script that will mainly be used as a scheduled task to enabled mailuser by calling the update-recipient command. 
    But before it calls that command it will get for various issues that can cause errors.
    Missing PrimarySMTP
    Display name having a space at front or back.
    The external email address being blank.
    I have IF statements setup to check for those and then call a function that will save into an array the issue for that user. 
    Here is the script
    <#
    .SYNOPSIS
    Enable-MailUsers Synced Mail Users in the Exchange environment
    THIS CODE IS MADE AVAILABLE AS IS, WITHOUT WARRANTY OF ANY KIND. THE ENTIRE
    RISK OF THE USE OR THE RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE USER.
    Version .9, 30 June 2014
    .DESCRIPTION
    This script mail-enables Synced Mail Users and creates a CSV report of mail users that were enabled.
    The following is shown:
    * Report Generation Time
    .PARAMETER SendMail
    Send Mail after completion. Set to $True to enable. If enabled, -MailFrom, -MailTo, -MailServer are mandatory
    .PARAMETER MailFrom
    Email address to send from. Passed directly to Send-MailMessage as -From
    .PARAMETER MailTo
    Email address to send to. Passed directly to Send-MailMessage as -To
    .PARAMETER MailServer
    SMTP Mail server to attempt to send through. Passed directly to Send-MailMessage as -SmtpServer
    .PARAMETER ScheduleAs
    Attempt to schedule the command just executed for 10PM nightly. Specify the username here, schtasks (under the hood) will ask for a password later.
    .EXAMPLE
    Generate the HTML report
    .\Enable-MailUsers.ps1 -SendMail -MailFrom [email protected] -MailTo [email protected] -MailServer ex1.contoso.com -ScheduleAs SvcAccount
    #>
    param(
    [parameter(Position=0,Mandatory=$false,ValueFromPipeline=$false,HelpMessage='Send Mail ($True/$False)')][bool]$SendMail=$false,
    [parameter(Position=1,Mandatory=$false,ValueFromPipeline=$false,HelpMessage='Mail From')][string]$MailFrom,
    [parameter(Position=2,Mandatory=$false,ValueFromPipeline=$false,HelpMessage='Mail To')]$MailTo,
    [parameter(Position=3,Mandatory=$false,ValueFromPipeline=$false,HelpMessage='Mail Server')][string]$MailServer,
    [parameter(Position=4,Mandatory=$false,ValueFromPipeline=$false,HelpMessage='Schedule as user')][string]$ScheduleAs
    # Sub Function to neatly update progress
    function _UpProg1
    param($PercentComplete,$Status,$Stage)
    $TotalStages=5
    Write-Progress -id 1 -activity "Mail enabled Objects" -status $Status -percentComplete (($PercentComplete/$TotalStages)+(1/$TotalStages*$Stage*100))
    #Sub Function create ErrObject output
    function _ErrObject{
    Param($name,
    $errStatus
    If(!$err){
    Write-Host "error detected"
    $script:err = $True
    $ErrObject = New-Object -TypeName PSObject
    $Errobject | Add-Member -Name 'Name' -MemberType Noteproperty -Value $Name
    $Errobject | Add-Member -Name 'Comment' -MemberType Noteproperty -Value $errStatus
    $script:ErrOutput += $ErrObject
    # 1. Initial Startup
    # 1.0 Check Powershell Version
    if ((Get-Host).Version.Major -eq 1)
    throw "Powershell Version 1 not supported";
    # 1.1 Check Exchange Management Shell, attempt to load
    if (!(Get-Command Get-ExchangeServer -ErrorAction SilentlyContinue))
    if (Test-Path "D:\Exchsrvr\bin\RemoteExchange.ps1")
    . 'D:\Exchsrvr\bin\RemoteExchange.ps1'
    Connect-ExchangeServer -auto
    } elseif (Test-Path "D:\Exchsrvr\bin\Exchange.ps1") {
    Add-PSSnapIn Microsoft.Exchange.Management.PowerShell.Admin
    .'D:\Exchsrvr\bin\Exchange.ps1'
    } else {
    throw "Exchange Management Shell cannot be loaded"
    # 1.2 Check if -SendMail parameter set and if so check -MailFrom, -MailTo and -MailServer are set
    if ($SendMail)
    if (!$MailFrom -or !$MailTo -or !$MailServer)
    throw "If -SendMail specified, you must also specify -MailFrom, -MailTo and -MailServer"
    # 1.3 Check Exchange Management Shell Version
    if ((Get-PSSnapin -Name Microsoft.Exchange.Management.PowerShell.Admin -ErrorAction SilentlyContinue))
    $E2010 = $false;
    if (Get-ExchangeServer | Where {$_.AdminDisplayVersion.Major -gt 14})
    Write-Warning "Exchange 2010 or higher detected. You'll get better results if you run this script from an Exchange 2010/2013 management shell"
    }else{
    $E2010 = $true
    $localserver = get-exchangeserver $Env:computername
    $localversion = $localserver.admindisplayversion.major
    if ($localversion -eq 15) { $E2013 = $true }
    #Get date
    $filedate = get-date -uformat "%m-%d-%Y"
    $filedate = $filedate.ToString().Replace("0", "")
    #Get the valid users that are not mail-enabled
    _UpProg1 1 "Getting User List" 1
    #$Users = Get-mailuser -ResultSize unlimited -OrganizationalUnit "R0018.COLLABORATION.ECS.HP.COM/Accounts/AbbVienet/Users" | ?{$_.legacyexchangeDN -eq ""}
    $i = 0
    $output = @()
    $errOutput = @()
    $err = $False
    #2 Process users
    ForEach ($User in $Users){
    $i++
    _UpProg1 ($i/$Users.Count*100) "Updating Recipients" 2
    If ($user.ExternalEmailAddress -eq $null){
    _ErrObject $user.Name, "Missing External Email Address"
    ElseIf($user.DisplayName -NotLike "* "){
    _ErrObject $user.Name, "DisplayName contains a trailing space"
    ElseIf($user.DisplayName -NotLike "_*"){
    _ErrObject $user.Name, "DisplayName contains a Leading space"
    ElseIf($user.PrimarySmtpAddress -eq $null){
    _ErrObject $user.Name, "Missing Primary SMTP address"
    Else{
    #Disable EmailAddressPolicy on these users
    Set-Mailuser $User.Name -EmailAddressPolicyEnabled $false
    #pass to Update-recipient
    Update-Recipient $User.Name
    $LEDN = Get-MailUser $User.Name | Select {$_.LegacyExchangeDN}
    If ($LEDN -ne ""){
    $object = New-Object -TypeName PSObject
    $X500 = "x500:" + $LEDN.'$_.LegacyExchangeDN'
    $object | Add-Member -Name 'Name' -MemberType Noteproperty -Value $User.Name
    $object | Add-Member -Name 'x500' -MemberType Noteproperty -Value $X500
    $output += $object
    #Creating CSVFile Output
    _UpProg1 99 "Outputting CSV file 3" 3
    $CSVFile = "c:\scripts\Mail-enable\Mailenabled_$((Get-Date).ToString('MM-dd-yyyy_hh-mm-ss')).csv"
    If($err){
    $ErrCSVFile = "c:\scripts\Mail-enable\ProblemUsers_$((Get-Date).ToString('MM-dd-yyyy_hh-mm-ss')).csv"
    $errOutput | Select-Object Name, Comment | ConvertTo-CSV -NoTypeInformation > $ErrCSVFIle
    $Output | ConvertTo-Csv -NoTypeInformation > $CSVFile
    if ($SendMail)
    _UpProg1 95 "Sending mail message.." 4
    If($err){
    Send-MailMessage -Attachments $CSVFile,$ErrCSVFile -To $MailTo -From $MailFrom -Subject "Enable Mail Users Script" -BodyAsHtml $Output -SmtpServer $MailServer
    Else{
    Send-MailMessage -Attachments $CSVFile -To $MailTo -From $MailFrom -Subject "Enable Mail Users Script" -BodyAsHtml $Output -SmtpServer $MailServer
    if ($ScheduleAs)
    _UpProg1 99 "Attempting to Schedule Task.." 4
    $dir=(split-path -parent $myinvocation.mycommand.definition)
    $params=""
    if ($SendMail)
    $params+=' -SendMail:$true'
    $params+=" -MailFrom:$MailFrom -MailTo:$MailTo -MailServer:$MailServer"
    $task = "powershell -c \""pushd $dir; $($myinvocation.mycommand.definition) $params\"""
    Write-Output "Attempting to schedule task as $($ScheduleAs)..."
    Write-Output "Task to schedule: $($task)"
    schtasks /Create /RU $ScheduleAs /RP /SC DAILY /ST 22:00 /TN "Enable Mail Users" /TR $task
    The Problem is that when I look at the $errOutput I see things but when I pipe the $erroutput to convertTo-CSV I get this within the CSV file. I think its because I an calling a function to do the updating. But not sure.
    Jeff C

    Hi Jeff,
    Any updates? If you have any other questions, please feel free to let me know.
    A little clarification to the script:
    function _ErrObject{
    Param($name,
    $errStatus
    If(!$err){
    Write-Host "error detected"
    $script:err = $True
    $ErrObject = New-Object -TypeName PSObject
    $Errobject | Add-Member -Name 'Name' -MemberType Noteproperty -Value $Name
    $Errobject | Add-Member -Name 'Comment' -MemberType Noteproperty -Value $errStatus
    $script:ErrOutput += $ErrObject
    $errOutput = @()
    _ErrObject Name, "Missing External Email Address"
    $errOutput
    _ErrObject Name "Missing External Email Address"
    $errOutput
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Script to find duplicate index and how can we tell if an index is REALLY a duplicate?

    Does any one have script to find duplicate index? and how can we tell if an index is REALLY a duplicate?
    Rahul

    One more written by Itzik Ben-Gan
    The first query finds exact matches. The indexes must have 
    the same key columns in the same order, and the same included columns but in any order. 
    These indexes are sure targets for elimination. The only caution would be to check for index hints. 
    -- exact duplicates
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols,
    (select case keyno when 0 then colid else NULL end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by colid
    for xml path('')) as inc
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'exactduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and c1.cols = c2.cols
    and c1.inc = c2.inc;
    The second variation of this query finds partial, or duplicate, indexes 
    that share leading key columns, e.g. Ix1(col1, col2, col3) and Ix2(col1, col2) 
    would be considered duplicate indexes. This query only examines key columns and does not consider included columns. 
    These types of indexes are probable dead indexes walking. 
    -- Overlapping indxes
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'partialduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and (c1.cols like c2.cols + '%' 
    or c2.cols like c1.cols + '%') ;
    Be careful when dropping a partial duplicate index if the two indexes differ greatly in width. 
    For example, if Ix1 is a very wide index with 12 columns, and Ix2 is a narrow two-column index 
    that shares the first two columns, you may want to leave Ix2 as a faster, tighter, narrower index.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Script to list the users and their privileges in a database

    Hi Team,
    Can someone provide me a script that list all the users and their privileges in a database?
    DB version:11.2.0.2
    OS:AIX

    Osama_mustafa wrote:
    Why you create your own script
    SELECT * FROM USER_SYS_PRIVS;
    SELECT * FROM USER_TAB_PRIVS;
    SELECT * FROM USER_ROLE_PRIVS;
    That won't tell him what privileges a user has via a role. It will only tell him what privilges were granted directly, and what roles were granted directly. But those roles have privileges, and may have other roles, which have still more roles and privs, etc. It's a recursive issue and a simple select from user__privs won't get it.
    Pete Finnigan has a good script for reporting the entire picture. I leave it as an exercise for the student to use google to find it. I have already given all the information needed to complete that exercise.

  • Script to find active users with responsibility

    Dear all,
    r12.0.4 on solaris 10
    I need a script to find out the users with all the responsibilities attached to the user ..can anyone share the query if u have ?
    Kai

    Kai,
    Please see (Note: 8576725 - Tom's Handy SQL for the Oracle Applications), 2.3. Users and Responsibilities.
    You can also submit the "Active Users" concurrent program.
    There are many scripts available in the forum, you can also use them.
    Query Responsibilities
    Re: Query Responsibilities
    Regards,
    Hussein

  • Finder keeps crashing (and restarting)

    I recently installed StuffIt 11 and Toast 8 around pretty much the same time. Ever since, I find that Finder keeps crashing whenever I am trying to do something using the right click context menu (i.e. move to trash or open with etc)
    I had a look at the console.log and found:
    Mac OS X Version 10.4.8 (Build 8L2127)
    2007-01-11 18:23:48 +0000
    2007-01-11 18:23:50.464 SystemUIServer[200] lang is:en
    Jan 11 18:57:45 Mac crashdump[230]: Finder crashed
    Jan 11 18:57:50 Mac crashdump[230]: crash report written to: /Users/Jason/Library/Logs/CrashReporter/Finder.crash.log
    Jan 11 19:00:33 Mac crashdump[234]: Finder crashed
    Jan 11 19:00:35 Mac crashdump[234]: crash report written to: /Users/Jason/Library/Logs/CrashReporter/Finder.crash.log
    2007-01-11 19:02:21.357 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.418 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.420 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.421 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.422 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.423 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.425 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.426 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.427 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.428 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.429 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.430 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.432 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.433 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.434 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.435 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.436 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.437 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.439 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.440 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.441 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.442 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.443 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.445 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.446 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    2007-01-11 19:02:21.447 SyndicationAgent[239] WARNING: BestCalendarDateFromString - can't interpret: 'Thu 11 Jan 2007 08:23:54 -800'
    Warning: unrecognized command line flag -psn04718593
    I then went to system.log and found the following towards the end:
    Jan 11 18:20:46 Mac configd[36]: setting hostname to "Mac.local"
    Jan 11 18:20:46 Mac diskarbitrationd[39]: disk0s3 ntfs 00000000-0000-0000-0000-000000000000 Untitled /Volumes/Untitled
    Jan 11 18:20:49 Mac kernel[0]: AppleYukon - en0 link active, 100-Mbit, full duplex, flow control disabled
    Jan 11 18:20:49 Mac lookupd[67]: lookupd (version 369.6) starting - Thu Jan 11 18:20:49 2007
    Jan 11 18:20:49 Mac /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Jan 11 18:20:49 Mac loginwindow[69]: Login Window Started Security Agent
    Jan 11 18:20:52 Mac configd[36]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jan 11 18:20:52 Mac configd[36]: posting notification com.apple.system.config.network_change
    Jan 11 18:20:52 Mac lookupd[79]: lookupd (version 369.6) starting - Thu Jan 11 18:20:52 2007
    Jan 11 18:20:53 Mac kernel[0]: in_delmulti - ignorning invalid inm (0x35d654)
    Jan 11 18:20:53 Mac SystemStarter[46]: lstat("/Library/StartupItems/NortonAutoProtect.kextcache/NortonAutoProtect.kext cache"): Not a directory
    Jan 11 18:20:53 Mac configd[36]: posting notification com.apple.system.config.network_change
    Jan 11 18:20:53 Mac lookupd[92]: lookupd (version 369.6) starting - Thu Jan 11 18:20:53 2007
    Jan 11 18:20:55 Mac mDNSResponder: Adding browse domain local.
    Jan 11 18:21:00 Mac configd[36]: setting hostname to "mac.lan"
    Jan 11 18:21:25 Mac configd[36]: target=enable-network: disabled
    Jan 11 18:23:56 Mac kernel[0]: (65: coreservicesd)tfp: failed on 0:
    Jan 11 18:57:45 Mac crashdump[230]: Finder crashed
    Jan 11 18:57:50 Mac crashdump[230]: crash report written to: /Users/Jason/Library/Logs/CrashReporter/Finder.crash.log
    Jan 11 19:00:33 Mac crashdump[234]: Finder crashed
    Jan 11 19:00:35 Mac crashdump[234]: crash report written to: /Users/Jason/Library/Logs/CrashReporter/Finder.crash.log
    Jan 11 19:06:47 Mac kernel[0]: (65: coreservicesd)tfp: failed on 0:
    I then went to CrashReporter - Finder.crash.log and found the following:
    Host Name: Mac
    Date/Time: 2007-01-11 19:00:32.301 +0000
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [57]
    Version: 10.4.6 (10.4.6)
    Build Version: 2
    Project Name: Finder_FE
    Source Version: 5292800
    PID: 231
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x7470450c
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a54387 objc_msgSend + 23
    1 com.apple.HIToolbox 0x92ea7579 InsertMenuItemTextWithCFString + 67
    2 com.apple.HIToolbox 0x92eb142d TPluginMenuItemHandler::AddCommandsToMenu(TPluginCommandList&, OpaqueMenuRef*, unsigned short, TMenuAllocator&) + 375
    3 com.apple.HIToolbox 0x92eb1390 TPluginMenuItemHandler::AddCommandsToMenu(TPluginCommandList&, OpaqueMenuRef*, unsigned short, TMenuAllocator&) + 218
    4 com.apple.HIToolbox 0x92eb120c TPluginMenuItemHandler::TPluginMenuItemHandler[in-charge](TPluginCommandList&, OpaqueMenuRef*, TMenuAllocator&) + 158
    5 com.apple.HIToolbox 0x92eb0235 ContextualMenuInsertItems(MenuData*, unsigned short, AEDesc const*, ContextualMenuHelp const*, unsigned long*, OpaqueContextualMenuItemsRef**) + 545
    6 com.apple.HIToolbox 0x92eafcab ContextualMenuSelect + 425
    7 com.apple.finder 0x0008ee18 0x1000 + 581144
    8 com.apple.finder 0x000950c6 0x1000 + 606406
    9 com.apple.finder 0x001364bb 0x1000 + 1266875
    10 com.apple.finder 0x0000d687 0x1000 + 50823
    11 com.apple.finder 0x0000ce7e 0x1000 + 48766
    12 com.apple.finder 0x0000cde6 0x1000 + 48614
    13 com.apple.finder 0x0000cda8 0x1000 + 48552
    14 com.apple.HIToolbox 0x92dcc7eb DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    15 com.apple.HIToolbox 0x92dcbe90 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    16 com.apple.HIToolbox 0x92dd30f0 SendEventToEventTarget + 56
    17 com.apple.HIToolbox 0x92e6a8e7 HIView::Click(OpaqueEventRef*) + 329
    18 com.apple.HIToolbox 0x92e6a723 HandleClickAsHIView + 145
    19 com.apple.HIToolbox 0x92e6a0a9 HandleWindowClick + 507
    20 com.apple.HIToolbox 0x92e69b5f HandleMouseEvent + 872
    21 com.apple.HIToolbox 0x92e12364 StandardWindowEventHandler + 86
    22 com.apple.HIToolbox 0x92dcc7eb DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    23 com.apple.HIToolbox 0x92dcbe90 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    24 com.apple.HIToolbox 0x92e0ecdc CallNextEventHandler + 62
    25 com.apple.finder 0x0001b11d 0x1000 + 106781
    26 com.apple.finder 0x0011a45c 0x1000 + 1152092
    27 com.apple.finder 0x0007ca88 0x1000 + 506504
    28 com.apple.finder 0x0001ac22 0x1000 + 105506
    29 com.apple.finder 0x0003655d 0x1000 + 218461
    30 com.apple.finder 0x0000ce7e 0x1000 + 48766
    31 com.apple.finder 0x0000cde6 0x1000 + 48614
    32 com.apple.finder 0x0000cda8 0x1000 + 48552
    33 com.apple.HIToolbox 0x92dcc7eb DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1093
    34 com.apple.HIToolbox 0x92dcbe90 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    35 com.apple.HIToolbox 0x92dd30f0 SendEventToEventTarget + 56
    36 com.apple.HIToolbox 0x92dd3589 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1169
    37 com.apple.HIToolbox 0x92dccba2 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2044
    38 com.apple.HIToolbox 0x92dcbe90 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 304
    39 com.apple.HIToolbox 0x92dd30f0 SendEventToEventTarget + 56
    40 com.apple.HIToolbox 0x92e16d8f ToolboxEventDispatcher + 81
    41 com.apple.HIToolbox 0x92e15783 RunApplicationEventLoop + 165
    42 com.apple.finder 0x00007dfd 0x1000 + 28157
    43 com.apple.finder 0x00004cf5 0x1000 + 15605
    44 com.apple.finder 0x00051ace 0x1000 + 330446
    45 com.apple.finder 0x000519e9 0x1000 + 330217
    Thread 1:
    0 libSystem.B.dylib 0x900268bc kevent + 12
    1 ...ple.CoreServices.CarbonCore 0x90cb3f84 PrivateMPEntryPoint + 51
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90cb4129 MPWaitOnQueue + 198
    2 com.apple.DesktopServices 0x9251b943 TNodeSyncTask::SyncTaskProc(void*) + 143
    3 ...ple.CoreServices.CarbonCore 0x90cb3f84 PrivateMPEntryPoint + 51
    4 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x7470450c ebx: 0x9080e4e5 ecx: 0x90a61868 edx: 0x00000000
    edi: 0x74704514 esi: 0x0060afb0 ebp: 0xbfffe4b8 esp: 0xbfffe464
    ss: 0x0000001f efl: 0x00010202 eip: 0x90a54387 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x2e8fff com.apple.finder 10.4.6 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x5c4000 - 0x5c5fff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15247000 - 0x15249fff com.apple.AutomatorCMM 1.0.1 (68) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1524d000 - 0x15251fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1525b000 - 0x1525bfff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x1525f000 - 0x15260fff com.symantec.NAVCMPlugIn 10.1 (003) /Library/Contextual Menu Items/NAVCMPlugIn.plugin/Contents/MacOS/NAVCMPlugIn
    0x15f3d000 - 0x15f40fff com.apple.LiveType.component 2.1.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x15f45000 - 0x15faafff com.apple.LiveType.framework 2.1.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x15fd2000 - 0x16043fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x16051000 - 0x160a1fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x16405000 - 0x16428fff com.stuffit.StuffItCM 11.0.2 /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x16442000 - 0x16489fff com.stuffit.sdk 11.0.2 /Library/Frameworks/StuffIt.framework/Versions/B/StuffIt
    0x164e7000 - 0x16581fff com.stuffit.stuffitcore 11.0.2 /Library/Frameworks/StuffItCore.framework/Versions/A/StuffItCore
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x901fffff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90226000 - 0x902fcfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031c000 - 0x90770fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90807000 - 0x908cffff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090d000 - 0x9090dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9090f000 - 0x90a02fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a52000 - 0x90ad1fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afa000 - 0x90b5efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcd000 - 0x90bd4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd9000 - 0x90c4cfff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c61000 - 0x90c73fff libauto.dylib /usr/lib/libauto.dylib
    0x90c79000 - 0x90f1ffff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f62000 - 0x90fcafff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91002000 - 0x91040fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91053000 - 0x91063fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9106e000 - 0x910ecfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91121000 - 0x9113ffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9114b000 - 0x91159fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9115c000 - 0x912fbfff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f9000 - 0x91401fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91408000 - 0x9142efff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91440000 - 0x91447fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9144b000 - 0x914c4fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91512000 - 0x91512fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91514000 - 0x9153ffff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91552000 - 0x91626fff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91661000 - 0x916defff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170b000 - 0x917b4fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917da000 - 0x91825fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91844000 - 0x9185afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91866000 - 0x91880fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188a000 - 0x918c7fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918db000 - 0x918e7fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ee000 - 0x91929fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193b000 - 0x919edfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a33000 - 0x91a49fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a4e000 - 0x91a6cfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a71000 - 0x91acffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae1000 - 0x91ae5fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ae7000 - 0x91b64fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b68000 - 0x91ba5fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bab000 - 0x91bc5fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bca000 - 0x91bccfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bce000 - 0x91bcefff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bd0000 - 0x91c5efff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c65000 - 0x91c65fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c67000 - 0x91cc0fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cc9000 - 0x91cedfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf5000 - 0x920fefff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92138000 - 0x924ecfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92519000 - 0x92597fff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x925d8000 - 0x92808fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92914000 - 0x929f2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92a0f000 - 0x92afcfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0c000 - 0x92b23fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b2e000 - 0x92b86fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92b9a000 - 0x92b9afff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92b9c000 - 0x92bacfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bba000 - 0x92bc2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bc8000 - 0x92bcdfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bd3000 - 0x92c64fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c78000 - 0x92c7bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c7e000 - 0x92c9bfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cab000 - 0x92cb1fff com.apple.print.framework.Print 5.1 (192.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cb7000 - 0x92d1afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d3e000 - 0x92d7ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92da6000 - 0x92db3fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dba000 - 0x92dbffff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dc4000 - 0x930b6fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931bb000 - 0x931c6fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93236000 - 0x93236fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93238000 - 0x938eefff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c6f000 - 0x93ce9fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d22000 - 0x93de3fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e23000 - 0x93e23fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e25000 - 0x93ff7fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94048000 - 0x94089fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94091000 - 0x940cbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94107000 - 0x9414ffff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94251000 - 0x94260fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94267000 - 0x94272fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942be000 - 0x942d8fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942de000 - 0x94597fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x948c4000 - 0x948c9fff com.apple.filesync 3.0.4 (99.8) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x95535000 - 0x95539fff com.apple.URLMount 2.1.3 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x96443000 - 0x96443fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96aa5000 - 0x96aaafff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97d8d000 - 0x98877fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    I thought it was something to do with the StuffIt MagicMenu but after taking that out of my 'login items' and therefore stopping it from launching, the problem continued.
    I now think it may be something to do with the StuffIt contextual menu - any ideas greatly appreciated!
    I would really appreciate help with this as it is VERY annoying, btw I am a newbie to Macs so please be gentle..
    Thanks very much in advance...
    Jason
    iMac (Intel)   Mac OS X (10.4.8)  

    AFAIK the only fix is to remove the StuffIt contextual menu item. StuffIt is notorious for crashing the Finder with its contextual menu item.
    Francine
    Francine
    Schwieder

  • Finder keeps crashing and restarting, Finder keeps crashing and restarting

    OK, All of the sudden my Mavericks install has started flaking out. Finder has started crashing and rebooting. Several reboots later and the same thing. Any suggestions?

    Here is the console dump if that helps.
    Process:         Finder [1442]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.9 (10.9)
    Build Info:      Finder_FE-885000002000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [801]
    Responsible:     Finder [1442]
    User ID:         2143274686
    Date/Time:       2013-10-30 15:10:42.555 -0500
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  D1E72F52-F43D-732E-0FB6-8D8F2C97D2B2
    Crashed Thread:  9
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    External Modification Warnings:
    Thread creation by external task.
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00000001072aea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001072add18 mach_msg + 64
    2   com.apple.CoreFoundation                0x0000000105434315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x0000000105433939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x0000000105433275 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x0000000104455f0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x0000000104455cb7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x0000000104455abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x00000001058b428e _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x00000001058b38db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit                        0x0000000105c12c5e -[NSApplication _realDoModalLoop:peek:] + 642
    11  com.apple.AppKit                        0x0000000105c1136e -[NSApplication runModalForWindow:] + 117
    12  com.apple.AppKit                        0x0000000105c10f1d -[NSAlert runModal] + 145
    13  com.apple.AppKit                        0x00000001058b9129 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1054
    14  com.apple.AppKit                        0x00000001058b8cce -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    15  com.apple.AppKit                        0x00000001058b8c6f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    16  com.apple.AppKit                        0x00000001058b8b93 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    17  com.apple.AppKit                        0x00000001058b89b4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    18  com.apple.AppKit                        0x00000001058bb877 -[NSApplication _sendFinishLaunchingNotification] + 142
    19  com.apple.AppKit                        0x00000001058b41ca _DPSNextEvent + 1238
    20  com.apple.AppKit                        0x00000001058b38db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    21  com.apple.AppKit                        0x00000001058a79cc -[NSApplication run] + 553
    22  com.apple.AppKit                        0x0000000105892803 NSApplicationMain + 940
    23  com.apple.finder                        0x000000010223d5cc 0x102237000 + 26060
    24  libdyld.dylib                           0x00000001071215fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00000001072b3662 kevent64 + 10
    1   libdispatch.dylib                       0x00000001070e943d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00000001070e9152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00000001072b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001073c7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001073cafb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00000001072b2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00000001073c8c77 _pthread_cond_wait + 787
    2   com.apple.finder                        0x0000000102260f0c 0x102237000 + 171788
    3   com.apple.finder                        0x000000010228a989 0x102237000 + 342409
    4   com.apple.finder                        0x000000010223ead2 0x102237000 + 31442
    5   libsystem_pthread.dylib                 0x00000001073c6899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00000001073c672a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00000001073cafc9 thread_start + 13
    Thread 9 Crashed:
    0   com.apple.Foundation                    0x0000000104adbfa0 0x10484c000 + 2686880
    Thread 9 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000106f9a000  rcx: 0x000000010700e000  rdx: 0x000000000000006c
      rdi: 0x000000010700e000  rsi: 0x0000000106f9a000  rbp: 0x000000010700fff4  rsp: 0x000000010700ff7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x0000000104adbfa0  rfl: 0x0000000000010206  cr2: 0x00000001070e3040
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     6
    Binary Images:
           0x102237000 -        0x1026fdffd  com.apple.finder (10.9 - 10.9) <0B3CE495-BEB9-323B-9C50-CEBDF5C465F4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x102832000 -        0x102962ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x1029e3000 -        0x102a46ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x102a88000 -        0x102ac2ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x102adb000 -        0x102ae0fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x102aea000 -        0x102b54ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x102b89000 -        0x102bb5ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
           0x102be6000 -        0x102ccafff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x102d91000 -        0x102f2dff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x103008000 -        0x103016fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x103024000 -        0x1030e7ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x103174000 -        0x10332cff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
           0x1033d2000 -        0x1033d9fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x1033e4000 -        0x103537ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x1035d4000 -        0x1036a5ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x103708000 -        0x103709ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x103711000 -        0x10379cfff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
           0x1037c7000 -        0x1037d1ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
           0x1037de000 -        0x10381ffff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x104076000 -        0x1042ceff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10441d000 -        0x10441dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x104427000 -        0x1046d1ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10482b000 -        0x104838fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10484c000 -        0x104b4bfff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x104d8a000 -        0x104f37f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x104f59000 -        0x104fabfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x105008000 -        0x105009ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x105011000 -        0x1050d3ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x105142000 -        0x1052b2ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1053ba000 -        0x1053bafff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x1053c3000 -        0x1055a8ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x105720000 -        0x105825fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x105890000 -        0x106404ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x106b90000 -        0x106b90fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x106b96000 -        0x106c09ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x106c4a000 -        0x106c5afff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x106c69000 -        0x106c82ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x106c9b000 -        0x106ca6ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x106cb4000 -        0x106ce4fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x106d14000 -        0x106d83ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x106daf000 -        0x106e38fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x106e85000 -        0x106ecaff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x106eff000 -        0x106f0eff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x106f1d000 -        0x106f6aff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x106f9d000 -        0x106fd6ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x106ff2000 -        0x106ffbfff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x107012000 -        0x107023ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10702a000 -        0x10702dffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x107036000 -        0x107036fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x107039000 -        0x10703dff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x107042000 -        0x10704cfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x107061000 -        0x107068fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x107074000 -        0x10707bff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x107082000 -        0x1070d0fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x1070e6000 -        0x107100fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x10711e000 -        0x107121ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x107128000 -        0x107128ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10712f000 -        0x107136ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x10713e000 -        0x107143fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10714d000 -        0x10714fff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x107156000 -        0x107157ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x107161000 -        0x107172ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10717d000 -        0x10717eff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x107188000 -        0x107211ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x10723d000 -        0x10723fff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x10724c000 -        0x107254fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x10725b000 -        0x107282ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10729d000 -        0x1072b9ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x1072e3000 -        0x107312fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x107322000 -        0x10733dff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x10734d000 -        0x107374ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x107392000 -        0x10739bff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x1073a8000 -        0x1073aeff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x1073c5000 -        0x1073ccff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x1073dc000 -        0x1073ddff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x1073e5000 -        0x1073e6fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x1073ed000 -        0x1073f2ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x1073fd000 -        0x107421fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x107444000 -        0x107486ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x1074a5000 -        0x1074ceff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x1074e2000 -        0x1074edfff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x1074f9000 -        0x1077e3fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x107861000 -        0x1078f0ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10795b000 -        0x1079d2fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x107a75000 -        0x107ae2fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x107b2b000 -        0x107b86ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x107bb9000 -        0x107c82fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x107cfb000 -        0x107d24fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x107d4d000 -        0x107e37fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x107e4f000 -        0x107f36ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x107f6c000 -        0x107f79ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x107f82000 -        0x107f86fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x107f92000 -        0x107f92ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x107f99000 -        0x107fa6ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x107fb1000 -        0x107fb2fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x107fb9000 -        0x107fd4ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x107fe5000 -        0x108049ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10808b000 -        0x10808efff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x108096000 -        0x1080adfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1080cc000 -        0x1080d6ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x1080e6000 -        0x10810effb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x108121000 -        0x1083f5fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10843d000 -        0x10843dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x108446000 -        0x108511fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x108520000 -        0x1085d0ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1085dd000 -        0x1089beffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x108a28000 -        0x108b96ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x108bc1000 -        0x108cb0fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x108d2c000 -        0x108d73fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x108d9b000 -        0x108dbfff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x108dcd000 -        0x108e26fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x108e37000 -        0x108e52ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x108e5b000 -        0x108e5fff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x108e6a000 -        0x108f58fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x108f89000 -        0x108f8bfff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x108f93000 -        0x108fdaff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x108ff2000 -        0x10900bff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x109029000 -        0x109058ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x109078000 -        0x109094fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x1090a3000 -        0x109194ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x1091a7000 -        0x10920bff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10923c000 -        0x10923dfff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x109247000 -        0x10924bff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x109254000 -        0x109260ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x109279000 -        0x109282fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10928a000 -        0x1092dbff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x109305000 -        0x10931dff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10932d000 -        0x109352ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x109363000 -        0x10936fff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x109378000 -        0x109383ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x10938f000 -        0x109392ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
           0x10939e000 -        0x10939fff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
           0x1093a6000 -        0x10945eff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x1094c8000 -        0x10950dff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
           0x109521000 -        0x109552fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x109565000 -        0x109567fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x10956d000 -        0x10956fffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
           0x109576000 -        0x10957cfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x10958e000 -        0x1095c3ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x1095d7000 -        0x1095e7ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
           0x1095f5000 -        0x1096d4fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
           0x10973e000 -        0x109772fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
           0x10978b000 -        0x1097c3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x109802000 -        0x109802ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10980f000 -        0x109a57fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x109b81000 -        0x109b89ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x109b93000 -        0x109ba5ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x109bb5000 -        0x109c41ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x109c77000 -        0x109c9cff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x109cba000 -        0x109f88ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10a07d000 -        0x10a0d0fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10a0f8000 -        0x10a137fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10a14a000 -        0x10a152ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10a15d000 -        0x10a168fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10a17d000 -        0x10a1bbff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10a1c7000 -        0x10a1c9fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10a1d5000 -        0x10a1d8fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10a1e5000 -        0x10a1efff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10a200000 -        0x10a24efff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10a268000 -        0x10a2e8fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10a30c000 -        0x10a364ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10a3af000 -        0x10a3defff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10a3ff000 -        0x10a405ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
           0x10a40f000 -        0x10a40ffff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10a419000 -        0x10a423fff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
           0x10a435000 -        0x10a45fff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
           0x10a46d000 -        0x10a480ff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x10a49c000 -        0x10a49eff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x10a4a7000 -        0x10a4affff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
           0x10a4b8000 -        0x10a4bcfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x10a4c4000 -        0x10a4c7fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x10a4d1000 -        0x10a4e3fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x10a500000 -        0x10a518ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x10a52b000 -        0x10a52cff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x10a537000 -        0x10a539ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x10a53f000 -        0x10a561fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10a57d000 -        0x10a58bfff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x10a59c000 -        0x10a5f3fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
           0x10ac23000 -        0x10ac30ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x10ac4c000 -        0x10ac54ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10c357000 -        0x10c383fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x10c594000 -        0x10c597ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10eb07000 -        0x10ed4eff4  com.apple.RawCamera.bundle (4.08 - 709) <4BA16655-6A88-351C-863D-8101F0FFE599> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x10ee59000 -        0x10ee81ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x10f38c000 -        0x10f3a7ff9  com.apple.security.csparser (3.0 - 55471) <0FA462BA-746F-3ACB-A90D-DCC7F280482B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
           0x10f511000 -        0x10f515ff7 +com.stclairsoft.DefaultFolderX.osax (4.5.12 - 4.5.12) <CB114502-D668-0D07-71ED-FA0E5DF08112> /Library/ScriptingAdditions/Default Folder X Addition.osax/Contents/MacOS/Default Folder X Addition
           0x10f51c000 -        0x10f56aff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
           0x10f5d1000 -        0x10f5f3ff7 +com.stclairsoft.DefaultFolderX.CocoaPatcher (4.5.12 - 4.5.12) <ED97CFC2-9217-5AC2-E02E-65965676AF57> /Users/USER/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X.bundle/Contents/Resources/Cocoa Patcher.bundle/Contents/MacOS/Cocoa Patcher
           0x10f609000 -        0x10f62eff0  com.apple.osax.standardadditions (2.3 - 348) <A1168A4F-0286-3D82-BC5E-238971CFED81> /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/Standa rdAdditions
           0x10f640000 -        0x10f67fff7  com.apple.AppleShareClientCore (4.0 - 3.0) <C8CF9884-B092-348E-BCCD-2821FDB7B517> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
        0x7fff68ee6000 -     0x7fff68f19817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8accc000 -     0x7fff8ad67ff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8b20d000 -     0x7fff8b25efff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b277000 -     0x7fff8b314fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8b397000 -     0x7fff8b3e6ff7  com.apple.framework.internetaccounts (2.1 - 210) <C77069C7-928C-315C-AA61-D90543901F20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8b3e7000 -     0x7fff8b3ebfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8b3fd000 -     0x7fff8b419fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8b87f000 -     0x7fff8b8d1ff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8b8e1000 -     0x7fff8b8e3fff  com.apple.loginsupport (1.0 - 1) <4772DFF0-E8FD-3F27-9C3B-39563B904E1C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8b8e4000 -     0x7fff8b8eafff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8b8ee000 -     0x7fff8b92afff  com.apple.ids (10.0 - 1000) <22502AAF-CC59-33EC-9ACF-106315206701> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
        0x7fff8bc20000 -     0x7fff8bc31ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff8c825000 -     0x7fff8c856ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8c8a6000 -     0x7fff8c90cfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8d286000 -     0x7fff8d7f6fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8d7f7000 -     0x7fff8db6dffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8de8e000 -     0x7fff8dea0fff  com.apple.login (3.0 - 3.0) <B825A996-7F9C-3F47-B76F-A0F9B4BEB373> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8e2b9000 -     0x7fff8e2e3ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8e323000 -     0x7fff8e340fff  com.apple.facetimeservices (10.0 - 1000) <9B4815BA-4305-381D-A178-F79E10B2C6E9> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
        0x7fff8e5fa000 -     0x7fff8e643fff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8e9a2000 -     0x7fff8e9a4ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff8f001000 -     0x7fff8f05efff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8f172000 -     0x7fff8f174fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8f1b7000 -     0x7fff8f1cbfff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8f1f4000 -     0x7fff8f642fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8f64d000 -     0x7fff8f654ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8f65c000 -     0x7fff8f68bff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8f9dd000 -     0x7fff8fa28fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff90236000 -     0x7fff9027cff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff910b4000 -     0x7fff911e9ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff91440000 -     0x7fff9148cffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff91514000 -     0x7fff91574fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff91575000 -     0x7fff91a99fff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff91a9a000 -     0x7fff91b6bff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff91b6c000 -     0x7fff91e86ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff91e87000 -     0x7fff92cd3ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff92f4c000 -     0x7fff92f69ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff93221000 -     0x7fff93237fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff932c7000 -     0x7fff932c9fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff932cc000 -     0x7fff932cffff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff932d0000 -     0x7fff932d8ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff93ab9000 -     0x7fff943d505f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff943d6000 -     0x7fff943d7fff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff943d8000 -     0x7fff943d8fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff94781000 -     0x7fff94809ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff94863000 -     0x7fff94c96ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff94fd0000 -     0x7fff94fdcfff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff94fdd000 -     0x7fff9502afff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff9505d000 -     0x7fff9508aff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff95095000 -     0x7fff952f6ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff953ba000 -     0x7fff95443ff7  com.apple.SoftwareUpdate.framework (6 - 574) <A24BDCFF-6164-3028-8892-D3C00B7C5658> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff95577000 -     0x7fff95577fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff95c7f000 -     0x7fff95da1ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff95f0f000 -     0x7fff95f6fff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff95f70000 -     0x7fff95fcffff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff96136000 -     0x7fff96142ff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff9616b000 -     0x7fff963fcff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff967ea000 -     0x7fff9692afff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff96f6c000 -     0x7fff971affff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff97324000 -     0x7fff97328fff  com.apple.ServerInformation (2.0 - 1) <E628F08A-0F6F-384B-AFD5-1BC1BBF56F1F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff97329000 -     0x7fff975b1ff7  com.apple.CommerceKit (1.2.0 - 232) <442AE798-E07F-3E68-BB80-4C41B61408E3> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff9760e000 -     0x7fff9763cff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff976cc000 -     0x7fff976e7fff  com.apple.DistributionKit (700 - 845) <E3D1ECC4-C5D1-35DC-B7E4-800FE0FFBF56> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff976e8000 -     0x7fff9777efff  com.apple.PackageKit (3.0 - 329) <F619E170-BE26-37E8-8F6E-C74D68522083> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff97bfe000 -     0x7fff97c07fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff9812d000 -     0x7fff98144fff  com.apple.PackageKit.PackageUIKit (3.0 - 329) <2B237B93-D088-33B7-AD28-79E5BC27576B> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
        0x7fff98145000 -     0x7fff9815cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff9857b000 -     0x7fff986a7fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaCon

  • Script to find OU name and object name in AD

    Hi , can any one help me on this, I need a script to find OU name along with object name in entire domain.
    Regards, Triyambak

    Hi Triyambak,
    As DexterPOSH mentioned, Get-ADObject can be used here.
    To list all OUs and the relevant objects of each OU in domain, please try the script below:
    Import-Module ActiveDirectory
    Get-ADOrganizationalUnit -Filter *|foreach{
    Get-ADObject -SearchBase $_.DistinguishedName -Filter *}
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • Looking for Pages script to find "return" "return" and delete 2nd one only

    Looking for a Pages Applescript to find "return" "return" and delete 2nd one only. Perform on entire document.
    Thanks

    Funny, the same question was asked on 2011/11/12 in http://macscripter.net/viewtopic.php?id=37477
    Nigel Garvey posted a neat answer :
    --{code}
    tell application "Pages"
       delete (paragraphs of front document whose length is 1)
    end tell
    --{code}
    Yvan KOENIG (VALLAURIS, France)  lundi 14 janvier 2011 11:01:29
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Allowing unprivileged users to restart print service

    Howdy,
    How would I add a user or group of users to be allowed to use server admin "Just" to restart the printer service, or otherwise admin the printer services. No other rights would be given to administer the server.
    I assume there is a local group I can add their accounts to, but I'd rather use their open directory or active directory accounts.
    Thank you for your attention,
    Nate

    Hi & welcome to the forums.
    There is no Server Admin way to do whay you want afaiaa. So, this answer is a complete guess and may screw up your system.
    There is a print group called lp in netinfo. If you can create a netinfo user called, say, PrintAdmin, and add it to the lp group, you may be able to give the PrintAdmin user access to the CUPS interface via port 631 using a web browser.
    You will see this interface if you go http://localhost:631 while at your server. And, from this interface the PrintAdmin user may be able to to what you want.
    But, this all begs the question, why do you need non-admins to restart a service?
    hth,
    b.

  • Finder suddenly quits and restarts

    I have an early 2008 MacPro-10GB memory. Recently switched out two of the drives and decided to try a mirrored RAID setup with 2 3TB Seagate Barracuda drives as the boot set (using Lion 10.7.2). Ever since, I have had random episodes where the finder quits, everything closes and then the finder comes back up and is ready to go but all my programs have been shut down in the process.It can happen as often as four times an hour. I don't lose more than a couple of minutes of work but if I'm iChatting, I suddenly lose the connection or scanning stops or printing stops. Should I not have tried to set up the RAID?

    Launch the Console application by entering the first few letters of its name into a Spotlight search. If that doesn’t work, then in the Finder, press the key combination shift-command-U. The application is in the folder that opens.
    Step 1
    Enter "windowserver" (without the quotes) in the “Filter” text field. Post the messages from the time of the last crash, if any – the text, please, not a screenshot.
    Step 2
    Still in the Console window, look under System Diagnostic Reports and User Diagnostic Reports for crash logs. Select the most recent one of each and post the contents – again, not a screenshot. For privacy’s sake, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don't post shutdownStall or hang reports.

  • Dragging files cause finder to crash and restart

    I've noticed when I'm moving files either from a folder to attach on a e-mail or moving files from one folder to another finder crashes and immediately restarts. I can then move the files no problem until I move on to another task and come back to move a file.
    I can copy or cut and paste files fine it just seems to be a problem when you begin dragging the file.

    I have the same problem, had Total Finder installed thinking it was the problem. Now with a fresh install its the same.
    It happens when i haven't used Finder for a while, trying to move a file and Finder just restarts.
    I also happens when my LaCie USB 3.0 discs is starting up from sleep.
    Looking in the activity log errors i see:
    21/10/14 11:33:47,859 ReportCrash[6730]:
    com.apple.message.domain: com.apple.crashreporter.writereport.crash
    com.apple.message.signature: Finder
    com.apple.message.signature2: com.apple.finder ||| 10.10 (10.10)
    So lost for clues.
    Was no problem under Developer versions nor the GM3.

  • Script to find specific font and copy to a new document

    I am working on a scripting solution to help break out files for production. What I need to do is search through a PSD, find any text objects that are in a specific font, and if they match, copy them to a new document. Can anyone help me with this? I've been able to make parts work, but I am very green, and could use a little bit of direction.
    thanks!

    Yeah so far I've been having trouble checking the layers, identifying the fonts, and the creating the new text object on a new file So pretty much the whole thing is broken at the moment.  Any help you could offer would be greatly appreciated. I'm just now really starting to learn javascript just to be able to automate photoshop.

  • Computer shows unable to find boot device and restarts automatically

    Hi, My computer Pavillion laptop starts and loads the operating system. While I am working, intermittently it reboots after showing me a message "boot device not found error" Please help. Thanks...Raj

    Hi, I started the computer followed by a restart and pressed F2 key to diagnose the bios. The in bios menu, I performed a Hard-Disk Test and below are the results. Test Drive: 1SMART Check: PassedFailure ID: ... Here is the screenshot with all the details. Please help. Thanks,Raj 

Maybe you are looking for

  • Does HP Color Laserjet 2840 work with Lion?

    I am considering upgrading from Snow Leopard to Lion.  Will my HP Color Laserjet 2840 work after the upgrade?

  • What height is a floor in health app

    II'm puzzled what the Health App measures to be a 'floor'.  I'm in the UK and when I'm working from home and don't have time to train outside I walk my house stairs  a number of times. This morning I walked a series of 10 up and downs. Followed later

  • Integrating the OM infotypes in the Column  area in PPOME Screen

    I  am trying to integrate om Infotypes itno the column Configuraton area in the Screen  PPOME and going through the   Hierarchy Framework-Column Framework Tables T77ARRAYTP T77ACOLC T77COL T77FRIEND and after  doing a ton of changes nothing changes i

  • Detecting a mouse click on any (all) child components...

    Hey All, I am writing a number of compound GUI elements that i want to make focusable when you click any part of them. (i.e. a JTextArea inside a JScrollPane, coupled to a JTextField to provide input to the JTextArea). Is there an easy way to detect

  • Migration from sun one to novell edirectory

    hello folks, please share info if anybody have an ideas on how to migrate data from sun one to novell edirectory. help wil be appriciated. thanks