[SOLVED] Need help to install manufacture information

Discussion in 'Windows 10' started by Chibi ANUBIS, Jun 9, 2021.

  1. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    #1 Chibi ANUBIS, Jun 9, 2021
    Last edited: Jun 9, 2021
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Code:
    @echo off & color 17 & title Set Motherboard Company and Model
    :: ----------------------------------------------------------
    echo --- Set Motherboard Company and Model in My Computer Properties
    SETLOCAL
    FOR /F "tokens=3* delims= " %%i in ('reg query HKLM\HARDWARE\DESCRIPTION\System\BIOS /v BaseBoardManufacturer') DO (SET BaseBoardManufacturer=%%i %%j)
    FOR /F "tokens=3* delims= " %%i in ('reg query HKLM\HARDWARE\DESCRIPTION\System\BIOS /v BaseBoardProduct') DO (SET BaseBoardProduct=%%i %%j)
    ECHO Manufacturer="%BaseBoardManufacturer%"
    ECHO Product="%BaseBoardProduct%"
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /t REG_SZ /v Manufacturer /d "%BaseBoardManufacturer%" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation" /t REG_SZ /v Model /d "%BaseBoardProduct%" /f
    :: ----------------------------------------------------------
    

    https://forums.mydigitallife.net/threads/win10-tweaking-scripts.82116/
     
  3. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. MarvelX7

    MarvelX7 MDL Member

    Jun 1, 2021
    233
    208
    10
    would you be kind and share the project with you. :)
     
  5. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Thanks @mdl052020 !
    Can you tell me the command line switch please, the zip had no ReadMe.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. case-sensitive

    case-sensitive MDL Expert

    Nov 7, 2013
    1,681
    731
    60
    On a running system ? Did you try to open that oem.zip ........ find the folder you want ......... use the reg file ....... and put the picture and theme files where they belong ?
     
  8. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Many thanks @mdl052020
    This tool was very powerfull, I try later on Hyper-V with sample manufacture.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...