remove oem information from windows 7 disc

Discussion in 'Windows 7' started by Halo_2, Mar 23, 2013.

  1. Halo_2

    Halo_2 MDL Novice

    Mar 23, 2013
    7
    0
    0
    Is there a way to remove manufacturer and model info from windows 7 iso? Had a look in RT seven lite no info/blank under unattended>general
     
  2. cocachris89

    cocachris89 MDL Senior Member

    Mar 1, 2013
    491
    151
    10
    #2 cocachris89, Mar 23, 2013
    Last edited by a moderator: Apr 20, 2017
  3. Halo_2

    Halo_2 MDL Novice

    Mar 23, 2013
    7
    0
    0
    Nah its from a website with a windows 7 untouched image that has all the updates integrated only thing that was touched has the website as the manufacturer and model info. No oem folder either
     
  4. pisthai

    pisthai Imperfect Human

    Jul 29, 2009
    7,221
    2,273
    240
    Than it's clearly a modifies Windows 7 Image, but untouched!

    You'll never know, what they really had done while modifying, it could be true what they say and even just BS! So, don't use it if you like to be 100% safe!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Halo_2

    Halo_2 MDL Novice

    Mar 23, 2013
    7
    0
    0
    #5 Halo_2, Mar 23, 2013
    Last edited: Mar 23, 2013
    (OP)
    I trust the source his done it so people don't take credit for his work. Anyone made a registry file to delete manufacturer and model info from HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation. Would be nice if MS released SP2 instead of hunting down unofficial ones.
     
  6. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    720
    60
    #6 NICK@NUMBER11, Mar 23, 2013
    Last edited by a moderator: Apr 20, 2017
    yes that easy.. copy the code into notepad and save as remove_OEM.reg

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\OEMInformation]
    "HelpCustomized"=dword:00000000
    "Manufacturer"=""
    "Model"=""
    "Logo"="C:\\"
    
    

    :)

     
  7. Halo_2

    Halo_2 MDL Novice

    Mar 23, 2013
    7
    0
    0
    thanks for your code it helped able to find this will delete the sub key

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\OEMInformation]
    "Manufacturer"=-
    "Model"=-
     
  8. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    720
    60
    #8 NICK@NUMBER11, Mar 24, 2013
    Last edited by a moderator: Apr 20, 2017
    To remove installed key do this....

    In the elevated command prompt, copy and paste the command below and press enter

    Code:
    slmgr.vbs /upk

     
  9. Halo_2

    Halo_2 MDL Novice

    Mar 23, 2013
    7
    0
    0
    #9 Halo_2, Mar 24, 2013
    Last edited: Apr 24, 2017
    (OP)
    Nevermind