Running Cron Scripts

Does anyone know if Leopard does this automatically when the machine wakes from sleep at night? It seems most of the programs that manually run these scripts are not Leopard compatable yet. Any thoughts?

Does anyone know if Leopard does this automatically when the machine wakes from sleep at night? It seems most of the programs that manually run these scripts are not Leopard compatable yet. Any thoughts?

Similar Messages

  • Run cron scripts at startup

    I would like to set up an apple script where I can run all cron scripts as well as repair disk permissions at startup.

    The actual code needed for the script is:
    do shell script "periodic daily weekly monthly" password "yourpass" with administrator privileges
    do shell script "diskutil repairPermissions /" password "yourpass" with administrator privileges
    Copy and paste the code into the Script Editor in the /Applications/AppleScript/ folder, provide your administrator password where the blue text is in this post, save it as an application, and add it to the list of login items for your account in the Accounts pane of System Preferences. If you don't want to store your password in the script:
    display dialog "Your password is required." default answer "" buttons {"Cancel","OK"} default button "OK"
    set the_pass to the text returned of the result
    do shell script "periodic daily weekly monthly" password the_pass with administrator privileges
    do shell script "diskutil repairPermissions /" password the_pass with administrator privileges
    (18701)

  • Run exec on cron script carefully

    i would like to change permissions of a file after rsync backups a file in my cron script, i was going to append an exec command to this command line, but i would like to know how to do it carefully so im not blowing up any other files.
    rsync -a --delete /home/backup/sqldumps /mnt/smb/backup/ &> /dev/null
    i was considering something like
    rsync -a --delete /home/backup/sqldumps /mnt/smb/backup/ &> /dev/null && -exec chmod 550 {} \;
    but i was fearing that it might exec on the entire root, and or not run at the right time on the right file.
    im having a hard time finding documentation on the latter portion of the exec command to know what the {} and \; does again.  i forget.....  im assuming that part may not be needed and causes recursion. 
    im going about it a bit lazy as well, and to keep the overhead lower, otherwise i would just run the rsync command first, then on the 2nd line do a find exec for a matching file for some criteria.
    can anyone shed some light on this?
    Last edited by wolfdogg (2014-01-06 18:41:41)

    wolfdogg wrote:im having a hard time finding documentation on the latter portion of the exec command to know what the {} and \; does again.
    There is no `-exec` command.  There is an -exec option to the `find` command, but you are not running find.  Unless the current man page is out of date, rsync has no -exec option like that.
    Further, if you put it after the && you would not be passing an -exec option to rsync.  Instead you'd be trying to run /usr/bin/-exec, or an -exec somewhere else in your path.
    The '{}' and \; are documented in the find man page as (again) they are specific to the syntax for find's -exec flag.  They are not a separate command or shell option.

  • Do I still have to run maintenance & cron scripts?

    Do I still have to run maintenance scripts or does Apple take care of them? If I do is there an inexpensive effective app. to do this automatically for me? Thanks.

    If you machine is asleep when the periodic maintenance tasks are scheduled (3:15AM for daily, weekly and 5:30AM for monthly) they will be run shorly after your machine is wakes up.  They are launchd LaunchDaemons now.  Cron is no longer used for these.  Still, as with cron, the tasks will not be performed if the machine was off at the scheduled time (reference).

  • Cron scripts run times

    I thought the cron scripts were supposed to run at 3:00 A.M. However, when I checked my daily, weekly, and monthly out files just now (6 Jun) I found the following modified times in Get Info: Daily, 5 Jun @ 8:03 P.M. PDT; Weekly, 1 Jun 11:16 A.M. PDT; Monthly, 4 Jun 6:56 P.M. PDT
    So, do this scripts now run when the computer is awakened from sleep, if the "scheduled time" has passed?

    romad wrote:
    So this is just a Tiger thing? On my G3 Imac running Panther, the times are still fixed at 3:00 A.M.?
    Right, though I think it's 3:15 AM for the daily scripts. Maybe 4:30 AM Saturday for the weekly ones, and 5:30 AM on the 1st of the month for the monthly ones.
    But yes, with Panther, they'll run at the times when they're scheduled. If the computer is off or asleep, then they won't run at all.
    On Tiger, if the computer is off when they should have run, they won't run later, but if the computer is asleep, they'll run at a later time. They don't run as soon as the computer wakes up, but at a later time, taking into account how long the computer has been asleep.
    So, on my laptop, the daily job runs every second or third day. The weekly runs about once a month or so. And the monthly hardly ever runs unless I just force it in the Terminal.
    charlie

  • Cron running Perl script causes Out Of Memory at 63000kb

    Hi,
    I run a script to record an internet steam at set times using cron (i'm using icecream, a perl script). This runs fine when executed by 'at' or manually form the command line, but when it is started by cron it dies with the error 'Out of memory!'. The machine isn't extremely powerful but is more than capable of doing this simple task!
    From my research I understand that it may have something to do with the /etc/security/limits.conf file, though apparently changing these values often don't have the desired effects.
    The output of 'ulimit -a' is as follows (I can't see any limiting factors here):
    [aratclif@server ~]$ ulimit -a
    core file size (blocks, -c) 0
    data seg size (kbytes, -d) unlimited
    scheduling priority (-e) 20
    file size (blocks, -f) unlimited
    pending signals (-i) 1931
    max locked memory (kbytes, -l) 64
    max memory size (kbytes, -m) unlimited
    open files (-n) 1024
    pipe size (512 bytes, -p) 8
    POSIX message queues (bytes, -q) 819200
    real-time priority (-r) 0
    stack size (kbytes, -s) 8192
    cpu time (seconds, -t) unlimited
    max user processes (-u) 1931
    virtual memory (kbytes, -v) unlimited
    file locks (-x) unlimited
    [aratclif@server ~]$
    and the crond.log output when it died is here (there is nothing else of any relevance in the log - just a load of song names broadcasted by the stream!)
    (aratclif) CMDOUT (
    LED ZEPPELIN - WHOLE LOTTA LOVE [63000 K]Out of memory!)
    The command is started by my user's crontab and so the ulimit displayed by cron is the same as when executed from the command line:
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1308]: (aratclif) CMD (ulimit -a)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (core file size (blocks, -c) 0)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1309]: (CRON) EXEC FAILED (/usr/sbin/sendmail): No such file or directory
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (data seg size (kbytes, -d) unlimited)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (scheduling priority (-e) 20)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (file size (blocks, -f) unlimited)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (pending signals (-i) 1931)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (max locked memory (kbytes, -l) 64)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (max memory size (kbytes, -m) unlimited)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (open files (-n) 1024)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (pipe size (512 bytes, -p) 8)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (POSIX message queues (bytes, -q) 819200)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (real-time priority (-r) 0)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (stack size (kbytes, -s) 8192)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (cpu time (seconds, -t) unlimited)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (max user processes (-u) 1931)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (virtual memory (kbytes, -v) unlimited)
    Apr 10 23:06:01 localhost /USR/SBIN/CROND[1307]: (aratclif) CMDOUT (file locks (-x) unlimited)
    Any help would be greatly appreciated!
    Thanks!
    Last edited by ajratcliffe (2012-04-10 23:13:01)

    No, the files are all the same. It seems like just a few are causing the issue, and what's weird, is some of them are cut versions from clips that elsewhere in the timeline render fine.

  • Photoshop CS5.1 crashes using cron script that open application

    Photoshop CS5.1 crashes when trying to launch the application using a cron script. This happens on two different machines running 10.7.3. Photoshop opens without crashing when manually running the bash script. The same script works both manually and as a cronjob on 10.6.8. The cron script:
    open -a "/Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app"
    Any help is appreciated.
    The crash report:
    Process:    
    Adobe Photoshop CS5.1 [1332]
    Path:       
    /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.1 (12.1x20110328.r.145] [12.1)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [801]
    Date/Time:  
    2012-02-21 15:04:07.739 -0800
    OS Version: 
    Mac OS X Server 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT            
    0000000100000000-00000001026fc000 [ 39.0M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Application Specific Information:
    objc[1332]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation 
    0x00007fff919abc12 CFArrayGetCount + 18
    1   com.adobe.Photoshop      
    0x00000001012e11d2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797070
    2   com.adobe.Photoshop      
    0x00000001012e146b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797735
    3   com.adobe.Photoshop      
    0x00000001012e17ec AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16798632
    4   com.apple.Foundation     
    0x00007fff8e59dd32 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    5   com.apple.CoreFoundation 
    0x00007fff919e8aaa _CFXNotificationPost + 2634
    6   com.apple.Foundation     
    0x00007fff8e589fe7 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
    7   com.apple.AppKit         
    0x00007fff9599b757 -[NSApplication sendEvent:] + 3011
    8   com.adobe.Photoshop      
    0x00000001012e25ce AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16802186
    9   com.adobe.Photoshop      
    0x00000001012e1d81 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800061
    10  com.apple.AppKit         
    0x00007fff959321f2 -[NSApplication run] + 555
    11  com.adobe.Photoshop      
    0x00000001012e0644 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16794112
    12  com.adobe.Photoshop      
    0x00000001012e10a1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796765
    13  com.adobe.Photoshop      
    0x0000000100068286 0x100000000 + 426630
    14  com.adobe.Photoshop      
    0x0000000100237199 0x100000000 + 2322841
    15  com.adobe.Photoshop      
    0x0000000100237229 0x100000000 + 2322985
    16  com.adobe.Photoshop      
    0x0000000100002294 0x100000000 + 8852
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff92ce17e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8bb835be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8bb8214e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108724247 C_AMTUISwitchSuppressUpdates + 16439
    3   com.adobe.amt.services   
    0x000000010871d39e C_EULA_SetState + 1742
    4   com.adobe.amt.services   
    0x00000001087242b2 C_AMTUISwitchSuppressUpdates + 16546
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf6ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff91df83be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x000000010ede9b9b ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff91e20bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff91db328a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff91df7fd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff91df8e36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff92ce1192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff954d5594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff954d6b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff95489dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x0000000113781fdb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x0000000113763f13 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001137820d6 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d7274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x0000000114587ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011433fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff92cdf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff92cded71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff919cc6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff919d4e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff919d4676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff8da78541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff8da6e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001145a406c APXGetHostAPI + 2583276
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff954d72a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x0000000114587cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x00000001147224ed APXGetHostAPI + 4149101
    4   com.adobe.adobeswfl      
    0x0000000114587e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x000000011458816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000114588299 APXGetHostAPI + 2469145
    7   libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff92ce0d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000116caf562 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000116cae6bf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000116cad706 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000116cad761 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000116cad7e2 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x0000000116ca7eed Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x0000000116ca8086 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x0000000116ca8b0f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x0000000116ca8bfd Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x0000000116cabeff Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x0000000116cac1a5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000116cac764 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000116cac951 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000116c9e67f Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000116c9fd01 Login + 7535
    16  ServiceManager-Launcher.dylib
    0x0000000116cace88 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x0000000116caf2a1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff954d38bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff954d6b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fff92cdf67a  rdx: 0x0000000000000024
      rdi: 0x0000000000000000  rsi: 0x0000000000000003  rbp: 0x00007fff5fbff080  rsp: 0x00007fff5fbff070
       r8: 0x0000000000003103   r9: 0x0000000000000000  r10: 0x000000000000002c  r11: 0x0000000000000206
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fff5fbff120
      rip: 0x00007fff919abc12  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
    0x100000000 -   
    0x1026fbfff +com.adobe.Photoshop (12.1 - 12.1x20110328.r.145] [12.1) <568CD2C0-8B76-63A9-A42A-B3D943DD7362> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    0x1032f4000 -   
    0x10336cfef +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <7AAC7875-787B-A4BA-F319-2B4425511ED4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x103378000 -   
    0x10337ffff  org.twain.dsm (1.9.4 - 1.9.4) <466A5B1D-F91A-30D7-93E0-B29B9B8F8F0E> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103387000 -   
    0x103398ff8 +com.adobe.ahclientframework (1.6.0.20 - 1.6.0.20) <AD464E16-20D1-A4FC-878D-CF44322F72BC> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x1033a5000 -   
    0x1033abfff  com.apple.agl (3.1.4 - AGL-3.1.4) <58F15993-D441-3146-9F3F-E03A061A54E3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x1033b2000 -   
    0x1035b8fef +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x10364b000 -   
    0x1037f9fef +com.adobe.owl (AdobeOwl version 3.0.93 - 3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x10389b000 -   
    0x103ccbfef +AdobeMPS (??? - ???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103e25000 -   
    0x104150ff7 +AdobeAGM (??? - ???) <8FE8A26F-F2C4-128B-ECF9-197279A31D70> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10421d000 -   
    0x104545fe7 +AdobeCoolType (??? - ???) <D55BD5E5-B430-7701-A11E-0FF989536E57> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1045dd000 -   
    0x1045feff7 +AdobeBIBUtils (??? - ???) <B37FD8D7-142F-EE1E-4C63-93C1C59B4318> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x10460b000 -   
    0x104636ff6 +AdobeAXE8SharedExpat (??? - ???) <C59B0A11-E89B-F50C-916C-D09F40C1BAA3> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0x104648000 -   
    0x10478cfef +WRServices (??? - ???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1047d3000 -   
    0x104838fff +aif_core (??? - ???) <0E7876E5-6465-676D-06DE-D8F44E3663EB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104854000 -   
    0x10486afff +data_flow (??? - ???) <A0C1FB2F-4EB4-7F3E-98E7-82BE18D631B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104882000 -   
    0x104918fff +image_flow (??? - ???) <70C5AE43-18D4-7E41-0BB1-FE9EF1792E6C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x10498f000 -   
    0x1049adfff +image_runtime (??? - ???) <140A4ED7-DAAA-2E4F-D211-7E2A491CFD5C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x1049ca000 -   
    0x104bf9fff +aif_ogl (??? - ???) <4E5A4532-CED3-1A19-C852-1C5560F4017A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104cd8000 -   
    0x104d6bfff +AdobeOwlCanvas (??? - ???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d8b000 -   
    0x1050d4fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x105264000 -   
    0x1053e6fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x105488000 -   
    0x105800fff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x10594a000 -   
    0x105a5ffff +AdobeACE (??? - ???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a84000 -   
    0x105aa0fff +AdobeBIB (??? - ???) <C0E29690-D406-8834-CA1D-0A4252A0946E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105aaa000 -   
    0x105b1cff7 +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <E604CBB8-A3F0-69D1-510B-3D8156D37D29> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x105b33000 -   
    0x105c06ffb +AdobeJP2K (??? - ???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105c26000 -   
    0x105c2aff8 +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <09559AEB-61DE-8DE8-4315-BFA0A7D6394B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x105c2f000 -   
    0x105ca6fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5.0 -i 33 [debug] - 64.140949) <ED51DA76-662A-8156-3D42-2146684A60B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105cc7000 -   
    0x105d25ffd +com.adobe.AdobeXMPCore (Adobe XMP Core 5.0 -c 61 - 64.140949) <D02D367B-FF1E-AD63-993C-5CD907CCFCCE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105d33000 -   
    0x1061cefff +com.nvidia.cg (2.2.0006 - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/Cg.framework/Cg
    0x106754000 -   
    0x1067aafeb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1067ef000 -   
    0x106814ffe +adobepdfsettings (??? - ???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x10684e000 -   
    0x106853ffd +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <5625AF72-323C-27C5-0094-213D09698D11> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106857000 -   
    0x1069f4fff +com.adobe.PlugPlug (2.5.0.232 - 2.5.0.232) <09F6FBA4-E768-BDFB-35AE-C7EB8EBA2D1A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106aa2000 -   
    0x106b85fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
    0x106bdb000 -   
    0x106bf4feb +libtbb.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbb.dylib
    0x106c05000 -   
    0x106c0bfeb +libtbbmalloc.dylib (??? - ???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106c12000 -   
    0x106c12fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
    0x106c15000 -   
    0x106c1dff3 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x106fc9000 -   
    0x106fcbfff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1084ec000 -   
    0x1084fbff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x108700000 -   
    0x108774ff3 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <1B6C37A0-570C-14D0-52A3-87C835F530BB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x108791000 -   
    0x1087acfff  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <59FCE9C0-27E6-34CE-89E5-3A83B843B36C> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x1087b1000 -   
    0x1087d2fff  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <25FF31F5-9D1E-35EB-8085-F0AC25C38DAC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x1087d6000 -   
    0x1087e8ff7  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <66A3625A-6918-3C14-8DF3-2F4924C389EA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1087ec000 -   
    0x1087edff7  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <C8D0607A-A668-36EE-AF03-866BD04B5611> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x1087f1000 -   
    0x1087f9fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x10ba3b000 -   
    0x10ba42fff +Enable Async IO (??? - ???) <9AE049A5-F53E-657B-D0AE-01C42D817A19> /Applications/Adobe Photoshop CS5.1/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x10bff0000 -   
    0x10bff8ffe +ScriptingListener (12.1 - 12.1) <CA77642E-943B-02F2-140E-DD95022E8C22> /Applications/Adobe Photoshop CS5.1/*/ScriptingListener.plugin/Contents/MacOS/ScriptingListener
    0x10d52d000 -   
    0x10d536fff +FastCore (??? - ???) <1565E455-4A86-A3BD-113F-CD828F2C5150> /Applications/Adobe Photoshop CS5.1/*/FastCore.plugin/Contents/MacOS/FastCore
    0x10ecc9000 -   
    0x10ed2cff3 +MMXCore (??? - ???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5.1/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x10edb4000 -   
    0x10ee1fff0 +MultiProcessor Support (??? - ???) <4FEA98F6-A072-F0BF-0E30-BEFDBD623611> /Applications/Adobe Photoshop CS5.1/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x1106f4000 -   
    0x1106f8fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x1108f5000 -   
    0x1108fbfff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x111b1b000 -   
    0x111b49ff7  GLRendererFloat (??? - ???) <0C213C61-C08C-3B5D-85A4-EB4660AF55BF> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x111bc8000 -   
    0x111be8ff7 +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <48D74CFC-E9C7-143A-F971-2C7F0ACF7602> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x113369000 -   
    0x113385ff7 +MeasurementCore (??? - ???) <1BE124EE-A88B-8F47-B9E1-1E276FA54327> /Applications/Adobe Photoshop CS5.1/*/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x113600000 -   
    0x11385cfef +com.adobe.PSAutomate (12.1 - 12.1) <951D5D57-776F-5A95-24A0-D70623A9902F> /Applications/Adobe Photoshop CS5.1/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x113a7a000 -   
    0x113b1effb +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.12764) <C53B3FBF-7530-1DAF-66E7-C2E50F25A6DE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x113b83000 -   
    0x113c23fef +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.12764) <2A61AEB9-8E9D-8136-9B6F-B4394D6AB7AE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x114300000 -   
    0x11516aff3 +com.adobe.adobeswfl (??? - 2.0.0.11360) <39C5D47B-EB0F-9FE5-ABA7-7D925DB9C036> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x116c50000 -   
    0x116c8dfeb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <188E3565-26D6-6A54-01E2-1BBBF73AE24E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotificati ons
    0x116c9c000 -   
    0x116cc4fef +ServiceManager-Launcher.dylib (236.0.0 - compatibility 2.5.0) <DBEE8529-7074-635B-2CAD-DF7BA597D909> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x117900000 -   
    0x117a99fff  GLEngine (??? - ???) <8BA26192-A4D7-362D-8B57-5FCF4B706A25> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x117acd000 -   
    0x117bc6fff  libGLProgrammability.dylib (??? - ???) <B7710703-8652-36B8-83DD-4F216FAF0730> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x117bec000 -   
    0x117ff7ff7  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.11 - 7.1.8) <B3612412-7530-3FB9-AF32-C9433755CC76> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x7fff6171f000 -
    0x7fff61753baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    0x7fff8b0a8000 -
    0x7fff8b0b2ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
    0x7fff8b0b3000 -
    0x7fff8b0dbff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8baef000 -
    0x7fff8baf4fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8baf5000 -
    0x7fff8bb2afff  libTrueTypeScaler.dylib (??? - ???) <5AB9A51C-AD6B-3E02-B9A6-7B1447CF6134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8bb2b000 -
    0x7fff8bb7fff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8bb80000 -
    0x7fff8bb8efff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff8bb8f000 -
    0x7fff8bb95fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8bc2f000 -
    0x7fff8bc4cff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff8bc4d000 -
    0x7fff8bce7ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff8bf7e000 -
    0x7fff8bf7efff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8bf7f000 -
    0x7fff8bf95ff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff8bf96000 -
    0x7fff8bfd5ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8bfd6000 -
    0x7fff8bfd6fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/App

    Well, it's crashing in Apple code while trying to parse information returned from the OS.
    Looks like it's in response to an activation request, and we're trying to get a list of the active windows - but the OS can't parse the values it just returned without error. Nice.
    All I can do is try to add some safety around those calls in the next version of Photoshop.
    If we can get a reproduceable case, then we can write up a bug for Apple.

  • What exactly are the cron scripts doing?

    Hi,
    Hope the subject says it all: I have searched but not found a detailed explanation as what the cron scripts (daily, weekly, monthly) actually do, and if the utilities (Onyx, Cocktail, Xupport, etc) are doing exactly the same.
    Can someone point to a site or explain?
    TIA
    Dan

    Hi Dan,
    (in addition to Barry's reply)
    Yes,
    1) running the Daily, the Weekly and the Monthly tasks manually with an utility, or
    2) running them yourself with the
    sudo periodic daily
    sudo periodic weekly
    sudo periodic monthly
    Terminal commands
    (or this one: sudo periodic daily weekly monthly), or
    3) leaving your computer running 24/7/365 so that they run automatically,
    all three ways do exactly the same thing.
    --> To see what they do exactly, the best way is to open Console, and in the /var/log section, look for "daily.out", "weekly.out" and "monthly.out".
    What exactly are the "cron scripts" doing?
    (Periodic tasks)
    In Console, you'll find a lot of different files that grow with more and more information every minute, even every second for some of them.
    The three Periodic tasks regularly rearrange them and compresses them so that they don't take too much disk space.
    They also rebuild some system database so that the data never gets unusable by the system.
    HTH
    Axl
    201

  • Running Maintenance Scripts for Mac OS 10.5.8 HELP!

    I am trying to run the maintenance scripts on my laptop for the first time. I go to Terminal type in "sudo periodic daily weekly monthly" and hit return. A warning message pops up the some data may be lost.... and the the Password prompt comes up. I back up consistently so I just want to run the scripts since it has never been done. However, when I try to type in my password, NOTHING types. I hit return and tried again, but nothing. Can someone please help me figure out what is wrong and if there is any other maintenance I need to do to the system?
    Thanks in advance for any help.

    You don't need to use any utility, or perform any procedure, to make sure OS X's built-in maintenance tasks have run under OS X 10.5 and later.
    OS X 10.5 will run its cron jobs automatically (actually, they are no longer handled by the UNIX facility "cron", they are now handled by a similar facility called "launchd". if that means anything to you) whether you have left your computer on all night or not. You no longer need a utility to run missed maintenance as of OS X 10.5. It will run automatically at the next available opportunity. Actually, this was the case as of OS X 10.4, but a bug kept the maintenance routines from running more than once per restart under OS X 10.4. This was fixed in OS X 10.5
    http://discussions.apple.com/message.jspa?messageID=6552347
    http://arstechnica.com/reviews/os/macosx-10.4.ars/5
    http://developer.apple.com/macosx/launchd.html

  • How often should you do the maintenace cron scripts??

    Hi all,
    As the subject suggests, I just like to know how often should you run those maintenace cron scripts???
    thanks...
    Johnny
    * I don't know if this is the place for this question, if not, then I am sorry. *

    macuserguy,
    You may find Dr. Smoke's excellent FAQ about Running the Mac OS X maintenance scripts helpful.
    The FAQ suggests approximately weekly basis (especially if your Mac is shutdown or in sleep mode overnight) though perhaps more frequently if you have a smaller HD as these log files can take up alot of room.
    Hope that helps some,
    littleshoulders [:-)

  • How can I run a script last?

    Hiya,
    I have a single backup job running a single dataset. That single dataset has an include statement to include a dataset directory, which holds individual datasets for the several hosts I want to back up, each with potentially different parameters. This works well, the hosts back up in some order (I don't care), everything's happy.
    However, what I want to do is add a step on the end of this process to run a report on the admin server after all the backups are complete. That is, to run a script once, last.
    If I add an "after backup" command in the dataset, it runs it (as stated in the manual) on the client servers, after every backup, which is no good to me. I've tried creating a separate job and scheduling it at a lower priority a few minutes later than the backup job, but that seems to just run when it feels like it, I presume because there aren't any conflicts so why shouldn't it?
    Can anyone advise how I should be doing this?
    Related question... I've tried putting an "after backup" step on the Catalog backup job, but that appears to get run twice (I presume because there are two "include" steps in the catalog dataset)! Is this expected? How can I get it to just run once, after the catalog backup is complete?
    Thanks,
    David.

    Thanks Donna, but... no. It didn't work.
    We've actually purchased a license for OSB, so I've fired this question at our official support channel now, and they came back with the same answer at the same time (are you the Oracle techie looking at my problem, by any chance?). For the record here's (with some tweaks for readability in this context) what I've sent back in response to that article.
    From the article, I thought perhaps the following might do the trick:
    include dataset /Hosts {
    after backup optional "/usr/local/osb/pre-n-post after-fsd-hosts mail"
    But, from the log:
    2010/11/05.07:26:58 trouble parsing dataset in FSdaily line 1 - open brace appears where not allowed (OB dataset mgr)
    "010/11/05.07:26:58 offending line is "include dataset /Hosts {
    2010/11/05.07:26:58 trouble parsing dataset in FSdaily line 3 - bad nesting (OB dataset mgr)
    "010/11/05.07:26:58 offending line is "}
    So it appears I’m not actually allowed to do that. I don’t understand why that would be.
    The only other idea I have is to include a dummy backup step, backing up something really small (because OSB won’t let you run a backup without backing anything up - sigh!), tack a script onto that, and hope like heck OSB decides that it should run that last. All the documentation I’ve read gives the impression that datasets are all about scope, not order, so I’m not altogether confident that this will work. In any case, it seems a pretty kludgy way of doing it! And, given the next paragraph below, I’m not all that sure it’ll work in any case.
    My idea of scheduling a catalog backup for five minutes later than the client backups, with a lower priority, so that it runs when the client backups finish, also has a flaw - if I use two tape drives in parallel, it runs the catalog job in parallel with the last client job, which is completely useless. I want to put on the end of the tape a backup of the catalog as at just after the client backups, so that in the case of a disaster I can restore that and I’ll be good to restore everything else.
    In addition to being completely useless for the purposes of putting an “after” catalog backup on the end of the tape, it’s also completely useless for the purposes of running a script last - I tried the following:
    include catalog {
    after backup optional "/usr/local/osb/pre-n-post after-catalog mail"
    This ran the pre-n-post script twice, once for each component of the catalog, which is altogether not what I want it to do.
    I can’t think of any way to achieve a catalog backup on the end of the script except for scheduling it for some time later and hoping the dataset backups always finish by then. Ugly.
    The only way I can think to achieve the run-a-script-last is to munge all the datasets together into one humongous dataset file, and do stuff as in the article to try to bend OSB to my will (again, hoping that OSB obeys the order of statements in the dataset). Which, when I’m given the ability to use “include dataset /Hosts” to make it easy to maintain, seems a bit of a mean trick to pull on me. And, again, with two tape drives available I’m not at all sure it’ll work in any case.
    I'll post further results as they come to light...
    David.

  • I run a script in win 7 Enterprise it worked but not in window 8.1

    I run a script that hides folders and it worked in window 7 Enterprise, but then when I tried it in window 8.1 it did not work at all. Is there something I am missing ?
    public void StartDir()
    DirectoryInfo dii;
    String discT = @"C:\\Test0137";
    String disc1 = discT + @"\NotePsn";
    dii = Directory.CreateDirectory(disc1);
    ToggleHidden(disc1);
    public void ToggleHidden(string filename)
    string path = filename;
    DirectoryInfo di = Directory.CreateDirectory(path);
    di.Attributes = FileAttributes.Directory | FileAttributes.Hidden;

    Following the suggestion from Thomas, I modified my script. It worked perfectly on my Window 7 Enterprise.Then I just took my flash-memory(where my script reside) and plugged it in my laptop (window 8.1) and started to run the script but it did not hide
    the directory I intended to hide, and I did not get any  error message either. I also tried to generate directories in different discs ...still it did not work. This Script is the corrected version after the suggestion of Thomas and Michael Taylor:
    public void StartDir()
    DirectoryInfo dii;
    String discT = @"C:\\Test0137";
    String disc1 = discT + @"\NotePsn";
    dii = Directory.CreateDirectory(disc1);
    ToggleHidden(disc1);
    public void ToggleHidden(string filename)
    string path = filename;
    DirectoryInfo di = new DirectoryInfo (path);
    di.Attributes = FileAttributes.Directory | FileAttributes.Hidden;

  • How to run a script on Oracle server from isqlplus

    Hi I am trying to run a script on my workstation from Oracle server through isqlplus workarea. I entered following command and get the following error. i have enabled isqlplus URL by editing web.xml file already. Can please someone help how to run the script?
    @http://myaixserver.com:5560/scripts/Databasestartupstages.sql;
    SP2-0920: HTTP error 'page not found (505)' on attempt to open URL

    So far, you haven't specified your rdbms version and isqlplus behaved differently on a 9iR1, 9iR2 from the one release on 10gR1/R2. on 9i it was a servlet based on a JServ servlet executor machine, meanwhile on 10g it is a J2EE compliant application deployed on an OC4J container, so configuration is different.
    You may want to take a look at these references -->
    * Starting iSQL*Plus from a URL
    * Creating Reports using iSQL*Plus
    ~ Madrid

  • Running Permission Scripts for App-V packages in VDI environment

    Hi
    We use App-V 5.0 SP1 in VDI environment.
    We have a major problem with packages' permissions
    Our users don't have administrative privileges on their machines.
    As the option for "Security Descriptors" is discontinued, the only way to give permissions to a folder in a package is to use the VFSCACLS.vbs as a startup script of a package.
    This way the first time users launch an application they're prompt to reopen it, and the second time they can use the application with the needed permissions.
    The problem:
    The script saves those permission changes under LOCALAPPDATA\AppV...
    Therefore, everytime the users logoff the folder is deleted (VDI...) and again, they must run the script for the first  again to get the permissions back after logon!
    We cannot roam the LOCALAPPDATA\AppV folder as its size can be dozens of GBs...
    Folder permissions with group policy is also not a solution, as the folder name changes everytime we upgrade a package and it's impossible to follow with hundreds of packages.
    So it's either we're missing something critical in the architecture with VDI environment or there's a normal solution for these situations.
    Would love to get some help
    Thanks
    Tamir Levy

    Hi Nicke
    that's what I did! the problem is that I find my self over and over again want to sequence packages in App-V 5.0 and forced to sequence it in App-V 4.6.
    I really hope that it wasn't App-V team's goal. announcing App-V 5.0 and tell us it doesn't support many things so we will still need App-V 4.6 forever.
    I have to maintain 2 different App-V environments with 4 different servers , 4 different sequencers and 2 clients on each computer. it doesn't make any sense for me to forced to stay with both of the versions forever.
    correct me if I'm wrong but App-V 4.6 is a legacy application. the new versions cover only support on newer operating systems and nothing more. I won't be surprised if in the next version of MDOP won't come with App-V 4.6 anymore and Microsoft will announced
    it's unsupported very soon.
    Every time I open a ticket with MS Support the best thing I get is "It's a known issue, we can't tell when it will be fixed"
    can you help me more ? move it forward to other people from the inside? at least agree with me that something is not as expected in App-V 5.0... :(
    I love the technology, I believe in it, I'm kinda depend on it and I only want it to be better
    Tamir Levy

  • Applescript: How to run a script once upon logon for multiple users

    I'm deploying a NetRestore image to about 150 Macs which will be using Active Directory and I've designed a custom default user for each new user. However, our system requires a specialized certificate that has to be installed on the local login.keychain for each user otherwise network connectivity is impacted.
    I've tried to use the security command through Terminal to install the certificate, but no matter what combination of commands, I cannot seem to get that to work properly even with an already-created user. While it will often say it's installed, the cert will not actually show up in the login keychain in Keychain Access. And the network connectivity is still impacted.
    So instead, I created a brief AppleScript that just gives the user brief instructions to click "Add" on the prompt for which Keychain to add the cert and then "Always Trust" for the "This cert is not verified" prompt. Then it launches Keychain Access. Originally, I was going to have it actually click the buttons for the user, but I realized trying to get the whole Accessibility apps and assitive devices to work on every new user would be a nightmare.
    I created the script on another 10.9 Mac using Automator to make it an actual application. I've used the instructions in OS X: Using AppleScript with Accessibility and Security features in Mavericks to sign it and I'm using root to move it from its network location into the Applications folder. I've adjusted the permissions to allow all Admin users to r/w (along with everyone else). To the root user, it shows as a usable application, but every other user on the Mac sees it as damaged/incomplete.
    What I want to do is add it to the default Login Items, so I can run the final AppleScript command to simply remove the login items listing. That way I don't need to worry about it running again, but it's still available for the next user to sign onto the deployed Mac.
    I know it's a little convoluted, but this is the final piece to the NetRestore deployment I've been working on for months. Any suggestions on how to make this work (or even a completely different solution) would be greatly appreciated.
    Here was the original shell script in case you're curious.
    #!/bin/bash
    ## Prompt for current user admin for use in Certificate Install
    while :; do # Loop until valid input is entered or Cancel is pressed.
        localpass=$(osascript -e 'Tell application "System Events" to display dialog "Enter your password for Lync Setup:" default answer "" with hidden answer' -e 'text returned of result' 2>/dev/null)
        if (( $? )); then exit 1; fi  # Abort, if user pressed Cancel.
        localpass=$(echo -n "$localpass" | sed 's/^ *//' | sed 's/ *$//')  # Trim leading and trailing whitespace.
        if [[ -z "$localpass" ]]; then
            # The user left the password field blank.
            osascript -e 'Tell application "System Events" to display alert "You must enter the local user password; please try again." as warning' >/dev/null
            # Continue loop to prompt again.
        else
            # Valid input: exit loop and continue.
            break
        fi
    done
    echo $localpass | sudo security import /'StartupFiles'/bn-virtual.crt ~/Library/Keychain/login.keychain
    osascript -e 'tell Application "System Events" to delete every login item whose name is "LyncCert"
    And this is the AppleScript itself. (I used the \ to make it easier to read. The first line is actually one complete command)
    display dialog "Click OK to start installing Mac Network Certificate." & return & return & \
    "In the following prompts, click the 'Add' then 'Always Trust'." & return & return & \
    After you have clicked 'Always Trust', quit Keychain Access." default button 1 with title \
    "Mac Network Certificate Install"
    activate application "Keychain Access"
    tell application "Finder" to open POSIX file "/StartupFiles/bn-virtualcar.crt"
    tell application "System Events" to delete login item "Lync-AppleScript"
    end
    Thank you for your help!

    I have run into this same issue. Are you trying to run the script one time as a new  user logs in or everytime a user logs in?

Maybe you are looking for

  • How to insert page numbers in document

    How can I insert page numbers using Pages starting with the second page of the document?

  • Trackpoint freezes on T60P

    A week or so ago the Trackpoint on my T60P (2007-AE7), running XP SP 3, started freezing a minute or two after booting the machine or waking it up.  Occasionally after a pause of a few minutes it will start working again on its own for a few seconds.

  • Importing data to excel

    My problem is that excel can't open the entire txt file that I am generating. How can i get all of data to go into excel since now it just fills up the entire A column with data and that is only 65,536 cells. Is there a way to get the data to fill up

  • Import from a DVD

    Everytime that i put a DVD in the player opens and won't let me do anything else. I want to import from the DVD. There are no chapters on this particular DVD which was copied from a 60 min minidv tape

  • Using "and" "or" etc conjunctions

    Hi All, I have a rulebase: 1) the branch code is required if the window = "London" and the product ="CDS" 2) the branch code is required if the window = "Canada" and the product ="CAIN" Since the conclusion is same for both scenarios, i am not able t