Save output of a command

Hi all,
I am trying to save the output of a command so I can read it and decide weather it completed successfully or not.  I am having trouble running the command though. It's working but the switches aren't.
$Servers = Get-Content Servers.txt | Sort-Object
ForEach ( $Server in $Servers ) {
& PsExec.exe \\$Server 'C:\Program Files (x86)\progfolder\program.exe' option -t=$Duration -e=$email -c=$Comment -q=110
When ran it complains I am not specifying any options/switches. Ideas?
Thanks.

Psexec can be very finicky with optional switches for the command you are trying to run through it.
Try this and let me know if it works:
$Servers = Get-Content Servers.txt | Sort-Object
ForEach ( $Server in $Servers ) {
& PsExec.exe \\$Server 'C:\Program Files (x86)\progfolder\program.exe' 'option -t=$Duration -e=$email -c=$Comment -q=110'
Boe Prox
Blog |
Twitter
PoshWSUS |
PoshPAIG | PoshChat |
PoshEventUI
PowerShell Deep Dives Book

Similar Messages

  • Save output of ping command in jtextarea

    Hello friends,
    In my program i made 1 screen, in that i put 1 textarea and 1 button.
    When user press that button i want to run ping command and its output i want in textarea.
    How can i do that, give fast reply its urgent for me.
    Thanx

    Hello!
    My idea is:
    Process proc=Runtime.getRuntime().exec("ping host");
    BufferedReader in=new BufferedReader(new InputStreamReader(proc.getInputStream()));
    (proc's output is piped to proc.getInputStream())
    next use the code I've written in thread: http://forum.java.sun.com/thread.jsp?forum=31&thread=509892
    or write your own thread that gets data from stream in and sleeps for example 1000ms after it.
    Best wishes,
    Arthur

  • Problem with output string to command

    hey i have no idea why this aint working
    its a simple output string to command.
    what it is supposed to do is make a new directory given by the input string
    e.g. mkdir /home/luke/dep
    thanks for the help
    //methods input save files
         saveFile = JOptionPane.showInputDialog("Save Files To : ");
         //method command for saving files
         //Stream to write file
         FileOutputStream fout;          
         try { Process myProcess = Runtime.getRuntime().exec("mkdir" + saveFile );
          InputStreamReader myIStreamReader = new InputStreamReader(myProcess.getInputStream());
          fout = new FileOutputStream ("file.txt");
          while ((ch = myIStreamReader.read()) != -1) { new PrintStream(fout).print((char)ch); } }
              catch (IOException anIOException) { System.out.println(anIOException); }

    What you fail to understand is that "aint working" and "Problem with output string to command" tells us absolutely squat about what your problem is. This is the same as saying to the doctor "I'm sick" and expecting him to cure you. As mentioned by Enceph you need to provide details. Do you get error messages? If so post the entire error and indicate the line of code it occurs on. Do you get incorrect output? Then post what output you get, what output you expect. The more effort you put into your question the more effort others will put in their replies. So until you can manage to execute a little common sense then the only responses you will get will be flames. Now is your tiny little brain able to comprehend that?

  • Sysql - use SQL queries against output of linux commands

    Hello!
    Many linux commands have table-like output. Sometimes it is better to analyze such output as a real table in relational database. I have published prototype of utility that parses output of one or several linux commands, saves it in database and allows to make SQL queries to that data. Program is written on python and uses sqlite database engine.
    sysql at AUR
    sysql at Github
    Here is why I wrote it:
    * No need to remember command syntax to format command output - just select necessary fields in SQL query
    * No need to know sed, awk, head, join and other linux commands to manipulate with output - it's all SQLite
    * Table data is stored with meaningful column name and type (int, text, float, datetime etc)
    * All power of SQL can be used to query output (JOIN, WHERE, GROUP BY etc.)
    * To support new command, output parser must be developed only once and then can be shared with community to make life easier
    * All supported commands are kept in one place as set of python files, so it is easy to find out how to customize existing parsers or create new ones
    This is my first community contribution, so kindly ask everyone to share your opinions and advices on what can be done better. Thank you!
    Examples:
    Display help and list of available commands:
    sysql
    Display output of ps command:
    sysql ps
    Query output of lsblk command:
    sysql -q "SELECT device,uuid,filesystem FROM lsblk" lsblk
    Query output of several commands:
    sysql -q "SELECT ps.pid, ps.command, ps.elapsed_time, lsof.name FROM ps JOIN lsof ON ps.pid = lsof.pid WHERE name LIKE '%LISTEN%'" ps -e --- lsof -Pni4

    I am not sure, if I will ever use it, but I do think, this is an _amazing_ idea!
    You may consider something like a global repository for output parsers accessable directly via sysql.
    Last edited by myname (2013-11-24 09:16:59)

  • Save Output to: setting not being saved

    This has been driving me nuts for a couple of years, so I figured I'd finally ask if anyone else sees this behavior.
    My script grabs a PDF and converts each page to new, separate, PDF files using a custom name and number. There are three components: Ask for Finder Items, PDF to Images, and Make Finder Item Names Sequential.
    My problem appears in the PDF to Images part. I have the "Save Output to:" setting set to a folder ON my desktop (Outbox). Every time I open the script it has reverted to "Save Output to: Desktop". I can change it, run the script from within Automator, and it works fine. If I save it (or save-as), when I next open the script, it will have reverted to Desktop. I have tried every iteration I can think of to get it to remember to store the files in the correct folder, but it just won't save this setting.
    I am in the habit of just opening the script first, and changing the setting, then running the script before I have closed it, so this is no big deal -- but it does make it two more steps, which kinda defeats the whole purpose of automator.

    Understood, but you mentioned scripts and AppleScript is used extensively with workflows. If there aren't any in yours, then all I can suggest is peruse http://www.automatedworkflows.com/tips/podcast.html
    Also, see http://discussions.apple.com/thread.jspa?threadID=2039384 and Introduction to Automator tutorial at http://automator.us/leopard/video/index.html

  • Gnome Panel applet that shows output of system command.

    Hi all;
    Because of the recent hostile takeover of #archlinux channel by tilling WM fanatics..    I will ask here..
    Does any one know of a Gnome Panel applet that shows the output of system command of your choice?
    For people who Conky is a bit too much and they only want a simple piece of data available (like what is the current IP on ppp0 interface) like me..  this is a necessity.
    If its not in existence I would probably make one.. shouldn't take long, I also would like to hear if there is any interest.
    Thanks

    That's exactly what I was looking for!  Thank you!
    Changed code to:
    $dism = "X:\Windows\System32\Cmd.exe /c start CMD /k dism /apply-image /imagefile:D:\W7x86.wim /index:1 /applydir:C:\"
    And voila, new window opened with the live output of dism.
    new... and have a glazed over look about my eyes to prove it...

  • Cannot read the output from windows command.

    Hello
    I have the following classes
    package cmd;
    import java.io.IOException;
    public class CMD {
        public CMD(){
            ProcessBuilder pb = new ProcessBuilder()
            .command("cmd.exe","/c","del *.*")
            .redirectErrorStream(false);
            Process p;
            try {
                p = pb.start();
                StreamGobbler errorGobbler = new StreamGobbler(p.getErrorStream(), "ERROR");
                // any output?
                StreamGobbler outputGobbler = new StreamGobbler(p.getInputStream(), "OUTPUT");
                // start gobblers
                outputGobbler.start();
                errorGobbler.start();
            } catch (IOException e) {
                // TODO Auto-generated catch block
            System.out.println("eee "+e.getMessage());;
        public static void main(String[] args) {
            System.out.println("x");
            new CMD();
            System.out.println("x");
    and
    package cmd;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    public class StreamGobbler extends Thread {
        InputStream is;
        String type;
        StreamGobbler(InputStream is, String type) {
            this.is = is;
            this.type = type;
        @Override
        public void run() {
            try {
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line = null;
                while ((line = br.readLine()) != null)
                    System.out.println(type + "> " + line);
            catch (IOException ioe) {
                ioe.printStackTrace();
    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    Please note that the above example is important because I am developping a tool and it is mandatory for that tool to parse the output from a windows batch command.
    Best regards,

    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    No - but I will give you a hint about ProcessBuilder and how to develop software properly.
    Hint #1: Don't try to automate something that you don't know, or understand, how to do manually.
    a. Do you know how to execute 'del *.*' manually in a command window?
    b. Did you try that manually to see what happens?
    My guess is 'no'. If you had you would know that the response to a 'del *.*' command is going to be this:
    Are you sure (Y/N)?
    And your 'java class execution' doesn't finish because the 'del' command is waiting for you to answer that question.
    Hint #2: Don't try to use ProcessBuilder for an application that requires console input unless you first know how to provide that console input via your Java code.
    Your code will wait forever since it does NOT answer that question.
    Search the net and The Java Tutorials and  you can find examples of executing command line utilities. Then try those examples first and make sure that:
    1. They work for you
    2. You understand HOW they work
    Then you can modify those examples to do what you want to do.

  • Using subprocess in python3 to get output of a command

    Hi Friends. I am writing a python3 script for audacious to check the internet for album cover of the current playing song and then display it in conky. I am trying to call a command from python and get it's output:
    audtool current-song-tuple-data album
    but when i use this command in python like this:
    subprocess.check_output(["audtool", "current-song-tuple-data album"])
    i get the following error:
    Unknown command "current-song-tuple-data album".  Try "audtool help".
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/usr/lib/python3.2/subprocess.py", line 522, in check_output
        raise CalledProcessError(retcode, cmd, output=output)
    subprocess.CalledProcessError: Command '['audtool', 'current-song-tuple-data album']' returned non-zero exit status 1
    Please , python experts on this forum, help me.

    @Pranavg1890: Please add solved to your thread title then.
    BTW: I found pexpect a good option for interacting with shell commands:
    http://sourceforge.net/projects/pexpect/
    It provides an easy way to deal with console output and react on certain patterns.

  • STAD BDC to save output file

    Dear All,
    I want to create a program with the BDC recording which saves output of STAD' TCode at my local system and want to schedule it in background so that i can get the daily log of transactions.
    I tried to create BDC with system date input but it's not working.
    Please let me know if there special settings for that.
    -Maharshi

    Dear,
    I didnt get your mean.
    Can you explain me the step.!
    -Maharshi

  • Execute command and save output in a HTML File

    Hello Guys,
    I have a requirement and for that i have to do following. a) read a file in an array and then execute a command for each value in that array. after that i want to store the output of command and value of array in another array.
    i am doing something like below.
    set objtextfile = objfso.opentextfile _
    ("c:\temp\aaaa.txt", forreading)
    j=0
    Do until objtextfile.atendofstream
    redim preserve arr123(j)
    arr123(j) = objtextfile.readline
    j = j+1
    Loop
    for each server in arr123
    chk_status = "command" &" "& server
    set objexecobject = objshell.exec(chk_status)
    'Here i am not sure how to proceed further to achieve what i described above.
    Next
    Can someone help me with this?
    -KAKA-

    Thank you for your response.
    So here is what i want to do.
    Query a database using odbc from my management server (odbc is configured and connection is tested) and based on the query it will result out few list of servers. then from the same management server i want to execute a command against all the resulted server
    (management server has a binary which can execute remote action). this remote action will get output back.
    then i would like to store the name of server and resulte output in a html file which should look like below.
    which i will later host on apache.
    YOu do not need to move things in and out of arrays and files.
    >>>> You are right but as i stated, i am not a core programmer and due to nature of my job i have to work on perl, shell and VB Script, apart from my actual technology so it becomes difficult to write it with perfection.
    I hope you understand.
    -KAKA-
    -KAKA-

  • Capture standard output of another command-line program, with characters not in current codepage

    I'm using ProcessStartInfo.RedirectStandardOutput and Process.BeginOutputReadLine to capture the standard output of another program (specifically,
    youtube-dl.exe) and save them into a string variable.
    However the result variable contains only usual characters of my language such as traditional Chinese and English letters; characters such as Korean or Latin letters with accents simply vanished.
    I File.WriteAllText-ed the result variable and checked the file using serveral text editors, so I'm sure they're lost, not that they exist and merely be un-display-able by console window.
    Plainly executing youtube-dl in Windows Command Prompt displays complete messages including these foreign characters.  
    My youtubeDL_process.OutputDataReceived is simply:
    (s, e) => { if(!string.IsNullOrWhiteSpace(e.Data)) this._filename = e.Data; }
    How to make the redirected standard output string with foreign characters complete, just like one directly generated in a command prompt?

    Try a different experiment of starting your second EXE:
    string exe =
    @"path to your EXE with arguments . . .";
    Process p =
    new
    Process
    StartInfo =
    UseShellExecute = false,
    RedirectStandardOutput = true,
    StandardOutputEncoding = Encoding.UTF8,
    FileName = "cmd.exe",
    Arguments = "/C chcp 65001 > null && " + exe
    p.Start();
    string output = p.StandardOutput.ReadToEnd();
    p.WaitForExit();
    Specify the full path in the exe variable, using quotation marks if it contains spaces.
    Then check the value of output.

  • Long (extended?) display output of 'ps' command

    Hi, all
    If the path of a command is long, the output is being cut of from the output of 'ps -ef' command. On HPUX, there is a 'x' option from ps for extended display format to fix the problem. From the man page of 'ps' of Solaris, I don't see similar option exist. Does anyone know similar option exist for Solaris? Thanks.

    Using '/usr/ucb/ps auxw' prints a wider output, truncated to a maximum of 132 characters.
    Using '/usr/ucb/ps auxww' prints the full command-line arguments with no truncation (something that /usr/bin/ps cannot do). This is fetched, if permissions allow, from /proc/<pid>/as.
    If the values in the columns are large enough they can collide. For example:
    $ /usr/ucb/ps aux
    USER PID %CPU %MEM SZ RSS TT S START TIME COMMAND
    user1 3132 5.2 4.33132422084 pts/4 S Feb 16 132:26 Xvnc :1 -desktop X
    user1 3153 1.2 2.93544414648 ? R Feb 16 21:45 gnome-terminal --s
    user1 16865 1.0 10.87992055464 pts/18 S Mar 02 42:46 /usr/sfw/bin/../li
    user1 3145 0.9 1.422216 7240 ? S Feb 16 17:37 metacity --sm-save
    user1 3143 0.5 0.3 7988 1568 ? S Feb 16 12:09 gnome-smproxy --sm
    user1 3159 0.4 1.425064 6996 ? S Feb 16 11:01 /usr/lib/wnck-appl
    This can make both reading and postprocessing the values quite difficult.

  • Getting the output of system commands in air

    Hello-
    Can someone explain how with flex and air one would run a
    system command and save the output to an array or string?
    Thanks.

    Running other programs, including system commands, is not
    supported by AIR at this time.

  • Bridge CS4 attempt to Refresh Preview or Save output causes crash in Mac OS 10.8.2

    Ever since installing Mountain Lion, I can no longer create contact sheets in Adobe Bridge CS4, which I was always able to do before installing ML. As soon as I press "Refresh Preview," or just try to SAVE the Output (PDF) without refreshing the preview, Bridge crashes with the  report below. This is on a MacPro 2.66 GHz Quad-Core Intel Xeon with 20 MB RAM, OS 10.8.2.  Ideas gratefully accepted!
    Process:    
    Adobe Bridge CS4 [36715]
    Path:       
    /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    Identifier: 
    com.adobe.bridge3
    Version:    
    3.0.0.464 (3.0.0.464)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [255]
    User ID:    
    501
    Date/Time:  
    2012-12-10 11:27:27.803 -0800
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:     
    103175 sec
    Crashes Since Last Report:      
    7
    Per-App Interval Since Last Report:  702 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                 
    B4E344BD-3EB9-8467-8B6F-58F7BB669CFF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    __TEXT            
    0000000000001000-0000000000cd8000 [ 12.8M] r-x/rwx SM=COW  /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                
    0x1f013730 PDFLInitFriends + 192
    1   com.apple.carbonframeworktemplate
    0x1e140594 Init() + 64
    2   com.apple.carbonframeworktemplate
    0x1e15efd8 ESInitialize + 120
    3   com.adobe.bridge3        
    0x003a4c90 VCUI_Terminate + 1632106
    4   com.adobe.bridge3        
    0x003a51d5 VCUI_Terminate + 1633455
    5   com.adobe.bridge3        
    0x003a41c3 VCUI_Terminate + 1629341
    6   com.adobe.bridge3        
    0x00371cb4 VCUI_Terminate + 1423246
    7   AdobeExtendScript        
    0x01dbafac ScScript::LiveObjectFunction::propConstruct(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, bool) + 328
    8   AdobeExtendScript        
    0x01d8c5b8 ScScript::RealEngine::makeObject(ScScript::ESVariant&, int, ScCore::BasicArray const*, ScScript::Object*) + 532
    9   AdobeExtendScript        
    0x01d236f7 jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1461
    10  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    11  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    12  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    13  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    14  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    15  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    16  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    17  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    18  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    19  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    20  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    21  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    22  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    23  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    24  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    25  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    26  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    27  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    28  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    29  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    30  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    31  AdobeExtendScript        
    0x01d331cb jsOpUnary::run(jsRunner&, ScScript::ESVariant&) const + 51
    32  AdobeExtendScript        
    0x01d2b1dc jsOpLogAndOr::run(jsRunner&, ScScript::ESVariant&) const + 232
    33  AdobeExtendScript        
    0x01d28412 jsOpIf::run(jsRunner&, ScScript::ESVariant&) const + 92
    34  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    35  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    36  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    37  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    38  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    39  AdobeExtendScript        
    0x01d331cb jsOpUnary::run(jsRunner&, ScScript::ESVariant&) const + 51
    40  AdobeExtendScript        
    0x01d28412 jsOpIf::run(jsRunner&, ScScript::ESVariant&) const + 92
    41  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    42  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    43  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    44  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    45  AdobeExtendScript        
    0x01d2372d jsOpCall::run(jsRunner&, ScScript::ESVariant&) const + 1515
    46  AdobeExtendScript        
    0x01d2a43d jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 601
    47  AdobeExtendScript        
    0x01d24d29 jsOpExprStatement::run(jsRunner&, ScScript::ESVariant&) const + 77
    48  AdobeExtendScript        
    0x01d2f450 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 288
    49  AdobeExtendScript        
    0x01d26c42 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 574
    50  AdobeExtendScript        
    0x01d5b677 jsRunner::run(ScScript::ESVariant&) + 203
    51  AdobeExtendScript        
    0x01d442bc jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 558
    52  AdobeExtendScript        
    0x01d8dc5b ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 825
    53  AdobeExtendScript        
    0x01d8ef14 ScScript::RealEngine::call(ScCore::Variant const&, ScCore::String const&, ScCore::BasicArray const&, ScCore::Variant*, int) + 434
    54  AdobeExtendScript        
    0x01d85ca3 ScScript::Object::notify(ScCore::Message&) + 1399
    55  AdobeScCore              
    0x01e9081f _broadcast(ScCore::Message&, ScCore::TSimpleArray<ScCore::Listener>&) + 155
    56  AdobeScCore              
    0x01e90950 ScCore::Broadcaster::broadcast(ScCore::Message&) const + 162
    57  AdobeScCore              
    0x01e85cd7 ScCore::LiveObject::invoke(ScCore::String const&, ScCore::Array const&, ScCore::Variant&, ScCore::Error*) const + 265
    58  com.adobe.bridge3        
    0x002bbadc VCUI_Terminate + 677302
    59  com.adobe.bridge3        
    0x002bbbd4 VCUI_Terminate + 677550
    60  com.adobe.bridge3        
    0x0033e0c3 VCUI_Terminate + 1211293
    61  com.adobe.bridge3        
    0x0026eefd VCUI_Terminate + 362967
    62  com.adobe.bridge3        
    0x00296cc5 VCUI_Terminate + 526239
    63  com.adobe.bridge3        
    0x0026fcb2 VCUI_Terminate + 366476
    64  com.adobe.bridge3        
    0x00274c3b VCUI_Terminate + 386837
    65  com.adobe.bridge3        
    0x0026f276 VCUI_Terminate + 363856
    66  com.adobe.bridge3        
    0x0026c303 VCUI_Terminate + 351709
    67  com.adobe.bridge3        
    0x0026c3d0 VCUI_Terminate + 351914
    68  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    69  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    70  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    71  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    72  com.apple.HIToolbox      
    0x960c3a01 SendControlHit(HIView*, OpaqueEventRef*, short, unsigned long) + 303
    73  com.apple.HIToolbox      
    0x960ba1c1 HIView::NotifyControlHit(OpaqueEventRef*, short, unsigned long) + 41
    74  com.apple.HIToolbox      
    0x960ba3d3 HIView::ClickInternal(CGPoint const&, unsigned long, void (*)(OpaqueControlRef*, short), OpaqueEventRef*, bool) + 259
    75  com.apple.HIToolbox      
    0x960ba5dd HIView::ClickSelf(OpaqueEventRef*) + 387
    76  com.apple.HIToolbox      
    0x9602b912 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2598
    77  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    78  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    79  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    80  com.apple.HIToolbox      
    0x9600cfda CallNextEventHandler + 84
    81  com.adobe.bridge3        
    0x0026c491 VCUI_Terminate + 352107
    82  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    83  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    84  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    85  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    86  com.apple.HIToolbox      
    0x9600f821 HIView::Click(OpaqueEventRef*) + 317
    87  com.apple.HIToolbox      
    0x9600f6d8 HIViewClick + 50
    88  com.apple.HIToolbox      
    0x961a5897 HandleClickAsHIView(OpaqueWindowPtr*, OpaqueEventRef*) + 156
    89  com.apple.HIToolbox      
    0x961a5e46 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 494
    90  com.apple.HIToolbox      
    0x961a54a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    91  com.apple.HIToolbox      
    0x9600da38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    92  com.apple.HIToolbox      
    0x9619ab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    93  com.apple.HIToolbox      
    0x96022594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    94  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    95  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    96  com.apple.HIToolbox      
    0x960557b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    97  com.apple.HIToolbox      
    0x96022a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    98  com.apple.HIToolbox      
    0x96021980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    99  com.apple.HIToolbox      
    0x96035855 SendEventToEventTarget + 88
    100 com.adobe.bridge3        
    0x003b7313 Mondo::CProcess::Execute(Mondo::CFlags<unsigned long>) + 857
    101 com.adobe.bridge3        
    0x003ab04a Mondo::CExecutable::RunExecute() + 78
    102 com.adobe.bridge3        
    0x003ab0cb Mondo::CExecutable::Run() + 39
    103 com.adobe.bridge3        
    0x0047f94a Mondo::CApplication::Main() + 58
    104 com.adobe.bridge3        
    0x0047ff06 main + 84
    105 com.adobe.bridge3        
    0x00002cc2 start + 258
    106 com.adobe.bridge3        
    0x00002be9 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x996829ae kevent + 10
    1   libdispatch.dylib        
    0x9a481c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib        
    0x9a4817a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0149638d 0x1465000 + 201613
    7   AdobeACE                 
    0x01495d85 0x1465000 + 200069
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib   
    0x9967f826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x9544b810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x09a32eff 0x9a03000 + 196351
    3   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    5   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab220 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x923310a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x95478492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9547868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x953c4b9b MPWaitOnQueue + 261
    6   com.adobe.CameraRaw      
    0x0e9ea8b8 0xe800000 + 2009272
    7   com.adobe.CameraRaw      
    0x0e9ea1b6 0xe800000 + 2007478
    8   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    10  libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338afc pthread_cond_wait + 48
    3   com.adobe.CameraRaw      
    0x0e845aea 0xe800000 + 285418
    4   com.adobe.CameraRaw      
    0x0eb2d2f4 EntryFM + 836980
    5   com.adobe.CameraRaw      
    0x0e9024a6 0xe800000 + 1057958
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338afc pthread_cond_wait + 48
    3   com.adobe.CameraRaw      
    0x0e845aea 0xe800000 + 285418
    4   com.adobe.CameraRaw      
    0x0ebbd118 EntryFM + 1426328
    5   com.adobe.CameraRaw      
    0x0e9024a6 0xe800000 + 1057958
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x005fa683 vio_timeout + 123585
    5   com.adobe.bridge3        
    0x005fa6e2 vio_timeout + 123680
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x005fa683 vio_timeout + 123585
    5   com.adobe.bridge3        
    0x005fa6e2 vio_timeout + 123680
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib   
    0x9967f8e6 mach_wait_until + 10
    1   libsystem_c.dylib        
    0x92337c1c nanosleep + 375
    2   com.adobe.bridge3        
    0x00388b0d VCUI_Terminate + 1517031
    3   com.adobe.bridge3        
    0x00388b6d VCUI_Terminate + 1517127
    4   com.adobe.bridge3        
    0x00367916 VCUI_Terminate + 1381360
    5   com.adobe.bridge3        
    0x00388f93 VCUI_Terminate + 1518189
    6   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    7   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x0063a3c6 vio_timeout + 385028
    5   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    6   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    7   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    8   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib   
    0x996818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x922ab289 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x92338b30 pthread_cond_timedwait + 47
    3   com.adobe.bridge3        
    0x005f9ff5 vio_timeout + 121907
    4   com.adobe.bridge3        
    0x00ac5f5e st_tz_names_entry::st_tz_names_entry() + 1986
    5   com.adobe.bridge3        
    0x005dd9d4 vio_timeout + 5650
    6   com.adobe.bridge3        
    0x0048ecd4 Mondo::CThread::EntryProc() + 18
    7   com.apple.CoreServices.CarbonCore
    0x9544ba7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib        
    0x922a6557 _pthread_start + 344
    9   libsystem_c.dylib        
    0x92290cee thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 32:
    0   libsystem_kernel.dylib   
    0x996820ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x922a904c _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x922a8e19 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x92290cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x1f01367e  ecx: 0x00000000  edx: 0x00002060
      edi: 0x00000000  esi: 0x1e140616  ebp: 0xbfffc308  esp: 0xbfffc290
       ss: 0x00000023  efl: 0x00010246  eip: 0x1f013730   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 6
    Binary Images:
    0x1000 -   0xcd7ff7 +com.adobe.bridge3 (3.0.0.464 - 3.0.0.464) <1B6A56FB-E649-4A04-B272-80FEA8737FEB> /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/MacOS/Adobe Bridge CS4
    0x13bf000 -  0x13fffef +AdobeARE (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1409000 -  0x142dff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1440000 -  0x145afff +AdobeBIB (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1465000 -  0x1572fff +AdobeACE (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1590000 -  0x182cfef +AdobeCoolType (1) /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app/Contents/Frameworks/AdobeCoolType.

    Still crashes the same way.
    Running a bit out of options I'm afraid.
    To be absolutely sure, you also did the 2.1 update for the Output Module:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4229
    Not sure the link works, sometimes they are country specific but otherwise check the downloads at Adobe.com
    Did you try it in a new user account just for testing. Sometimes check and repair permissions using Apple Disk Utility (or 3th party like Cocktail) will also help.
    And finally I should point you to the fact that due to a new upgrade policy from Adobe you have until 31 december this year to profit from the upgrade price for PS CS6, after the 1st of january 2013 you will have to pay the full license price for CS6.

  • Save output report as .pdf file in a folder

    Hi,
    I have to create a report which has output in .pdf format, and then save that .pdf in a particular folder, which is already there.. Can anybody help ?

    thanks a lot..
    one more ques on request priorities:
    Can we set the priority in Oracle Reports ? Say, for example, we have scheduled weekly reports ( around 40 - 50 reports) that runs 1st of every month at 9AM. While these reports are still running , we want to run an adhoc report , which canbe for last one week. Can we set the priority such that adhoc report is executed first ? Or is it something like they both will run parallel in different sessions ?
    I have posted this as a separate thread, but not getting replies..

Maybe you are looking for