Winodwx 7 OEM Theme

Discussion in 'Windows 7' started by Ev1lM0nk3y, Oct 27, 2009.

  1. Ev1lM0nk3y

    Ev1lM0nk3y MDL Senior Member

    Jun 7, 2007
    287
    430
    10
    #1 Ev1lM0nk3y, Oct 27, 2009
    Last edited by a moderator: Apr 20, 2017
    Windows 7 OEM Theme integration

    Hi, Could some please help me intergrate a oem (gateway)theme into the dvd to be installed upon installing 7.

    thanks

    Colin

    Would this work in the OOBE.cmd

    Code:
    @echo off
    
    regedit /s %systemroot%\setup\scripts\GATEWAY.reg
    if not exist %systemroot%\panther mkdir %systemroot%\panther
    if not exist %systemroot%\system32\oobe mkdir %systemroot%\system32\oobe
    if not exist %systemroot%\system32\oobe\info mkdir %systemroot%\system32\oobe\info
    if not exist %systemroot%\panther\unattend.xml copy %systemroot%\setup\scripts\OOBE.xml %systemroot%\panther\unattend.xml
    if not exist %systemroot%\web mkdir %systemroot%\web
    if not exist %systemroot%\web\wallpaper mkdir %systemroot%\web\wallpaper
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper1.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper1.jpg %systemroot%\web\Wallpaper\OEM\wallpaper1.jpg
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper2.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper2.jpg %systemroot%\web\Wallpaper\OEM\wallpaper2.jpg
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper3.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper3.jpg %systemroot%\web\Wallpaper\OEM\wallpaper3.jpg
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper4.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper4.jpg %systemroot%\web\Wallpaper\OEM\wallpaper4.jpg
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper5.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper5.jpg %systemroot%\web\Wallpaper\OEM\wallpaper5.jpg
    if not exist %systemroot%\web\Wallpaper\OEM\wallpaper6.jpg copy %systemroot%\Web\Wallpaper\OEM\wallpaper6.jpg %systemroot%\web\Wallpaper\OEM\wallpaper6.jpg
    if not exist %systemroot%\Resources\Themes mkdir %systemroot%\Resources\Themes
    if not exist %systemroot%\Resources\Themes\Gateway.theme copy %systemroot%\Resources\Themes\Gateway.theme %systemroot%\Resources\Themes\Gateway.theme
    and in system.cmd
     
  2. dareckibmw

    dareckibmw MDL Expert

    Jun 16, 2009
    1,201
    1,360
    60
    Yeah, I second that :p
    I think there was a way to use $OEM$ folder, just can't find that tutorial :rolleyes:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Suicide Solution

    Suicide Solution MDL Addicted

    Apr 29, 2008
    534
    2,004
    30
    Inside the sources folder you create the $OEM$ sub-folder, then inside the $OEM$ you create the sub-folders below from left to right:

    $$>Resources>Themes

    Copy all the theme files and folders you want copied over inside the Themes folder.
     
  4. Ev1lM0nk3y

    Ev1lM0nk3y MDL Senior Member

    Jun 7, 2007
    287
    430
    10
    Cheers did that, Would my adde info to the script work or is it not needed

    Thanks
     
  5. Suicide Solution

    Suicide Solution MDL Addicted

    Apr 29, 2008
    534
    2,004
    30
    Not needed. If fact, a lot in the Windows directory can have data copied to it in this manner.

    Say you wanted to include all the 2.1 certificates collected so you can have setup
    copy all of them the C:\Windows\System32\OEM folder to make a universal OEM disk.

    Just create the sub-folders as:

    $OEM$>$$>System32>OEM

    Now copy all the 2.1 Certs inside the OEM folder, and if you provided Windows setup with
    a SLP key, it will auto activate for all the machines that you supplied a certificate for.
     
  6. Ev1lM0nk3y

    Ev1lM0nk3y MDL Senior Member

    Jun 7, 2007
    287
    430
    10
    Cheers, Nice 1 Suicide