Initialization of the loop after recovery on a new ssd

Hi all!

I want to change the first HD with a new 120 GB SSD on my DV6 HP ENVY with Win8.

I did the following steps:

-Created the system recovery discs (4 DVD)
-Replaced with new SSD HDD

-Changed in legacy mode option
-Insert all the recovery discs 4
-At the end of Setup apepar a text saying the system will install all computer will be rebooted several times and it is normal
-Installation process has started and made something display dialogues with progress bars
-Installation process reboot the system for the 1st time

I expect that configuration process will finish but Windows boot up the laptop in a loop to restart and not at the end of installation process.

Can someone help me to solve it? What should I do?

Thank you very much.

Hello, I did a new install on SSD, and I download all want DV6 software and driver from the HP website (http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4132&lc=it&cc=it&dlc=en&sw_lang=&product=5360321). I installed everything and now I work with this laptop

Tags: Notebooks

Similar Questions

  • Continue the loop after the exception thrown in SQL

    How would continue the while loop in the code below after an exception was thrown?

    DECLARE    
    v_blob_data       BLOB;    
    v_blob_len        NUMBER;    
    v_position        NUMBER;    
    v_raw_chunk       RAW(10000);    
    v_char      CHAR(1);    
    c_chunk_len   number       := 1;    
    v_line        VARCHAR2 (32767)        := NULL;    
    v_data_array      wwv_flow_global.vc_arr2;    
    v_rows number;    
    v_sr_no number := 1;  
    v_first_line_done boolean := false;  
    v_error_cd number :=0;  
    v_quote_pos1 NUMBER;  
    v_quote_pos2 NUMBER;  
    v_enclosed_str VARCHAR(200);
    v_errmsg VARCHAR2(4000);
    
    BEGIN
    
     delete from TEMP_MM_UPDATE where username = :P1_USER_ID;
    
    -- Read data from wwv_flow_files</span>    
     select    
      blob_content    
     into v_blob_data    
     from wwv_flow_files    
     where name = :P2_FILE_UPLOAD; 
    
     v_blob_len := dbms_lob.getlength(v_blob_data);    
     v_position := 1;
    
    
    
     -- Read and convert binary to char</span>  
     WHILE ( v_position <= v_blob_len )    
     LOOP
    
    begin 
     
      v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);    
      v_char :=  chr(hex_to_decimal(rawtohex(v_raw_chunk)));    
      v_line := v_line || v_char;    
      v_position := v_position + c_chunk_len;
      
     -- When a whole line is retrieved </span>   
     IF v_char = CHR(10) THEN
     
     LOOP  
      --Make sure there's something to replace  
      IF INSTR(v_line, '"', 1, 1) = 0 THEN  
      EXIT; -- If nothing to replace, exit loop and don't try  
      END IF;  
      --Find the position of the first and second quotes in the line of text  
      v_quote_pos1 := INSTR(v_line, '"', 1, 1);  
      v_quote_pos2 := INSTR(v_line, '"', 1, 2);  
      --Extract the inner string  
      v_enclosed_str := SUBSTR(v_line, v_quote_pos1 + 1, v_quote_pos2 - v_quote_pos1 - 1);  
      --perform the replacement  
      v_line := SUBSTR(v_line, 0, v_quote_pos1 - 1) || REPLACE(v_enclosed_str, ',', '<') || SUBSTR(v_line, v_quote_pos2 + 1);  
     END LOOP; 
      
     -- Convert comma to : to use wwv_flow_utilities </span>  
     v_line := REPLACE (v_line, ',', ':');  
     v_line := REPLACE (v_line, '<', ',');  
     v_line := REPLACE (trim(v_line), '-', NULL);  
     --v_line := REPLACE (trim(v_line), '"', NULL);  
     -- Convert each column separated by : into array of data </span>    
     v_data_array := wwv_flow_utilities.string_to_table (v_line);  
     --Check to see if the row of column headers has already been parsed through  
     IF(v_first_line_done != true)THEN   
      v_first_line_done := true;  
      --Check column order in spreadsheet  
      IF(v_data_array(1)   LIKE '%Username%' AND
        v_data_array(2)  LIKE '%NDN%' AND
        v_data_array(3)  LIKE '%PCFN%' ) THEN   
       v_error_cd := 0;  
       v_line := NULL;  
      ELSE  
       v_error_cd := 1;  
      END IF;  
     --If first line is done and the column order is correct then  
     ELSIF(v_first_line_done = true AND v_error_cd = 0) THEN   
     -- Insert data into target table </span>    
     EXECUTE IMMEDIATE 'insert into TEMP_MM_UPDATE   
     (USERNAME,
       RPT_FLAG,
      PCFN)
     values (:1,:2,:3)'   
       USING   
      v_data_array(1),   
      v_data_array(2),   
      v_data_array(3);
       -- Clear out    
      v_line := NULL; v_sr_no := v_sr_no + 1; 
     
     END IF;  
     END IF;
    
    exception
    WHEN OTHERS then
      v_errmsg := SQLERRM;
      insert into temp_mm_update (username,error_desc)
      values (:P1_USER_ID, v_errmsg);
    end;
      
     END LOOP;
    
    
     
    DELETE FROM WWV_FLOW_FILES where name = :P2_FILE_UPLOAD;
    DELETE FROM TEMP_MM_UPDATE WHERE USERNAME IS NULL AND PCFN IS NULL;  
     IF(v_error_cd = 1) THEN  
    INSERT INTO temp_mm_update (USERNAME, ERROR_DESC)  
    VALUES (:P1_USER_ID, 'Error. Please check column order in spreadsheet.');  
    END IF;
    EXCEPTION
        WHEN NO_DATA_FOUND THEN
            insert into temp_mm_update (username,error_desc)
      values (:P1_USER_ID, 'No Data Found.');
     WHEN OTHERS then
      v_errmsg := SQLERRM;
      insert into temp_mm_update (username,error_desc)
      values (:P1_USER_ID, v_errmsg);  
    
    END;
    
    

    When I set the exception inside the loop, as above, the procedure seems never to end, and I end up getting a 'NOWAIT' error when I try to remove the table or something like that.

    The code works fine if I remove the 'START' just after the loop and also out of the exception within the loop, but I want to be able to specify what's wrong with each record rather than deal with the correct records and then stop after that it is a record that has, for example, 9 values in a column that accepts only 6.

    Can anyone help with this?

    Thank you

    Steven

    Play with my code I found what was wrong.
    I needed to add in the following line in my code block of exception:
    v_line := NULL; v_sr_no := v_sr_no + 1;
    
    Final code:
    DECLARE
      v_blob_data       BLOB;
      v_blob_len        NUMBER;
      v_position        NUMBER;
      v_raw_chunk       RAW(10000);
      v_char      CHAR(1);
      c_chunk_len   number       := 1;
      v_line        VARCHAR2 (32767)        := NULL;
      v_data_array      wwv_flow_global.vc_arr2;
      v_rows number;
      v_sr_no number := 1;
      v_first_line_done boolean := false;
      v_error_cd number :=0;
      v_quote_pos1 NUMBER;
      v_quote_pos2 NUMBER;
      v_enclosed_str VARCHAR(200);
      v_errmsg VARCHAR2(4000);
    BEGIN
      delete from TEMP_MM_UPDATE where username = :P1_USER_ID;
    
      -- Read data from wwv_flow_files
      select
        blob_content
        into v_blob_data
        from wwv_flow_files
        where name = :P2_FILE_UPLOAD; 
    
      v_blob_len := dbms_lob.getlength(v_blob_data);
      v_position := 1; 
    
      -- Read and convert binary to char
      WHILE ( v_position <= v_blob_len )
      LOOP
        begin
            v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
            v_char :=  chr(hex_to_decimal(rawtohex(v_raw_chunk)));
            v_line := v_line || v_char;
            v_position := v_position + c_chunk_len;
    
          -- When a whole line is retrieved 
          IF v_char = CHR(10) THEN
            LOOP
              --Make sure there's something to replace
              IF INSTR(v_line, '"', 1, 1) = 0 THEN
                EXIT; -- If nothing to replace, exit loop and don't try
              END IF;
              --Find the position of the first and second quotes in the line of text
              v_quote_pos1 := INSTR(v_line, '"', 1, 1);
              v_quote_pos2 := INSTR(v_line, '"', 1, 2);
              --Extract the inner string
              v_enclosed_str := SUBSTR(v_line, v_quote_pos1 + 1, v_quote_pos2 - v_quote_pos1 - 1);
              --perform the replacement
              v_line := SUBSTR(v_line, 0, v_quote_pos1 - 1) || REPLACE(v_enclosed_str, ',', '<') || SUBSTR(v_line, v_quote_pos2 + 1);
            END LOOP; 
    
            -- Convert comma to : to use wwv_flow_utilities 
            v_line := REPLACE (v_line, ',', ':');
            v_line := REPLACE (v_line, '<', ',');
            v_line := REPLACE (trim(v_line), '-', NULL);
            --v_line := REPLACE (trim(v_line), '"', NULL);
            -- Convert each column separated by : into array of data 
            v_data_array := wwv_flow_utilities.string_to_table (v_line);
            --Check to see if the row of column headers has already been parsed through
            IF(v_first_line_done != true)THEN
              v_first_line_done := true;
              --Check column order in spreadsheet
              IF(v_data_array(1)    LIKE '%Username%' AND
                  v_data_array(2)  LIKE '%NDN%' AND
                  v_data_array(3)  LIKE '%PCFN%') THEN
                v_error_cd := 0;
                v_line := NULL;
              ELSE
                v_error_cd := 1;
              END IF;
            --If first line is done and the column order is correct then
            ELSIF(v_first_line_done = true AND v_error_cd = 0) THEN
              -- Insert data into target table 
              EXECUTE IMMEDIATE 'insert into TEMP_MM_UPDATE
              (USERNAME,
               RPT_FLAG,
               PCFN)
              values (:1,:2,:3)'
               USING
                v_data_array(1),
                v_data_array(2),
                v_data_array(3);
               -- Clear out
                v_line := NULL; v_sr_no := v_sr_no + 1;
            END IF;
          END IF;
        exception
          WHEN OTHERS then
            v_errmsg := SQLERRM;
            insert into temp_mm_update (username,error_desc)
            values (:P1_USER_ID, v_errmsg);
    v_line := NULL; v_sr_no := v_sr_no + 1;
      END;
      END LOOP;
    
      DELETE FROM WWV_FLOW_FILES where name = :P2_FILE_UPLOAD;
      DELETE FROM TEMP_MM_UPDATE WHERE USERNAME IS NULL AND PCFN IS NULL;
      IF(v_error_cd = 1) THEN
        INSERT INTO temp_mm_update (USERNAME, ERROR_DESC)
        VALUES (:P1_USER_ID, 'Error. Please check column order in spreadsheet.');
      END IF;
    EXCEPTION
      WHEN NO_DATA_FOUND THEN
        insert into temp_mm_update (username,error_desc)
        values (:P1_USER_ID, 'No Data Found.');
      WHEN OTHERS then
        v_errmsg := SQLERRM;
        insert into temp_mm_update (username,error_desc)
        values (:P1_USER_ID, v_errmsg);
    END;
    
  • Update the values in the loop after pressing OK without a control

    Hello

    in a loop, a chain of control can be changed until the user clicks the ok button. This method works.

    But the button is also assigned to toggle with the return key.

    But now, the output is not updated any more.

    Is there a solution?

    THX

    Iliale wrote:

    Attached my VI that doesn't work here.

    If I stop the loop with key then return the s text not written

    Set the control to the value of update while typing.

  • Message "Set up the reboot" turns the loop after power failure

    I reinstall Windows XP on my PC and there is a power outage during the time of "Windows Installer". Then the error message "Set up the reboot" comes on the loop and repeats indefinitely.  When I tried to enter together at the top, he's going bonkers and I wasn't able to change the boot priority so drive.  What fun that happens and can u please help me solve the problem?  Otherwise, it is worth of empty hard disk before I try reinstalling on another PC, because I suspect that the HDD is adrift of the semi nudity?

    Your solution is much appreciated in advance.

    Ranga

    Hello

    The article below may be useful.
    Setup may restart during the installation of Windows XP http://support.microsoft.com/?kbid=891892&SD=tech material detection phase

  • Why out of the loop after a managed exception is thrown

    I am trowing a custom exception inside a nested for loop. The execption notes, however, both the inner and outer loop output once the exception is thrown. I tried to add a continue statement, but that has not solved the problem.

    Jet moves execution of capture, closing the loop.  You can send a cancelable event instead.

  • How to use the recovery with a new ssd disk after the death of original hard drive

    I thought I had a simple fix/upgrade for my dv5 - 2077cl.

    decided to replace the defective hard drive with an SSD. couldn't afford a 240 GB size but it's big enough for my needs.

    I installed the new drive easily and cycled through my 4 recovery disc reinstall the minimum overlap. After you delete the last record, the screen goes gray and there is a cursor in the top left corner for more than 10 hours.

    I finally it turned off and tried again two times the same results. I removed the DDI and run disk management on it from my other laptop and an external cable to remove the partiion and create a single partition. Tried to install windows xp on a disk that I own this isn't an update or restore disc thinking I might switch to windows 7 32 bit because I own and upgrade the disks also. even if it is a 64-bit system, but I do not have any disk 64-bit except the recovery disks that didn't seem to work.

    When I ran the xp it seemed to work but then I got the blue screen that said there is no drivers for the SDS (the error is as follows stop0x0000007B (0xF78D2524, 0XC0000034, 0x00000000, 0x00000000))

    So I guess I need to have a windows 7 install disk rather than the recovery discs?

    the SSD is a Silicon Power S70 240 GB.

    any suggestions?

    Recovery discs usually require a hard drive of equal or greater capacity. XP doesn't have SATA drivers Sockets.

    If you can read the Microsoft Windows 7 of 25-character license key, you can download a Windows 7 ISO file to burn to a DVD or USB flash drive. The version must match that's installed on your PC as shown on the sticker COST Microsoft fixed on the bottom of the laptop. Like Windows Home Premium.

    Links to downloads of Windows 7 ISO files:
  • an easy way to reinstall the applications after recovery

    Among the biggest problems that you encounter during the reinstall of Windows on your computer is to recover all of your commonly used programs.  Ninite offers you an easy way to download a large number of the most commonly used applications.  The site will download the installer and install the applications for you.

    So check www.ninite.com the next time that you need to quickly install many applications.

    I hope everyone has a great weekend!

  • Recovery of the Internet to install OS on new SSD but now get grey screen

    I recently installed an SSD in my Macbook Pro 15 late 2011. I did a cover of the Internet of the installed OS Lion on the new drive. I then migrated all my information, which using El Capitan, from my old hard drive through Time Machine and now I could not go beyond the gray screen with the Apple symbol and the spinning wheel. Any suggestions?

    Welcome to Apple Support communities

    heartdagger wrote:

    I recently installed an SSD in my Macbook Pro 15 late 2011. I did a cover of the Internet of the installed OS Lion on the new drive. I then migrated all my information, which using El Capitan, from my old hard drive through Time Machine and now I could not go beyond the gray screen with the Apple symbol and the spinning wheel. Any suggestions?

    You damaged OS X by restoring a backup made with a new version of OS X that you were running at that time here. In any case, from what you say, it seems that you didn't need to install OS X Lion: you can restore the backup directly on your SSD without having to reinstall OS X.

    To do this, Internet recovery includes an option to restore a Time Machine backup. Just boot into Recovery Internet, plug the old hard drive to your Mac, choose the option to restore a backup Time Machine in the "OS X Utilities" window and follow the steps. The SSD will be formatted, your Mac must be up and working soon.

  • Equium A100 - will be the responsibility of recovery on a new HARD drive disk

    Hello

    Don t know if anyone can help, I am just out of warranty by a month and I think that my hard drive has failed, or I had a virus that has hit loads of files and the PC is always eager to run the disc scan and still get errors on commissioning, sometimes start even goes just right to start mode then crash again and again the same thing.

    I have the recovery disk, but this is not sort on the question, so if I get a new hard drive the recovery disc will actually load on a new HARD drive? Why don t Toshiba just give us the full operating system to start with?

    Someone has answers or similar questions that could help please let me know.

    Concerning
    Dean

    Of course, you can use a recovery with new HARD drive media. No problem at all! Swap the HARD drive and install the operating system using recovery DVDs. All that s!

  • What will happen with my agent and active Windows 8, I will have bought with the laptop after I swap HDD with SSD?

    Original title: replacement disk and windows.

    Hello guys.

    I am considering buying a new laptop. The model that I found and I like has a HARD drive if I want to replace it with the SSD to the format of my previous laptop. (Due to the low energy consumption, greater speed, etc.). So I have a 256 gb SSD in my previous loan of laptop replace new one HARD disk, yet what will happen with my agent and active Windows 8, I will have bought with the laptop?

    I can reinstall windows 8 on the SSD, but I don't have a key to activate their... How will I be able to get the key from previous series if the laptops will only work with a recovery partition these days here? I asked a guy in the store, I buy my laptop since and he told me that he does not know and I have to ask for help. However, to create a message of support I need a serial number of the model I did not because I have not yet bought a laptop, so I don't know what to do... I really don't want to stick with the HARD drive, but also I can't afford another model.

    Is it possible to do a recovery with my laptop disk when I get it, then replace the drive with my SSD and run the recovery disc I made?

    The laptop I want to buy is an Asus if that helps...

    Thanks in advance...

    The 'Raw' State is not necessary, it is the State of any drive (SSD drive or hard drive) would be in if you just remove a disk new in box and will need to be "initialized", since you have already used the player already initialized sound.

    Do not format the drive, rather than delete all existing partitions, (the SSD shows then as being "unallocated"). Now you are ready to restore the backup Image you created. During the restore process Acronis will recreate the partitions that were on the hard drive on your SSD.

    J W Stuart: http://www.pagestart.com

  • Why is the update after a CTRL + T (new tab) on the search (instead of address bar) bar in newer versions?

    I got all the 'browser.newtab*' in: config by default in my firefox (38.0.5) - (except "browser.newtabpage.enhanced" + "browser.newtabpage.introShown").

    When you open a new tab using CTRL + T (on older versions of firefox) has been emphasis to the address bar - which made a lot more sense to me that you can immediately begin typing the URL. Since the last update (version 20 (Heisenbug) Fedora) emphasis is placed on the search bar, so when you type something I find myself looking from ' subject: newtab "page which is really annoying (another CTRL + L needs to first set the focus on where I expect it to be).

    This change happened on purpose? If so - is there a way to go back tho old behavior?

    Or is there sth wrong with my version of Firefox only and the default behavior is still ok?

    thx for the tips,
    Andare

    See my response to this similar question.

    In short, if you have the Tile tabs extension, either upgrade to the latest version (13.1) which is supposed to fix this or turn it off.

    Let us know if that solve you your problem or not.

  • Restart the printer after a put a new disc of haard

    Printer does not have the test page.  Only printed black is not colored.  How can I check and restart the printer with the new hard drive.

    Anita laws

    You need to re - install the printer. Use the installation CD.

  • Windows 8 stuck in the loop of auto repair

    Hey,.

    Yesterday, I restarted my computer after installing a program, then it started to do this, it will forever... My last pc I could press F11 or something and enter the system recovery, this PC it brings me to the uefi asrock configuration utility, which I have no idea what to do...

    I can't figure out how to start a system recovery, or how to get in safe mode, I know Win7 I could press F8 and choose my boot method, but that doesn't work here, and all I can find on google is how to start in safe mode when your computer is on and I can get on the desktop which is completely unnecessary, because when you use safe mode if your computer was working...

    Before this happened I used my task manager to modify some applications that run at startup, but it was like Samsung Kies and Adobe stuff, nothing to do with the system, and I don't think that it would anyway.

    Then I was installing tortoisesvn on reboot, this happened...

    It's the time of the final, I need to come back on this PC

    Here is a video of my computer law to market

    http://www.YouTube.com/watch?v=aWRDLM68xWo

    I touched the loop after a windows update on 1/19. If you add up all the hours of research to fix poster we should have everything checked. If m$ has been working on that, we would know. canned response makes me cringe like directv told me to hit the red button... I've exhausted all the solutions I found, and that you do not want free files.

  • Reinstall Windows 7 on new SSD after failure of hard disk, damaged, incomplete product key

    I have a HP Pavilion.  The HARD drive recently failed completely, no possibility to recover data at the moment.  I ordered a set of HP recovery disks, but they seek the recovery on the HARD drive partition; There is no such partition that I replaced the HARD original with a new SSD drive.  To make things worse, the place that HP has chosen to put the Microsoft product key sticker resulted in the product being partially faded key.

    So, to summarize: HP not Pavilion with a corrupt OEM HDD and so far no data recovery possible. a new SSD with no partitions on this subject; a set of recovery disks from HP that don't just work; a sticker with the product key with the first two digits of the product key (as well as some of the barcode, etc.) rubbed off because they have chosen to place the sticker on the bottom of a working computer instead of, say, under the battery, it can be protected.

    If someone in the community has a suggestion as to how to install Win 7 (must be 7 on this system, cannot be an iteration of 8 or 10) from scratch, without having to buy it and with a corrupt OEM disc and a partial product key, I'd love to hear it.  Maybe it's time to install Debian on it?

    Ahh, this is the crux of the problem... the bootmgr is missing.

    To restore the windows off the factory restore DVD, you must configure the BIOS to use the DVD drive as the primary boot device. The machine will then start on the first DVD, and you will not get the above message.

  • Problems after the installation of recovery disk

    Hello

    I just reinstalled Windows with my restore disk after that I install all my backups were useless because I had installed and not 32-bit 64-bit applications

    Thanks for this report, but before you begin the installation of recovery, you must know exactly what you're doing that.
    Be careful next time and don t install wrong OS version.

    Bye and good luck

Maybe you are looking for