The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    How much does recovery media cost?

    Discussion in 'Gateway and eMachines' started by gzt7d8, Sep 18, 2010.

  1. gzt7d8

    gzt7d8 Newbie

    Reputations:
    0
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    5
    I am looking at purchasing a NV53 series laptop but it appears Gateway does not provide a reinstall DVD or recovery software on the laptop.

    It looks like you purchase recovery media from Gateway but without a serial number I can't go through with the process.

    I find it odd that some manufacturers don't prove a means to reinstall the OS, since you paid for it in the price of the computer.

    Thanks for any insight you can provide.

    Greg
     
  2. hydra

    hydra Breaks Laptops

    Reputations:
    285
    Messages:
    2,834
    Likes Received:
    3
    Trophy Points:
    56
    You could call and ask? There may be a recovery partition on the hard drive if not over written...and you have several options to do a clean install depending on how handy you are with software installation.
     
  3. Sharkonwheels

    Sharkonwheels Notebook Evangelist

    Reputations:
    45
    Messages:
    447
    Likes Received:
    0
    Trophy Points:
    30
    When I got my P-6860FX in 2008, recovery media I think was like $20 including shipping, or something stupid like that. Wasn't very much...
    But yeah - ya gotta provide a system serial number.
     
  4. hydra

    hydra Breaks Laptops

    Reputations:
    285
    Messages:
    2,834
    Likes Received:
    3
    Trophy Points:
    56
    If the sticker is missing, the serial number can be read with several utilities like Everest.

    DMI System Serial Number 101XXXXXXXXXXX7DKS00
     
  5. sherl0k

    sherl0k Notebook Enthusiast

    Reputations:
    26
    Messages:
    11
    Likes Received:
    0
    Trophy Points:
    5
    You can get the model and serial number via a simple vbscript. Open a text editor, paste this in, and save it as serial.vbs

    Code:
    Dim objWMI : Set objWMI = GetObject("winmgmts:")
    Dim colSettingsComp : Set colSettings = objWMI.ExecQuery("Select * from Win32_ComputerSystem")
    Dim colSettingsBios : Set colSettingsBios = objWMI.ExecQuery("Select * from Win32_BIOS")
    Dim objComputer, strModel, strSerial,
    
    For Each objComputer in colSettings
    	strModel = RTrim(objComputer.Model)
    	wscript.echo strModel
    Next
    
    For Each objComputer in colSettingsBios
    	strSerial = objComputer.SerialNumber
    	wscript.echo strSerial
    Next
    
    The problem with the P-series laptops is that Gateway did not set the serial number on many of the motherboards - a lot of the times, the serial shows up as "INVALID". If this happens, and the serial number sticker is missing, you will have to ask someone else for theirs. You can still order the discs here, you just need a valid serial that has already been registered with Gateway.
     
  6. allanaawyh

    allanaawyh Newbie

    Reputations:
    0
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    5
    Now I understand more about it, Thanks for your sharing! It's good for reference.
     
    Last edited by a moderator: May 6, 2015