Creating auto-activating DVD's-With or Without Loader???

Discussion in 'Windows 7' started by sushil1576, Sep 21, 2009.

  1. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #81 Mr Jinje, Sep 25, 2009
    Last edited by a moderator: Apr 20, 2017
  2. sushil1576

    sushil1576 MDL Senior Member

    Jul 3, 2009
    335
    157
    10
  3. George King

    George King MDL Expert

    Aug 5, 2009
    1,961
    2,468
    60
    Can you write install.vbs in CMD?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Notam

    Notam MDL Junior Member

    Aug 2, 2009
    72
    2
    0
    Is it possible to use this activation kit on stand alone versions like x32 & x64 individually.
     
  5. sushil1576

    sushil1576 MDL Senior Member

    Jul 3, 2009
    335
    157
    10
    Yes..You can use the original script by nononsence for that.. It is also provided in the second part of the guide
     
  6. Crusi

    Crusi MDL Novice

    Dec 23, 2007
    30
    0
    0
    I'd like to insert script into install.vbs which will install key. Can someone correct or write this script correctly please.

     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. omdhar

    omdhar MDL Junior Member

    Aug 1, 2009
    94
    40
    0
    #88 omdhar, Sep 26, 2009
    Last edited: Sep 26, 2009
    Successfully created OEM pre activated dvd both x86 and x64. I have modded nononsence script to avoid $OEM$ folder in sources folder and insert everything into install.wim including logo. But how to delete other image (excl Ultimate, Prof, and Home Premium for which OEM SLP key is available) to save space i.e. like Starter and Home Basic. I want to have Ultimate and Premium both x86 and x64 in one dvd. Thanks in advance.
     
  8. sushil1576

    sushil1576 MDL Senior Member

    Jul 3, 2009
    335
    157
    10
    you can delete other images with imagex..But you don't need to delete them to fit all versions in one dvd ..Just follow the first part of the guide and you can have both versions on one dvd
     
  9. Ruley

    Ruley MDL Junior Member

    Jul 26, 2009
    89
    0
    0
    this pack installs oem slp keys into your image, so that you do not require to add it later, if you want to edit the keys which are used during installation simiply edit the .bat file that came with this (make 64 or make 86), you will see where the keys are very easily.
     
  10. Crusi

    Crusi MDL Novice

    Dec 23, 2007
    30
    0
    0
    I know it install, but I don't want to integrate key into install.wim, so I'd like to install key by this script :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. sushil1576

    sushil1576 MDL Senior Member

    Jul 3, 2009
    335
    157
    10

    Would you please explain what did you modify in the script and how did you integrate the contents of the $OEM$ folder into install.wim
     
  12. George King

    George King MDL Expert

    Aug 5, 2009
    1,961
    2,468
    60
    #96 George King, Sep 26, 2009
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. omdhar

    omdhar MDL Junior Member

    Aug 1, 2009
    94
    40
    0
    #97 omdhar, Sep 26, 2009
    Last edited: Sep 26, 2009
    Its simple. setup folder inside $$, make it copied to windows folder in each mounted image. U dont need oem folder.
     
  14. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    You can use gimagex to delete the images you dont want.
     
  15. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #99 nononsence, Sep 26, 2009
    Last edited by a moderator: Apr 20, 2017
    I have attached a files that will install the key with a script
    and a new setupcomplete.cmd.

    if you are using the preactivation scripts, then you can also remove
    the dism code from the scripts which will greatly speed up the process.

    also remember you will be asked for a key during OOBE, with this method
    setting VL to 1 in ei.cfg will stop that behavior for Ultimate, but may not
    for the other editions.

    Code:
    dism /Mount-Wim /WimFile:"%TEMP%\DVD\sources\install.wim" /Index:5 /MountDir:"%TEMP%\MOUNT"
    dism /Image:"%TEMP%\MOUNT" /Set-ProductKey:
    dism /Unmount-Wim /MountDir:"%TEMP%\MOUNT" /commit
    
    dism /Mount-Wim /WimFile:"%TEMP%\DVD\sources\install.wim" /Index:4 /MountDir:"%TEMP%\MOUNT"
    dism /Image:"%TEMP%\MOUNT" /Set-ProductKey:
    dism /Unmount-Wim /MountDir:"%TEMP%\MOUNT" /commit
    
    dism /Mount-Wim /WimFile:"%TEMP%\DVD\sources\install.wim" /Index:3 /MountDir:"%TEMP%\MOUNT"
    dism /Image:"%TEMP%\MOUNT" /Set-ProductKey:
    dism /Unmount-Wim /MountDir:"%TEMP%\MOUNT" /commit
    
    also you can add this line to Make_x32_DVD.cmd and Make_x64_DVD.cmd
    Code:
    IF EXIST "%~dp0ei.cfg" copy "%~dp0ei.cfg" "%TEMP%\DVD\sources\ei.cfg"
    
    after this line

    Code:
    IF EXIST "%TEMP%\DVD\sources\ei.cfg" DEL "%TEMP%\DVD\sources\ei.cfg"
    
    and then place a custom ei.cfg in the pre-activation_kit folder
    this will allow you to have a single edition dvd without OOBE
    asking for a key.

    ei.cfg example:
    Code:
    [EditionID]
    ULTIMATE
    [Channel]
    Retail
    [VL]
    1
    

    EDIT: Slimplified the oemkey script
     

    Attached Files:

  16. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #100 nononsence, Sep 26, 2009
    Last edited by a moderator: Apr 20, 2017