Screenshot capture fail

I am facing a problem using the screen-capture option.
when I use cmdctrl+shift4 or 3 it actually makes the sound that it captured my screen but I can't find the captured file on my desktop.
I have also installed the "deeper" application and changed the path and set it to "my documents" instead of "desktop" but nothing happens either..!
I wish someone knows how to deal with that.
thank you!

Doesn't it save to the Clipboard?
Command-Shift-3/4 save to the Desktop.
Message was edited by: Rod Fryer

Similar Messages

  • Screen capture failed

    We recenty got a new iMac at our house, but there are a few problems. We went through the setup, and transfered all the files from our old iMac (an old flatpanel with the dome hard drive underneath the screen) which was running Mac OS X 10.3.9. Now there seems to be a problem with Screen capture.
    We also recently bought another family member a new iMac (22" iMac 2.2 GHz [?] 1 GB Ram w/ Mac OS X 10.5). That computer came with Mac OS X 10.4 installed, but came with a 10.5 CD. We did a normal setup without trasfering any files, and Screen capture works fine.
    Details:
    When I try to use screen capture, I get a message saying
    "*Screen capture failed*
    The attempt to take a screen capture has failed. The
    error is: 'Unable to create type string.'"
    Any solutions?

    Open Disk Utility, select your system drive (I think by default, they are named "Macintosh HD"), just select whichever drive is your OSX one, then click REPAIR PERMISSIONS.
    It will take some time to complete, particularly if you haven't done it in a while.
    Also, you should do this BEFORE and AFTER any installation that uses an INSTALLER.
    And like I said before, it's kind of a "Odd things 101". Lots of little weird behaviors can be remedied by using it.
    Beavis2084

  • Screenshot capture

    I have a question
    Is there a way to write a code and apply it for every component at once.
    I used the example from this link: https://aptframework.dev.java.net/gooey/screenCapture.html
    public final class ScreenShot {
        /** The logger object for this class. */
        private static final Logger log = Logger.getLogger(ScreenShot.class);
        private static JFrame frame = (JFrame)XXX.getBeanFactory().getBean(XXX); //Parent's frame data
         * Empty Constructor
         * This allows the static local variable to be used in other classes
         * as their reference.
        private ScreenShot(){
            //Empty Constructor
         * Captures a screenshot by pressing a hotkey button
         * and, then it automatically saved to the specific
         * location path (i.e. C:/Screenshot folder)
        public static void captureScreenShot(KeyEvent kL){
            if (KeyEvent.getKeyText(kL.getKeyCode()).equals("F12")){
                /* File Unique Identifer:
                 * Each screenshot's filename has its own unique identifer
                 * to avoid being overwritten. (i.e. Screenshot1.jpg)
                int numFile = 0;
                 * Check if the filename is existed.
                 * If true - incrementing the numFile
                StringBuilder fileName = new StringBuilder();
                File f;
                do {
                     * Labeling the screenshot capture with a file name
                    fileName.delete(0, fileName.length());
                    fileName.append("Screenshot");
                    fileName.append(numFile);
                    fileName.append(".jpg");
                    //Pathname location
                    f = new File("C:/" + fileName.toString());
                    ++numFile;
                } while (f.exists());
                 * The image is being saved and adds to the pathname location.
                try {
                    Robot robot = new Robot();
                    BufferedImage image = robot.createScreenCapture(frame
                            .getBounds());
                    String strFileName = fileName.toString();
                    ImageIO.write(image, getImageExtName(strFileName), f);
                } catch (AWTException awtEx) {
                    log.error("Failure: Unable to capture a screenshot of a window: \n"
                                    + StackTraceString.asString(awtEx));
                } catch (IOException ioEx) {
                    log.error("Failure: Unable to identify the screenshot's file extension: \n"
                                    + StackTraceString.asString(ioEx));
         * Obtains the extension of a filename
         * Returns value of String
        protected static String getImageExtName(String fullFileName){
            if(fullFileName.endsWith(".jpg")){
                return "jpg";
            throw new IllegalArgumentException(fullFileName);
    }Then I added this code to the parent that contains all components:
    As a local static variable in the parent frame class-
         * KeyListener:
         * Listens to the buttons that are pressed on the keyboard.
         * If the "F12" button is being pressed, then it automatically
         * activates the performance of capturing the Screenshot.
        private static KeyListener keyStrokeListener = new KeyListener(){
            public void keyPressed(KeyEvent kE){
                ScreenShot.captureScreenShot(kE);
            public void keyReleased(KeyEvent kE){
                //Ignore - Required to include this to activate KeyListener()
            public void keyTyped(KeyEvent kE){
                //Ignore - Required to include this to activate KeyListener()
        };Inside the construct of the parent frame class:
        public ParentFrame(.................................) {
            super("Parent Frame Window");
            addKeyListener(keyStrokeListener);       
        }It only works if the parent frame has the focus. If I open a child window from the menu in the parent window, then the child window get the focus and the Screenshot is not working at all unless I added to all components like this:
    component.addKeyListener(keyStrokeListener);

    you don't add the keybindings to the frame, instead add it to the rootPane (or layeredpane),
    but I missed the 'child window' bit from your first post. In that case you're probably better off
    using an awtEventListener.
    simple demo (for F12 key)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      public void buildGUI()
        JPanel p = new JPanel();
        JButton btn = new JButton("Show Dialog");
        p.add(btn);
        final JFrame f = new JFrame();
        f.getContentPane().add(p);
        f.setSize(400,300);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
        Toolkit.getDefaultToolkit().addAWTEventListener( new AWTEventListener(){
          public void eventDispatched(AWTEvent e)
            if(e.getID() == KeyEvent.KEY_PRESSED && ((KeyEvent)e).getKeyCode() == KeyEvent.VK_F12)
                System.out.println("F_12");
        }, AWTEvent.KEY_EVENT_MASK);
        btn.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            JDialog d = new JDialog(f);
            d.setModal(true);
            d.setSize(200,100);
            d.setLocationRelativeTo(f);
            d.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • Paste clipboard screenshot capture into applet

    hi,
    im trying to find a way to paste a clipboard screenshot into a java applet. these are the steps:
    1. user presses alt+prtscn
    2. user copies screenshot capture into clipboard (control + c)
    3. WHAT I NEED TO DO: take screenshot capture and paste it into the applet by pressing control + v.
    im not sure how i make a placeholder for the image, if someone could explain that. also, after i put the image in the applet i would like to be able to save it in jpg/gif format.
    if anyone can help me out, please do. i can be emailed/reached at "i aim robin" on aim or [email protected] to discuss.
    thanks for your time.

    I'm not sure if an unsigned applet can do this. To get the system clipboard containing the image, call Toolkit.getSystemClipboard(), but I'm not sure if applets are restricted from accessing it. If you can get it, you'll have to parse the bytes to create the image (unless you can find a third-party class to do it). In a Windows environment, the screenshot images are like 32-bit bitmaps with a shortened file header. Also, unsigned applets cannot save files, so they cannot create the jpg and gif files. I hope this helps at least some.
    -JBoeing

  • Validation of SAP End to End process,screenshots capture

    Mine is an automation SAP testing project using QTP 10.0
    We are supposed to send validation to onsite guys.
    We tried using HTML coding and also word document to capture the screenshots.
    Size will be very big for word document and for HTML the location was the BITMAP of the screens are saved are not accessible by onsite folks.
    Please help in finding the solution

    Hi Vikrant,
    Whenever you are integrating MDM with any SAP or NON-SAP system data flow takes place in the form of Files.
    If the data format are in the MDM understandable format then the data exchange can take place smoothly even without the use of XI,however if you are exchanging data in formats like Idocs or Bdocs which are not understandable by MDM then XI comes in the picture for data conversion and data monitoring purposes.
    If you data flow in the form of Idocs rae failing then you need to find the reason of failure by using Transactions to monitoring the status of the idocs for eg status 51 will point that there is a problem in the data.
    In this way you can test the integration of the scenario using XI in place.
    Note that creation of a master by entering into the ERP system like ECC is different than creaating the master through the form of an idoc.There are a lot of mandatory and optional like validations that may not be true in both the cases.
    So the only way is by monitoring the idocs flow nad faliure in the ECC system or XI system.
    Kindly refer the below thread:
    Re: Idoc failure
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Capture failed in iStore sales order processing.

    Hi,
    I am using oracle 11i, When I ran our credit card capture process in iStore ,4 out of 11 transactions failed to capture but I do not see any specific issue with them,what is the reason for this ,please reply me ,this is very very critical
    The following is the issue log while i am running concurrent Automatic Remittances Creation Program.
    +---------------------------------------------------------------------------+
    Receivables: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    ARZCAR_REMIT_SRS module: Automatic Remittances Creation Program (SRS)
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
         BATCH Date :
    Convert date parm
    prepay_flag: <N>
    Exception Code <0>
    Batch ID: <12839>
    ===============================================================
    Starting Program ARZCAR_REMIT_SRS for: E0090162
    Concurrent Request ID: 146657704
    Batch ID: <12839>
    Batch Name: 2248
    Argc 43
    ===============================================================
    Parameters passed in:
         Process Type: REMIT
         Create Flag: Y
         Approve Flag: Y
         Format Flag: N
         Batch Id:
         Debug Mode On:
         Transaction Date Low: 
         Transaction Date High:
         Due Date Low: 
         Due Date High:
         Transaction Number Low: 
         Transaction Number High:
         Document Number Low: 
         Document Number High:
         Customer Number Low: 
         Customer Number High:
         Customer Name Low: 
         Customer Name High:
         Customer Id:
         Site Low: 
         Site High:
         Site Id:
         Remittance Total From:
         Remittance Total To:
         Billing Number Low: 
         Billing Number High:
         Customer Bank Acc Num Low: 
         Customer Bank Acc Num High:
         Receipt Class ID 3000
         Payment Method ID 4000
         Batch Currency USD
         Batch Date 06-JUN-14
         Batch Gl Date 06-JUN-14
         Comments 
         Exchange Date 
         Exchange Rate 
         Exchange Rate Type 
         Media Reference 
         Remit Method Code STANDARD
         Remit Bank Branch ID 1
         Remit Bank Account ID 21848
         Remit Bank Deposit Number 
    ===============================================================
    ICX_PAY_SERVER profile value = [http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp]
    Current system time is 06-JUN-2014 11:42:33
    main>> arzcrm_Create_Remits
                arzlbt: Batch record locked
                arzpbs: Contents of batch_struct:
                        batch_id = 12839,  sob_id = 1001,  currency = USD
                        batch_applied_status = STARTED_CREATION
                        batch_date = 06-JUN-14,  j_batch_date = 2456815
                        gl_date = 06-JUN-14,  j_gl_date = 2456815
                        ex_rate = ,  ex_date = ,  ex_type =
                        rec_method_id = 4000,  confirmed_flag = Y
                        payment_type_code = CREDIT_CARD,   merchant_id = iPayix
                        creation_rule = PER_INVOICE
                        history_status = CONFIRMED
                        maturity_rule = EARLIEST,  lead_days = 0
                        remit_method_code = STANDARD
                        rm_accnt_id = 21848,  rm_branch_id = 1
                        rec_prt_prog_name = ,  rec_trans_prog_name =
                        rem_prt_prog_name = ,  rem_trans_prog_name = ARBRIBYFMCREDIT_CARD
                        receipt_inherit_inv_num_flag = Y
        arzcrm: Validated GL date
        arzcrm: Building main select stmt...
        arzcrm: Building main update stmt...
        arzcrm: Main select stmt:
    SELECT  /*+ ORDERED NO_EXPAND  INDEX (crh AR_CASH_RECEIPT_HISTORY_N6) */ cr.cash_receipt_id,
                    cr.amount
              FROM ar_cash_receipt_history crh,
                   ar_cash_receipts cr,
                   ar_receipt_methods rm,
                   ar_receipt_classes rclass,
                   ar_payment_schedules ps,
                   ar_receipt_method_accounts rma1,
                   ar_receipt_method_accounts rma2
             WHERE crh.status = 'CONFIRMED'
               AND crh.current_record_flag = 'Y'
               AND crh.cash_receipt_id = cr.cash_receipt_id
               AND NOT EXISTS
               (SELECT 1 FROM ar_lookups l
                WHERE NVL(cr.reversal_category,'~')    = l.lookup_code
                AND l.lookup_type           = 'REVERSAL_CATEGORY_TYPE')
               AND cr.receipt_method_id = nvl(:bs_receipt_method_id,cr.receipt_method_id)
               AND cr.currency_code = :bs_currency
               AND cr.cash_receipt_id = ps.cash_receipt_id(+)
               AND cr.receipt_method_id = rm.receipt_method_id
           AND cr.selected_remittance_batch_id is null
               AND (( cr.amount >= 0) OR
                    (cr.type = 'MISC' and cr.amount < 0))
               AND cr.set_of_books_id = :bs_sob_id
               AND (nvl(rm.payment_type_code,'~')<>'CREDIT_CARD' OR (rm.payment_type_code='CREDIT_CARD' AND cr.cc_error_flag IS NULL))
               AND rm.receipt_class_id = rclass.receipt_class_id
               AND (rclass.remit_method_code = :bs_remit_method_code
                   OR rclass.remit_method_code = 'STANDARD_AND_FACTORING'
            AND decode(nvl(rm.payment_type_code,'~'),'CREDIT_CARD','CREDIT_CARD','OTHER')
        = decode(nvl(:bs_payment_type_code,'~'),'CREDIT_CARD','CREDIT_CARD','OTHER')
               AND rma1.receipt_method_id = cr.receipt_method_id
               AND rma1.bank_account_id = cr.remittance_bank_account_id
               AND rma2.receipt_method_id = rma1.receipt_method_id
               AND rma2.bank_account_id = :bs_remit_account_id
               AND ((
                    (nvl(cr.override_remit_account_flag,'Y') = 'Y')
                    AND rma1.unapplied_ccid = rma2.unapplied_ccid
                    AND rma1.on_account_ccid = rma2.on_account_ccid
                    AND rma1.unidentified_ccid = rma2.unidentified_ccid
                   OR
                    (nvl(cr.override_remit_account_flag,'Y') = 'N')
                    and cr.remittance_bank_account_id = :bs_remit_account_id
                FOR UPDATE OF cr.selected_remittance_batch_id
        arzcrm: Main update stmt:
        UPDATE ar_cash_receipts
            SET selected_remittance_batch_id  = '12839',
                remittance_bank_account_id    = '21848',
                last_update_date              = sysdate,
                last_updated_by               = '35097',
                last_update_login             = '180570538',
                request_id                    = '146657704',
                program_application_id        = '222',
                program_id                    = '44198',
                program_update_date           = sysdate
            WHERE selected_remittance_batch_id is null
            AND cash_receipt_id = :cr_id_array
        arzcrm: Current system time is 06-JUN-2014 11:42:33
        arzcrm: Marking receipts...
        arzcrm: Current system time is 06-JUN-2014 11:42:34
                arzubtC: Set batch status to STARTED_APPROVAL
        arzcrm: COMMITTED WORK
                ( 11 Receipts Marked )
                ( 2056 Total Amount )
    main<< arzcrm_Create_Remits
    argc 43 worker number 43
    After setting the wkr num
    Worker Number 0 Total Workers 0
    Current system time is 06-JUN-2014 11:42:34
    main>> arzarm_Approve_Remit
    Batch Id 12839
    Locking the batches row            arzlbt: Batch record locked
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13280]
    Calling pmt_util for cr_id = 13280
               arzarm: Processing Receipt >>>>
        cr_id [13280], cr_amount [31.43]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50467]
         cc_receipt_number=[26665]
         cc_unique_ref=[FB2CB2D0BE0067F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[31.43]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13280
         cc_pmt_instr_exp       =[30-JUN-16]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50467]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 1
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13281]
    Calling pmt_util for cr_id = 13281
               arzarm: Processing Receipt >>>>
        cr_id [13281], cr_amount [918.86]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50487]
         cc_receipt_number=[26666]
         cc_unique_ref=[FB2CB2D0BE0167F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[918.86]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13281
         cc_pmt_instr_exp       =[31-OCT-15]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50487]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 2
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13282]
    Calling pmt_util for cr_id = 13282
               arzarm: Processing Receipt >>>>
        cr_id [13282], cr_amount [79.5]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50488]
         cc_receipt_number=[26667]
         cc_unique_ref=[FB2CB2D0BE0267F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[79.5]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13282
         cc_pmt_instr_exp       =[31-DEC-14]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50488]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 3
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13283]
    Calling pmt_util for cr_id = 13283
               arzarm: Processing Receipt >>>>
        cr_id [13283], cr_amount [16.05]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50508]
         cc_receipt_number=[26668]
         cc_unique_ref=[FB2CB2D0BE0367F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[16.05]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13283
         cc_pmt_instr_exp       =[31-MAY-15]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50508]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 4
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13284]
    Calling pmt_util for cr_id = 13284
               arzarm: Processing Receipt >>>>
        cr_id [13284], cr_amount [83.79]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50509]
         cc_receipt_number=[26669]
         cc_unique_ref=[FB2CB2D0BE0467F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[83.79]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13284
         cc_pmt_instr_exp       =[31-MAR-16]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50509]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 5
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13285]
    Calling pmt_util for cr_id = 13285
               arzarm: Processing Receipt >>>>
        cr_id [13285], cr_amount [156.19]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50510]
         cc_receipt_number=[26670]
         cc_unique_ref=[FB2CB2D0BE0567F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[156.19]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13285
         cc_pmt_instr_exp       =[31-JAN-16]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50510]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 6
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13286]
    Calling pmt_util for cr_id = 13286
               arzarm: Processing Receipt >>>>
        cr_id [13286], cr_amount [628.52]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50511]
         cc_receipt_number=[26671]
         cc_unique_ref=[FB2CB2D0BE0667F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[628.52]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13286
         cc_pmt_instr_exp       =[31-JUL-16]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50511]
               Credit Card Capture Status - S
               Status Code = [S]
               Status Code = [S]
    After Commit value of l_actual_rows : 7
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13287]
    Calling pmt_util for cr_id = 13287
               arzarm: Processing Receipt >>>>
        cr_id [13287], cr_amount [51.19]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50527]
         cc_receipt_number=[26672]
         cc_unique_ref=[FB2CB2D0BE0767F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[51.19]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13287
         cc_pmt_instr_exp       =[31-AUG-16]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50527]
               Credit Card Capture Status -
               Status Code = []
               Status Code = []
        PMT Error Location     = []
        Vendor Error Code     = []
        Vendor Error Message     = []
    Status Code = []
        arzarm: AR_AUTOREC_EXCEPTIONS inserts = 1
        arzarm: AR_CASH_RECEIPT_HISTORY updates = 1
        arzarm: AR_CASH_RECEIPT_HISTORY deletes = 1
        arzarm: AR_DISTRIBUTIONS deletes = 2
        arzarm: Auth/Capture did not succeed. Resetting the approval code
                Original Approval Code - 10.174.5.141-14664052C5F-19093D33-5BB7FC9B
    After Commit value of l_actual_rows : 8
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13288]
    Calling pmt_util for cr_id = 13288
               arzarm: Processing Receipt >>>>
        cr_id [13288], cr_amount [49.69]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50529]
         cc_receipt_number=[26673]
         cc_unique_ref=[FB2CB2D0BE0867F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[49.69]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13288
         cc_pmt_instr_exp       =[31-AUG-14]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50529]
               Credit Card Capture Status -
               Status Code = []
               Status Code = []
        PMT Error Location     = []
        Vendor Error Code     = []
        Vendor Error Message     = []
    Status Code = []
        arzarm: AR_AUTOREC_EXCEPTIONS inserts = 1
        arzarm: AR_CASH_RECEIPT_HISTORY updates = 1
        arzarm: AR_CASH_RECEIPT_HISTORY deletes = 1
        arzarm: AR_DISTRIBUTIONS deletes = 2
        arzarm: Auth/Capture did not succeed. Resetting the approval code
                Original Approval Code - 10.174.5.141-14664D8F064-2BE040E5-6C7D81C4
    After Commit value of l_actual_rows : 9
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13289]
    Calling pmt_util for cr_id = 13289
               arzarm: Processing Receipt >>>>
        cr_id [13289], cr_amount [12.66]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50528]
         cc_receipt_number=[26674]
         cc_unique_ref=[FB2CB2D0BE0967F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[12.66]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13289
         cc_pmt_instr_exp       =[31-AUG-15]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50528]
               Credit Card Capture Status -
               Status Code = []
               Status Code = []
        PMT Error Location     = []
        Vendor Error Code     = []
        Vendor Error Message     = []
    Status Code = []
        arzarm: AR_AUTOREC_EXCEPTIONS inserts = 1
        arzarm: AR_CASH_RECEIPT_HISTORY updates = 1
        arzarm: AR_CASH_RECEIPT_HISTORY deletes = 1
        arzarm: AR_DISTRIBUTIONS deletes = 2
        arzarm: Auth/Capture did not succeed. Resetting the approval code
                Original Approval Code - 10.174.5.139-14664855781-2C5FAA69-757411FE
    After Commit value of l_actual_rows : 10
        arzarm: COMMITTED WORK
    Checking the receipt method 1= CREDIT_CARD
    merchant ref = iPayix
    Checking the receipt method 2= CREDIT_CARD
        cr_id [13290]
    Calling pmt_util for cr_id = 13290
               arzarm: Processing Receipt >>>>
        cr_id [13290], cr_amount [28.85]
         cc_url=[http://eegebp.tcc.etn.com:8075/oa_servlets/ibyecapp?]
         cr_pay_server_order_num=[ASO50507]
         cc_receipt_number=[26675]
         cc_unique_ref=[FB2CB2D0BE0A67F2E044B499BA628CB6]
         cc_currency            =[USD]
         cc_price               =[28.85]
         cc_auth_type           =[authonly]
         cc_pmt_type            =[CREDITCARD]
         cc_pmt_instr_id        =[9000 **** **** ****]
         cc_cash_receipt_id        =13290
         cc_pmt_instr_exp       =[30-NOV-15]
         cc_merchant_ref        =[iPayix]
        Fetched Payment Server Order Number = [ASO50507]
               Credit Card Capture Status -
               Status Code = []
               Status Code = []
        PMT Error Location     = []
        Vendor Error Code     = []
        Vendor Error Message     = []
    Status Code = []
        arzarm: AR_AUTOREC_EXCEPTIONS inserts = 1
        arzarm: AR_CASH_RECEIPT_HISTORY updates = 1
        arzarm: AR_CASH_RECEIPT_HISTORY deletes = 1
        arzarm: AR_DISTRIBUTIONS deletes = 2
        arzarm: Auth/Capture did not succeed. Resetting the approval code
                Original Approval Code - 10.174.5.142-1465DB45548-4317D860-6C2E97B
    After Commit value of l_actual_rows : 11
        arzarm: COMMITTED WORK
                arzubt: Set batch status to COMPLETED_APPROVAL
      before call to MRC....
      after call to acct engine and mrc for remit...
        arzarm: COMMITTED WORK : 2
                ( 7 Receipts Remitted, Total Amount: 1914.34 )
    main<< arzarm_Approve_Remit
    prepay_flag: <N>
    Current system time is 06-JUN-2014 11:42:52
    main>> arzexe_Execution_Report
    prepay_flag: <N>
    SRW Parameters:
    P_PROCESS_TYPE=REMIT
    P_BATCH_ID=12839
    P_CREATE_FLAG=Y
    P_APPROVE_FLAG=Y
    P_FORMAT_FLAG=N
    P_REQUEST_ID_MAIN=146657704
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /opt/egapprod/ebpora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to:  /opt/egapprod/ebpora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_AMERICA.UTF8
    ORA-00979: not a GROUP BY expression
    S ==> ELECT    substrb(party.party_name,1,50)        C_CUSTOMER_NAME_rs,
    Report Builder: Release 6.0.8.27.0 - Production on Fri Jun 6 11:42:52 2014
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Enter Username:
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    11:42:33 :Auto Remittance Batch Generation
    11:42:33 :Auto Remittance Batch Generation
    11:42:34 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:39 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:39 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:39 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:43 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:43 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:43 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:47 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:47 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:47 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:48 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:48 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:48 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:49 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:49 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:49 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:50 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:50 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:50 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:51 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: S
    11:42:51 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:51 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:52 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: U
    11:42:52 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:52 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:52 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: U
    11:42:52 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:52 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:52 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: U
    11:42:52 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    11:42:52 :Auto Remittance: Calling ar_pmt_process_wrapper.Capture_Payment
    11:42:52 :Auto Remittance:AR_PMT_PROCESS_WRAPPER.Capture_PaymentReturn Status: U
    11:42:52 :Auto Remittance:Call to AR_PMT_PROCESS_WRAPPER .Capture_Payment
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Program exited with status 1
    arzexe: Cannot produce Execution Report
    arzexe: Error from fdprep - ARZCARPO
    main<< arzexe_Execution_Report
    =============================================================================
    main: EXCEPTIONS
          ps_id = 1631663         exception_code = ar_cc_capture_failed
          ps_id = 1631664         exception_code = ar_cc_capture_failed
          ps_id = 1631665         exception_code = ar_cc_capture_failed
          ps_id = 1631666         exception_code = ar_cc_capture_failed
    =============================================================================
    main<<CC Error Handling
    main>>CC Error Handling
    Current system time is 06-JUN-2014 11:42:52
    END OF ARZCAR
      Concurrent Request ID: 146657704
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PRINT   -------------+
    Printing output file.
                   Request ID : 146657704    
             Number of copies : 0    
                      Printer : noprint
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed successfully
    Current system time is 06-JUN-2014 11:42:52
    +---------------------------------------------------------------------------+

    Hello,
    Please open a new SR for the product Oracle Payments.   This is for payment processing issue and not for iStore cart nor order issue.
    Provide the following debug log outputs for analysis -
    A) Debug log for the Automatic Remittances -
      1. Login to System Administrator responsibility
      2. navigate Concurrent --> Program --> Define
         Query for Short Name = ARZCAR_REMIT_SRS
      3. Set Enable Trace = Yes (click the Checkbox)
      4. Click Parameters button and locate Parameter name ARZ_DEBUG_FLAG
      5. Set Display = Yes
      Save your changes
      Re-run the process, and upload the new log file generated.
    The top of the log should have Debug Mode On=Yes on the above is set.
    This will detail out all sql being processed.
    AND
    B) Provide the Payments debug log outputs -
          How to generate Debug Log Files for Oracle iPayment 11.5.10 (Doc ID 265330.1)
    Thank you,
    Debbie

  • Slightly OT: bios screenshot capture device

    Somebody here (or perhaps on the Framers list) asked about techniques to get good bios screenshots. For those who might be interested, I just came across a good example of screens, and a mention of the video capture device used.
    Image: http://www.hardocp.com/image.html?image=MTI5NDcxNTE1M1NNSTgwSDVodGFfM18yX2wuZ2lm
    Tool:
    Dan_D, forum editor, said:
    "They are taken with an old school DVC-80 S-Video capture device using an S-Video output on an NVIDIA graphics card. The AMD / ATI's produce inferior results via S-Video so I never use those for screen shots."
    http://hardforum.com/showthread.php?s=a8982caf7410523d9bd17933692b157f&t=1578842&page=2

    I don't believe any Windows (or DOS) screen capture app can take a capture at the bios stage, no.
    It would require a custom BIOS to do that, because all that is running is BIOS firmware during those screens.
    However; historically, BIOS supported the [PrntScrn] key on the keyboard, and would dump a plain text copy of the current BIOS screen to the parallel (LPT) port.
    What happens on machines lacking LPT is unknown to me. I have even less clue on what EFI and UEFI implementations do with PrntScrn, if anything.
    The usual solution when you need an exact screen image is to use a digital camera.
    Use a shutter speed of 1/30 second or slower, to avoid any screen refresh or black-screen-insertion artifacts.
    Use whatever focal length provides the lowest pincushion or barrel distortion, usually telephoto.
    Use a tripod. Be on-axis. Use the self-portrait timer if you don't have a cable release.
    Set a custom white balance using an all-white screen.
    Since BIOS displays are 640x480, any Mpixel count over 1Mp will do to avoid sampling artifacts when you crop, de-rotate, resize or otherwise morph the image to the final 640x480.

  • Prevent screenshot capture

    How to block capturing screen-shot from within a Java Swing program?

    jverd wrote:
    morgalr wrote:
    It's not transportable across hardware, BIOS, nor may it be across versions of the OS. There are many "solutions" that are not impleneted comercially because they are "workably impossible", or in other words, just a pain nightmare to keep running.And even if you can stop a screenshot, will that stop remote control or desktop sharing tools, like RDP, VNC, logmein.com, Skype's desktop share, GoToMeeting, and so on, from transporting the display to some other computer, which cannot be prevented from taking a screenshot of software it has not installed?Yep, that is what meant when they say it's impossible to keep your software completely safe--there is no finite way of doing it, especially considering the ever changing state of technology. You may think you've covered all the bases, but then all of a sudden there are 100 more bases to cover. That part of the big puzzle that can be worked on and maintained, provides a multibillion dollar industry with job security.

  • Build & Capture TS (MDT) - Capture fails at PrepareOS (sysprep) with "Boot Image package not found"

    Hi all,
    I'm searching for a while on this one now... I'm unable to perform a "ZeroTouch" Build & Capture of my reference machine to get a master image, with Capture Media it seems to be working, but this is a manual step...
    While running a W7SP1 Build & Capture task sequence, the "Capture the reference machine" group fails at "PrepareOS". The step before "PrepareOS",  "Prepare ConfigMgr Client" runs without any issues.
    The only error I can find, shows up in the report "OSD - history of a TS":
    ... 0005 that is either already released or we have not connected to it.
    BootImage::ResolveImageSource( pszPackageId, sImagePackageSourcePath, sImageSourcePath), HRESULT=80070002 (e:\qfe\nts\sms\framework\tscore\bootimage.cpp,732)
    TS::Boot::BootImage::StageBootImage(sPkgID), HRESULT=80070002 (e:\nts_sccm_release\sms\client\osdeployment\prepareos\prepareos.cpp,917)
    PreStageWINPE(m_bDebug), HRESULT=80070002 (e:\nts_sccm_release\sms\client\osdeployment\prepareos\prepareos.cpp,1363)
    pCmd->Sysprep(bActivate, bMsd), HRESULT=80070002 (e:\nts_sccm_release\sms\client\osdeployment\prepareos\main.cpp,270)
    De-Initialization successful
    Exiting with error code 2
    sending with winhttp failed; 80072ee2
    SendResourceRequest() failed. 80072ee2
    Download() failed. 80072ee2.
    Boot Image package not found.
    he system cannot find the file specified. (Error: 80070002; Source: Windows)
    Failed to pre-stage WINPE image, hr=0x80070002
    Unable to sysprep the machine, hr=80070002
    Sysprep'ing the machine failed, hr=80070002
    I've searched the smsts.log file hundreds of times for errors, nothing there... 
    Can anyone give me a clue or just something...? I really don't know what my next step, to make this work, could be...
    Thanks!

    The error Torsten pointed out gave me some clue... After much digging around on the web, I've stumbled upon this
    article which led me into adding the following TS-variables:
    SMSTSDownloadRetryCount: 5
    SMSTSDownloadRetryDelay: 15
    It seems to be working now on all types of hardware...
    Case closed, thank you for the assistance! 
    Let's hope this article can save someone a couple of days... :)
    Wesley

  • Win7 capture failing at WinPE 0xc000000d

    Hello
    I currently have multiple Win7 x64 virtual machines that I use for capturing at the start of each year. I currently have an issue where no of them will capture, giving the same error.
    I run the litetouch.vbs on the virtual machine like I have always done. I complete the wizard, choose the Capture task sequence I've set up and used previously, fill in my credentials and name the .wim that will be created. The wizard then finishes and the
    lite touch process starts. It gets to the point where the system restarts and goes to boot into WinPE for the image to capture. It's a black screen with a white bar with a message above saying "Windows is loading files..."The issue appears once the
    system has completed the loading phase and is about to boot into the WinPE environment.
    The error that occurs is below:
    Windows failed to start. A recent hardware or software change might be the cause. To fix the problem:
       1.Insert your windows installation disc and restart your computer.
       2.Choose you language settings, and then click "next"
       3. Click "Repair your computer."
    If you do not have this disc, contact your system administrator or computer manufacturer for assistance.
       Status:0xc000000d
       Info: The boot selection failed because a required device is inaccessible.
    I can't recall any changes I've made on my server that could relate to this. I have made sure permissions are correct and that the share is configured correctly. This message comes up on all VM's I have so it is a server side issue and not a individual VM
    issue.
    If I select enter, I'm prompted to choose between 2 operating systems, a "Ramdisk Device Options" and a "Windows 7" option. The Ramdisk just loops me back to the white bar and loading of files and the Windows 7 option starts to boot back
    into the operating system.
    Any help would be appreciated as I'm out of ideas.
    Thanks
    Beau

    Thanks for the reply DiWuNewFolder
    I'm currently running my WDS setup from a Server 2012 R2 VM. I've increased the memory for the VM I'm trying to capture to 8GB but it still produces the same error.
    I've had a look at the LiteTouchPE_x64.iso file and it is "2.08 GB (2,243,663,872 bytes)". Once I have updated the boot image inside the WDS server, the expanded size is 7941MB. If this is an issue, how do I reduce the PE image size?
    I had been looking through this forum for a solution and in another thread someone mentioned mounting the LiteTouchPE_x64.iso directly to the VM from Hyper-V, which I did and I was able to complete the capture of the VM this way. After the VM sysprep'ed,
    it would restart and boot off the CD I mounted. It looked like it normally does so I'm not sure what this points to exactly.

  • How do I find lost photos after Image Capture failed to import them to iPhoto?

    im having this problem exactly .... http://hints.macworld.com/article.php?story=20101215095521610
    i chose to delete after import, like a wise guy, thinking nothing was going to happen and now my photos are not in my iPhoto libary... ive gone through all my images and i cant find them...
    i used image capture to put all my photos into iphoto from my iphone 4 before i bought my 4S and i didnt back anything up, thinking i was fine...
    when i went to iphoto they werent there, so i tried to quit iphoto and, as i did, it said my library was updating about 300+ photos, so i was like 'oh all i needed to do was restart iphoto'... but it was still a no-go, they still werent there...
    i restarted my computer, looked at other peoples answers, and i just cant find them in any folder or anywhere....... and i cant find the folder from the link i posted... very tired and fustrated. i need help please : (

    I don't think it can be done from within iPhoto but there's a way you can do it from outside. First download and launch QPict. Then do the following;
    1 - open your iPhoto Library folder and type Command-F.
    2 - in the search window create these two search criteria:
    a - Kind is Folder
    b - Name contains Original
    3 - In the search results window click on the size column to separate the empty folders from those with files in them.
    4 - select all of the folder that are not empty and drag into the open window of QPict.
    That will open the original files in QPict so you can view them there and compare to those in iPhoto. Just remember do not move any of those folders out of the iPhoto Library folder. Just move them into the open window of QPict.
    G4 DP-1G, 1G RAM, 22 Display, 2-80G HD, QT 7.0.3P   Mac OS X (10.4.3)   Canon S400, i850 & LIDE 50, Epson R200, 2G Nano

  • Live Cam Video IM Pro - Photo Capture Fails

    I can record video just fine w/the cam center software, but if I attempt to do a Photo Capture, get an error, "Cannot save photo..."? What's up w/that?

    Hi again, Ok I don't know what operating system that your using but I use vista home. I have sorted out the problem and heres how
    1 Uninstalled the software completly.
    2 Restart the pc.
    3 Reinstalled the software without the drivers.
    4 Pulled off vista drivers from creative list of update drivers.
    5 Restarted pc.
    6 Plugged in web cam and windows installed new driver.
    7 Openned up cam manager and hey presto it works.
    It took alot of messing around as I am a new user to vista after upgrading from xp, I hope this helps you to sort out your problem good luck

  • Video Screenshot Capture

    I need to capture a frame (pressing a button on stage) of a
    streming video coming from webcam in local system, and send this
    image to a DB when user confirms.
    How does AS do this?
    Is it possible in AS2?
    Thanks in advance!

    Simply didn't know wether it was possible in AS2 and/or AS3,
    and did not find a section for asking it once in spite of AS
    version.
    Than You

  • MDT 2012 Win7 x64 capture fails - boot loop

    Hi everyone,
    I'm pretty new to MDT and having a problem capturing a Win7 x64 reference image.
    It seems to start out fine doing the Sysprep and so on, but then it has to restart the computer and after that it goes into a boot loop. After this, I have been forced to format and reinstall Win7 on the computer. This picture shows what it loops through
    in about 20 seconds - and it shows nothing else than what's on these pictures :)
    www.jaded.dk/boot_loop.png
    I have been Google'ing alot, but can't find any post with the same issue, since most other get an error msg which I dont.
    Here is some info about the setup.
    I'm deploying the task sequence locally using these commands:
    net use * \\mdtserver\DeploymentShare$ /user:domain\username
    cscript \\mdtserver\DeploymentShare$\Scripts\LiteTouch.wsf
    Server running MDT 2012 U1 - Win server 2008 R2, 64 bit
    The laptop on which i'm trying to capture the ref img is a HP Elitebook 8470p. It is fully patched with windows updates and I have installed a few apps like Office 2010, flash player, reader etc.
    The "Rules" on my MDT Workbench is like this:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    SkipProductKey=YES
    SkipComputerBackup=YES
    SkipBitLocker=YES
    SkipTimeZone=YES
    SkipLocaleSelection=YES
    InputLocale=0406:00000406
    KeyboardLocale=0406:00000406
    KeyboardLocalePE=0406:00000406
    SystemLocale=0406:00000406
    UILanguage=0406
    UserLocale=0406:00000406
    My task sequence looks like this:
    www.jaded.dk/task_seq.png
    I don't know where to find a log of the capture, to get a hint of what has gone wrong.
    Hope you can help me out here :) And please let me know if you need more info.
    Thanks
    Morten

    Thank you both for answering.
    ccatlett_sogeti:
    I didn't seem to have Windows Deployment Services installed on my server. I just installed it and added WinPE boot files as bootimage according to this guide: http://blogs.technet.com/b/manojnair/archive/2011/11/23/exploring-mdt-2012-beta-2-part-6-of-10-integrating-mdt-2012-beta-2-with-windows-deployment-services-wds.aspx
    Is that correct?
    Keep in mind that I don't use PXE at the moment, if that makes any difference :)
    David:
    I will try to add SLShareDynamicLogging. I set it like this - hope it's correct:
    SLShareDynamicLogging =\\MDTSERVER\DeploymentShare$\Logs\%ComputerName%

  • SOLVED!!! - MDT 2013/Windows 8.1 Sysprep & Capture Fails

    I'm running a basic Client Task Sequence that installs the OS, installs a few applications/drivers and then should Sysprep and Capture the image.  Everything works fine until after the Sysprep.  The machine reboots but does not reboot into the
    PE environment.  Instead it reboots to the local disc and the machine runs the initial OOBE setup.
    My BDD.log file can be found @ 
    https://dl.dropboxusercontent.com/u/14521312/BDD.log
    I see what look like some BCDEdit errors being returned but I'm not sure what they mean.
    If anyone can help I would greatly appreciate it.  I have to get 30 machines out yesterday.
    EDIT:  REPLACED BDD.LOG

    Lets try a disk format first.. I still use the old Win98 fdisk utility :)
    Wipe all drives clean and then re-run it...
    I will do that but is that not already happening at this stage of the Task Sequence?
    Free Drive Letter(s): D: E: F: G: H: I: J: K: L: N: O: P: Q: R: T: U: V: W:
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
    New ZTIDisk : \\MININT-DPLVH5K\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
    Found Disk Index: 0   size: 128034708480
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
    Disk Index: 0   size: 128 GB ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    This is an EFI machine, therefore we will need a Boot Partition.
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
    bCreateBootPartition = True ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Configuring Disk Alignment ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    No Disk Alignment variables specified, alignment not updated.
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
    About to run command: Diskpart.exe ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Command has been started (process ID 1480) ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + RESCAN ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + LIST DISK ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + LIST VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + REM Move Drive C: to a diffrent drive letter.
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + Select volume C: ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + Assign Letter=W: ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + SELECT DISK 0 ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + CLEAN ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + CONVERT GPT NOERR ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Create an uEFI/GPT Boot Partition set. V: ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + CREATE PARTITION PRIMARY Size=300
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + FORMAT QUICK FS=NTFS LABEL="Windows RE tools"
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + ASSIGN LETTER=U ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + gpt attributes=0x8000000000000001
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + DETAIL PARTITION ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + DETAIL VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + CREATE PARTITION EFI Size=499
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + FORMAT QUICK FS=Fat32 LABEL="System"
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + ASSIGN LETTER=V ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + DETAIL PARTITION ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + DETAIL VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + CREATE PARTITION MSR SIZE=128
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + DETAIL PARTITION ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + DETAIL VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + REM -------------- ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + REM Partition 0 ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
       Partition(0): 100 % ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Size is Empty: Expand to remaining space. ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
       Size:  [ isEmpty = True] ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + Create Partition Primary ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Do not mark a 2nd partition active. ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + Assign letter=C: ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
    Property OSDisk is now = C: ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + FORMAT QUICK FS=NTFS LABEL="OSDisk"
    ZTIDiskpart 8/7/2014 8:13:16 AM
    0 (0x0000)
      Console + DETAIL VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + DETAIL PARTITION ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + LIST PARTITION ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + LIST VOLUME ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)
      Console + EXIT ZTIDiskpart
    8/7/2014 8:13:16 AM 0 (0x0000)

Maybe you are looking for

  • Creating pdf from fdf in browser stopped working

    Hi! We have a webstore and we send info to fdf file which then opens as PDF file in the browser window. This worked for a long time but few weeks ago the PDF began opening with empty fields. Any idea what caused this? Some update? Any fix? Thank you

  • How can I send feedback about Freedome by e-mail

    I'm trying to send feed-back to Freedome by e-mail and I get following error message: "Sending e-mail failed. Could not perform this operation because the default mail client is not properly installed." - How can I properly install default mail clien

  • Regarding email & SMS in alert management

    How can we send emails & SMS on alert. Do we need to configure anything specially for that? Thanks in advance, Jona

  • My mini loses the mouse cursor when it goes to sleep

    Since I upgraded to OS X 10.7, my MAC mini loses the mouse curson when it goes to sleep. I am able to use the mouse to "awaken" the system and get the home screen, but the system will not display the mouse cursor. The only thing thast will recover th

  • Recording Failed Technical Fault 10 (28)

    I've read similar posts but there doesnt seem to be a resolution. My 2TB is two months out of warranty, and now all of a sudden 8 out of 10 recordings are failing with Technical Fault 10(28). On demand works fine. I've upgraded the software and done