How can I make recovery records when each time I try I'm us difficulties

Pavilion g7 windows7 64-bit

Hello

Is your laptop still under warranty? -You can check the status of your warranty here.

If this is the case, I would contact HP (the telephone number can be found on the corresponding link below) and explain that the Recovery Media Creator is unable to create a viable set of recovery disks and ask them to send you a free replacement set.

If you live in the United States, contact HP here.

If you are in another part of the world, begin here.

Kind regards

DP - K

Tags: Notebooks

Similar Questions

  • How can I make the recorder online flash

    How can I make the recorder online flash

    Like this http://demo.kcly.com/MicRecord/

    See here: http://www.bytearray.org/?p=1858

  • How can I make this update, when I have two records (a primary key, no seq)

    How can I make this update in pl\sql
    Below is the table with data
    CREATE TABLE INSERT_TE
    ( 
    PIDM        VARCHAR2(8), 
    FORM_ID     VARCHAR2(2),
    TEACHER     VARCHAR2(30)
    )
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '1106651', 
    'TE',
    'Teacher, Alber Howard' 
    from dual
    commit;
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '1106651', 
    'TE',
    'Teacher, Alber2 ' 
    from dual
    commit;
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '2321241', 
    'TE',
    'Teacher, Silly Billy ' 
    from dual
    Commit

    You're going to end with something like this: in a cursor...
    PIDM     FORM_ID     TEACHER
    1106651     TE     Teacher, Alber Howard
    1106651     TE     Teacher, Alber2 
    2321241     TE     Teacher, Silly Billy
    so I need to update a table

    If there is only one file like this 2321241 teacher YOU, Billy Silly
    no problem I'm
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'
    But if there's a PIDM (pk) with two records
    PIDM FORM_ID TEACHER
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 
    I need to make 2 updates (notice the rec1 sarchkl_admr_code AND for the firs and rec2 during the second
    The first record should update the table when the condition is sarchkl_admr_code = "REC1" and the second disc with the
    condition is sarchkl_admr_code = "REC2.
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'
    and
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC2'
    I do this in pl\sql, I don't have a sequence in the INSERT_TE table, how do I know that the first record in
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 
    updated a rec1 and the second updates when sarchkl_admr_code = "REC2."

    I guess I can create a sequence, but I'm inserting a table of a select statement, I get the error message
    ORA-02287: sequence number not allowed here, when I try to do the following:
     
     INSERT INTO SYTEACH
    ( 
    SYTEACH_PIDM,
    SYTEACH_ID,
    SYTEACH_TEACHER,
    SYTEACH_SEQ
    )
    SELECT   
          DISTINCT
          spriden_pidm, 
          sarchkl_admr_code, 
          szsform_form_id, 
          szsform_schl_off_type||', '||szsform_schl_off_firstname||' '||szsform_schl_off_lasttname teacher,
           SZSFORM_SEQ.NEXTVAL
            FROM   saturn_midd.szsform, saturn.spriden, saturn.sarchkl
           WHERE       spriden_ntyp_code = 'CAPP'
                   AND szsform_common_app_id = spriden_id
                   AND spriden_pidm = sarchkl_pidm
                   AND sarchkl_admr_code = 'REC1'
                   AND szsform_form_id = 'TE' 
     
    What is the simple way to make this update...

    Hello

    you said:

    >
    But if there's a PIDM (pk) with two records

    PIDM $FORM_ID TEACHER
    TE 1106651 teacher, Alber Howard
    1106651 TE, Alber2 Professor
    >

    Loc PKS are unique! (otherwise we don't call them pk)

    For your table, you can set a single like this:
    PIDM column + a sequence. (new heading):

    ALTER TABLE INSERT_TE ADD(TEACH_SEQ NUMBER)
    /
    
    UPDATE INSERT_TE x
       SET TEACH_SEQ =
              (SELECT n
               FROM   (SELECT ROWID rid,
                              ROW_NUMBER() OVER(PARTITION BY pidm ORDER BY TEACHER) n
                       FROM   INSERT_TE t) s
               WHERE  s.rid = x.ROWID)
    
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard      1
    1106651     TE     Teacher, Alber2       2
    2321241     TE     Teacher, Silly Billy      1
    

    I need to make 2 updates (notice the rec1 sarchkl_admr_code AND for the firs and rec2 during the second
    The first record should update the table when the condition is sarchkl_admr_code = "REC1" and the second record with the condition is sarchkl_admr_code = "REC2.
    >

    not normally.

    but you can do (now)

    select PIDM, FORM_ID, TEACHER, 'REC'||TEACH_SEQ TEACH_SEQ from INSERT_TE
    
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard     REC1
    1106651     TE     Teacher, Alber2      REC2
    2321241     TE     Teacher, Silly Billy      REC1
    

    and use the last column to update you...

    Published by: user11268895 on August 20, 2010 14:01

  • How can I stop CHKDSK to start each time that I boot?

    Under XP, SP3.

    I tried a fix and received a message that said it was only the relelvant to SP2 or an earlier version.

    CHKDSK runs when you restart either because you have scheduled to run at the next reboot or because your hard drive has been marked "dirty".

    Maybe engaged Microsoft Support Engineer "experts" don't know that you don't have to change the registry to remove a regular chkdsk pending.

    To delete all waiting for the command chkdsk scheduled, click on start, run and enter in the box:

    chkntfs /d

    Click OK and you will see all the messages, but which erases all orders pending regular chkdsk.

    XP will automatically check the "dirty bit" on all your volumes when it restarts.  If XP detects a volume that has been marked "dirty", it will run a chkdsk with correction of errors on the volume afflicted to try to clear the dirty bit and you will see a message indicating whether to start XP.

    A volume could be marked 'dirty' after something like a cut of current, power failure, aborted restart or an abnormal termination.  One of these events?

    You can query the dirty bit on a volume from the command prompt window.

    Click Start, run and enter in the box:

    cmd

    Click OK to open the command prompt window.

    For example, to query the bit of impurity on drive C, type:

    fsutil dirty query C:

    The sample output:
    Volume c is dirty
    Volume C: is dirty

    Is the volume of your sale or it is not dirty?

    The only thing that can clear the dirty bit is a success running chkdsk with error correction, sometimes you need to run it more than once, and sometimes that does not work and you will need see if running chkdsk with the XP Recovery Console error correction can clear the dirty bit.

    If you want to do this, we need to learn more about your system:

    Unfortunately, MS Answers forums does not prompt for any information system when a new question is asked, so we know almost nothing about your system.

    Not knowing the basic information a problem prolongs the frustration and the agony of these issues.

    Please MS Answers, continue to make solving simple problems as frustrating and a lot of time as possible.

    Provide information on your system, the better you can:

    What is your system brand and model?

    What is your Version of XP and the Service Pack?

    Your system's disks IDE or SATA drives?

    Describe your current antivirus and software anti malware situation: McAfee, Symantec, Norton, Spybot, AVG, Avira!, MSE, Panda, Trend Micro, CA, Defender, ZoneAlarm, PC Tools, Comodo, etc..

    The question was preceded by a loss of power, aborted reboot or abnormal termination?  (this includes the plug pulling, buttons power, remove the battery, etc.)

    The afflicted system has a working CD/DVD (internal or external) drive?

    You have a genuine XP installation CD bootable, which is the same Service as your installed Service Pack (this is not the same as any recovery CD provided with your system)?

    If the system works, what do you think might have changed since the last time it did not work properly?

  • How can I disable camera shutter sound each time something supported?

    I get a type of sound camera shutter when pages like Google or hotmail, or any page 'active', upload pictures on Web sites for example. Sometimes when things are moving quickly, it becomes a cascade of distortion of the sound, like a loud sizzle or worse. You can turn down the sound with the help of his usual device, but then of course you can not listen to any music or something else besides. It is extremely annoying, and now that I have synced my phone with my office they both the same problem. I checked all the settings and can't find a way to disable. I don't know exactly what is triggering, but it seems that when something is in charge.
    I use firefox 18.0.2 on a Mac running Snow Leopard 10.6.8. Is there anything else I can tell you?

    If it works in Firefox Safe mode and then disable all extensions (Tools > Modules > Extensions) and then try to find out who is causing by allowing an extension at a time until the problem reappears.

    Close and restart Firefox after each change through "file > exit ' (Mac: ' Firefox > leave";) Linux: "file > exit ')

  • How can I make cela a 2 minute timer?

    package {}

    import flash.display.MovieClip;

    import flash.events.TimerEvent;

    import flash.text.TextField;

    import flash.utils.Timer;

    import flash.text.TextFormat;

    public class timer2 extends MovieClip {}

    private var textfield:TextField;

    public function timer2 (): void {}

    var: County: uint = 60;

    var myTimer:Timer = new Timer (1000, count);

    myTimer.addEventListener (TimerEvent.TIMER, Countdown, false, 0, true);

    myTimer.start ();

    TextField = new TextField();

    textfield.defaultTextFormat = new TextFormat ("Arial", 24, 0xff0000, true);

    TextField.x = 30;

    TextField.y = 60;

    TextField.Text = String (count);

    addChild (textfield);

    }

    private void countdown(e:TimerEvent):void {}

    TextField.Text = String (parseInt (textfield.text) - 1);

    }

    }

    }

    I have here a timer 1 min, what I want is a timer for 2 min with the format from 02:00
    can someone help me? Thnx in advance...

    package {
    
        import flash.display.MovieClip;
        import flash.display.Sprite;
        import flash.events.TimerEvent;
        import flash.text.TextField;
        import flash.text.TextFormat;
        import flash.utils.Timer;
    
        public class Timer2 extends Sprite {
    
            private var textfield:TextField;
            private var count:uint = 120;
    
            public function Timer2():void {
                var myTimer:Timer = new Timer(1000, count);
                myTimer.addEventListener(TimerEvent.TIMER, countdown, false, 0, true);
                myTimer.start();
    
                textfield = new TextField();
                textfield.defaultTextFormat = new TextFormat("Arial", 24, 0xff0000, true);
                textfield.x = 30;
                textfield.y = 60;
                textfield.text = format(count);
                addChild(textfield);
    
            }
    
            private function countdown(e:TimerEvent):void {
                textfield.text = format(--count);
            }
    
            private function format(n:uint):String {
                return Math.floor(n/60) + ":" + (n % 60 < 10 ? "0" + n % 60 : n % 60);
            }
        }
    }
    
  • When I get e-mails, printing is so so small I can barely read. How can I make the biggest impression

    When I open my emails to read, printing is so tiny that I can hardly read them. How can I make the biggest impression?

    Hello
    Try to view/Zoom/full Zoom In (ctrl + +).

  • I have an iMac (2015).  When I open Garageband, there are only two buttons on the control bar, play and stop.  No record button, rewind or ff.  Where are they and how can I make it appear?

    I have an iMac (2015). When I open Garageband, there are only two buttons on the control bar, play and stop. No record button, rewind or ff. Where are they and how can I make it appear?

    Try to enlarge the GarageBand window by dragging the corners of resizing.

    If she looks like this, your window is small:

    You can also try to click the double arrow at the end of the toolbar to reveal more options.

  • How can I make the menu title of a different color when it is horizontal Spry menu menu?

    How can I make the menu title of a different color when it is horizontal Spry menu menu?

    Dreamweaver CS5.5

    Apple OS X.6.8

    Display of the site to: http://Dorsay-Easton-Indian-law.com/staging/index.html

    Steps to follow:

    1. click on the link to land on the home page

    2 link see Home in the Spry horizontal navigation menu

    Real:

    Title of the home menu is the same color as all the others.

    Expected:

    The title of the active menu is color: #FFC.

    I was hoping that a: active would give me this feature, but it's not how it is described. All suggestions are welcome!

    The tag BODY nothing that I tried in the editable model. This is why I wonder how to disconnect the model individual pages. Adding an ID to each body tag is a condition sine qua non of the how-to page that you provided.

    You are not theeditable in a template tag.

    You are the attributes of theeditable tag.

    Do not unplug the model child pages.

    Specify editable tag attributes in a template

    http://help.Adobe.com/en_US/Dreamweaver/CS/using/WScbb6b82af5544594822510a94ae8d65-7aa3a.h tml

    In the model:

    1. Select ittag (in the tag selector, or click inside the)tag in Code view)
    2. Modify > templates > make attribute editable
    3. Select the code in the drop down attribute
    4. If there is no ID attribute then click Add and type the ID in the next dialog box
    5. Attribute: ID
      Check the box 'Make attribute editable '.
      Enter anything in the field of the default label for example foo
      Ok
    6. Dreamweaver will change thetag to read
    7. The ID is now editable
    8. Save the model and update the child page

    In each page of the child:

    1. Edit > properties of the model
    2. Select the id attribute in the list (it's probably the only one listed)
    3. Change its name in the box to any name matches your CSS rule for the active state of the page
    4. Ok
    5. Save
    6. Download
  • How can I make the popup with empty fields and create new record?

    I would use a popup create new record.
    I created an af:popup drag and drop a data control VO in jsff. Then, I created a button and place an af:showPopupBehavior. I was able to pop-up window by clicking on the button.
    However, the window filled with information from the record 1. and when I select a record in the table and click on the popup, the popup is filled with this record.
    How can I make the popup with empty fields and create a new record by recording the popup?
    Thank you

    Hello

    You must call the CreateInsert for the underlying ViewObject operation when opening the popup because it does not allow to clear the input field, you must have a new record created

    Frank

  • When I open a new tab, how can I make Google the search default arc in the middle of the new page?

    I want the homepage to search Google to open when I open a new tab instead of the default generic search box. How can I change what opens when I open a new tab?

    Why not use the built-in engines, Google is one of them, and it is the default search engine. You can have the results of your search automatically open in a new tab, and your links on the Google results page each open in a new tab.

    search results in tabs: https://support.mozilla.com/questions/840504

    combined more recent article s/n: https://support.mozilla.com/questions/892836
  • How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    If you want the formula is the same (B2 - C2) in the cell of each column you must change it as ($B$ - 2$ C$ 2). Then copy it, select the whole column and paste.

  • How can I make Firefox automatically show my homepage when you open a new tab (instead of a blank page now)?

    How can I make Firefox automatically show my homepage when you open a new tab (instead of a blank page now)?
    (version 3.6.6 on Windows7 64-bit platform)

    New tab homepage extension:
    https://addons.Mozilla.org/en-us/Firefox/addon/777

  • My e-mail is important my emails when I turn it on but then offline. Need my password back on doctor connection and stay on the line until I turn it off. Process is repeated on the switching across. How can I make my email stay online?

    My e-mail is important my emails when I turn it on but then offline. Need my password back on doctor connection and stay on the line until I turn it off. Process is repeated on the switching across. How can I make my email stay online?

    Hi jsteveh,

    Thank you for using communities Support from Apple.

    I understand that the mailbox of your Mac becomes offline at random times.  I suggest the mail connection doctor to see if there is any problem with your computer to communicate with the mail running server.

    Use Mail connection doctor

    Take care.

  • In my laptop, when I open the itunes window there is an option 'Internet Radio' to listen to the different type of music. This "Internet radio" function can be used on my iphone5? And if so, how can I make it work?

    In my laptop, when I open the itunes window there is an option 'Internet Radio' to listen to the different type of music. This "Internet Radio" function can be used on my iphone 5? And if so, how can I make it work?

    No more. It merged with the Apple's music.

Maybe you are looking for