Win 8.x • Win 7 • Vista - 'Multi-OEM' ISO Project

Discussion in 'MDL Projects and Applications' started by searchengine, Jan 30, 2010.

Thread Status:
Not open for further replies.
  1. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    Slic 2.1 / Loader

    I hav`nt read all posts here so maybe this issue allready been answered.
    When i install Win7 using only Slic 2.1 option on my ASUS with Slic 2.1 in bios
    it is activated.
    But when i use the Slic 2.1 incl. loader (updated to v.1.9.3) on the same comp it installs the loader ?????
    In the description it says that if Slic 2.1 is detected it will not install the loader
     
  2. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,590
    1,584
    150
    Are you sure it installs the loader as well? It shoudnt do that at all.
     
  3. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    Yes i`m 100% shure
    (tcntad this time i`m "shure" and i think you know what i mean ;) )

    Do you think it has to do with the fact that i replaced the loader in the original OEM folder with the new 1.9.3 ?
     
  4. Butterfly_Joe

    Butterfly_Joe MDL Novice

    Feb 5, 2010
    39
    28
    0
    #484 Butterfly_Joe, Oct 28, 2010
    Last edited: Oct 28, 2010
    i have also this problem and I made a small change in the script, and now it works.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    I can`t find that line in the script.
    Can you upload yours ?
    Or can i just copy from post#134 ?
     
  6. Butterfly_Joe

    Butterfly_Joe MDL Novice

    Feb 5, 2010
    39
    28
    0
    It is the SetupComplete.cmd
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    @echo off

    ::check activation status, and exit::
    WMIC /NAMESPACE:\\root\CIMV2 PATH SoftwareLicensingProduct WHERE LicenseStatus=1 GET LicenseStatus | findstr "1" > nul
    IF ERRORLEVEL 1 goto :NOT_LICENSED
    RD /S /Q "%WINDIR%\Setup\Scripts" >nul
    DEL /F /Q %0% >nul
    EXIT

    ::run loader & logos if not activated::
    :NOT_LICENSED
    %~dp0"Windows Loader.exe" /silent /preactivate >nul
    cd %~dp0
    attrib -R -A -S -H *.*
    DEL /F /Q %~dp0"Windows Loader.exe" >nul
    SHUTDOWN /R /T 25
    DEL /F /Q %0% >nul
    EXIT

    This is how it should be ?
     
  8. Butterfly_Joe

    Butterfly_Joe MDL Novice

    Feb 5, 2010
    39
    28
    0
    Yes, this is the final script.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    #489 Per Henrik Rasmussen, Oct 28, 2010
    Last edited: Oct 28, 2010
    I tryed using your OOBE and SetupComplete from post#134
    And it actually activated but did`nt install any OEM information.
    Is that the intension ?
    Not that i don`t like i think it`s cool cause i`ve customized install dvd/USB to use my own logon and wallpaper
    :biggrin:
     
  10. Butterfly_Joe

    Butterfly_Joe MDL Novice

    Feb 5, 2010
    39
    28
    0
    It will only install the official oem information to match the BIOS.
    For your own logos and pictures,you must be changed oobe.cmd and create your own oem information file
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    I`ve customized a Windows7 install DVD (Danish,German and English) and added my "own" loginscreen and wallpaper also added the oem folder (Slic 2.1 and Daz loader 1.9.3) using your OOBE.cmd and SetupComplete.cmd from your post#134.

    After installation It activated Windows7 (Asus slic 2.1 in bios) without installing loader but it did`nt ad any OEM info at all !!!!!!
    :rolleyes:
     
  12. Butterfly_Joe

    Butterfly_Joe MDL Novice

    Feb 5, 2010
    39
    28
    0
    #492 Butterfly_Joe, Oct 28, 2010
    Last edited by a moderator: Apr 20, 2017
    This Script was for an old version of $oem$ Folder and need this file: "$oem$\$$\system32\oem\oobe\Info\MultiBrand_OEM's"
    In the current version is the file here: "$oem$\$$\Setup\Scripts\MultiBrand_OEM's
    The old oobe.cmd script must be changed.
    Delete:
    Code:
    start /w regedit /s %windir%\system32\oem\oobe\Info\MultiBrand_OEM's\%MAN%\%MAN%.reg 
    cscript %windir%\system32\slmgr.vbs -ilc %windir%\setup\scripts\Certificates\%MAN%.xrm-ms
    replace with:
    Code:
    IF NOT EXIST %windir%\system32\oobe\info\backgrounds MD %windir%\system32\oobe\info\backgrounds >nul
    IF EXIST %windir%\Setup\scripts\MultiBrand_OEM's\DEFAULT\Backgrounds move "%windir%\Setup\scripts\MultiBrand_OEM's\DEFAULT\\Backgrounds\*.*" %windir%\system32\oobe\info\backgrounds >nul
    
    IF EXIST %windir%\Setup\scripts\MultiBrand_OEM's\%MAN% (
       move "%windir%\Setup\scripts\MultiBrand_OEM's\%MAN%\*.*" %windir%\system32\oobe\info >nul
       start /w regedit /s %windir%\system32\oobe\info\%MAN%.reg >nul
       RD /S /Q %windir%\Setup\scripts\MultiBrand_OEM's >nul
    )
    IF EXIST %windir%\system32\oobe\info\USER.bmp (
       Attrib -h %systemdrive%\ProgramData >nul
       DEL /F /Q "%systemdrive%\ProgramData\Microsoft\User Account Pictures\user.bmp" >nul
       copy %windir%\system32\oobe\info\USER.bmp "%systemdrive%\ProgramData\Microsoft\User Account Pictures\user.bmp" >nul
       Attrib +h %systemdrive%\ProgramData >nul
    )
    IF EXIST %windir%\system32\oobe\info\WALLPAPER.jpg move %windir%\system32\oobe\info\WALLPAPER.jpg %windir%\Web\Wallpaper >nul
    IF EXIST %windir%\system32\oobe\info\Brand.theme move %windir%\system32\oobe\info\Brand.theme %windir%\Resources\Themes >nul
    
    IF EXIST %windir%\Setup\scripts\Certificates\%MAN%.xrm-ms (
       cscript //nologo %windir%\system32\slmgr.vbs -ilc %windir%\Setup\scripts\Certificates\%MAN%.xrm-ms >nul
       RD /S /Q %windir%\Setup\scripts\Certificates >nul
    )
    Finish, now it should work :rolleyes:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Per Henrik Rasmussen

    Mar 29, 2008
    112
    13
    10
    #493 Per Henrik Rasmussen, Oct 28, 2010
    Last edited by a moderator: Apr 20, 2017
    Thanks

    I don`t think i will cause i think it`s cool that it activate and let me keep my "own" logonscreen and wallpaper
    ;)Quintus Horatius Flaccus
     
  14. ikarus62

    ikarus62 MDL Novice

    May 4, 2008
    6
    0
    0
    Help! Link for Rebuild_Win7_ISO.exe is bad!?
     
  15. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,590
    1,584
    150
    Which link?
     
  16. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,826
    19,045
    340
    #496 Tito, Oct 29, 2010
    Last edited by a moderator: Aug 3, 2014
    Here is the link:

    @ikarus62

    Yap, it is dead... :(
     
  17. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,590
    1,584
    150
    Aha, i never really noticed that link or forgot about it since i pretty much always have a custom windows 7 dvd and i build isos from it:)
     
  18. halaween

    halaween MDL Member

    Aug 31, 2007
    200
    3
    10
    Hi,

    Small problem here, i have gigabyte board with acer slic2.1.

    The install of windows 7 went for gigabyte and not acer, i was to insert the certificate for acer manually to get activated.

    The disc should detect the slic information and not the DMI data

    Thank you very much it is great job
     
  19. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,590
    1,584
    150
    Then you can edit it if you want.. It may be an acer slic but it fins gigabyte first and thus using gigabyte info..
    Same with my HP.. Inserts compaq stuff instead.
     
  20. NisseHult

    NisseHult MDL Novice

    May 24, 2010
    25
    0
    0
    Hi all :D

    I have just installed win7 32bits on my desktop, it has slic 2.1 and HP cert but it didn´t work ?
    The motherboard is a Asus Blitz Formula

    FältVärde
    Egenskaper för ACPI tabell
    ACPI signaturSLIC
    Tabell beskrivningSoftware Licensing Description Table
    Minnesadress000FF200h
    Tabell längdl374 bytes
    OEM IDHPQOEM
    OEM Table IDSLIC-MPC
    OEM Revision00000001h
    Creator IDHPQ
    Creator Revision00000001h
    SLIC Version2.1