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

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

  1. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
  2. amires

    amires MDL Member

    Sep 27, 2009
    219
    129
    10
    Thanks, it worked perfectly.
     
  3. sushil1576

    sushil1576 MDL Senior Member

    Jul 3, 2009
    335
    157
    10
    Updated version...

    Updated version to V2.6.6....the grldr version is updated to v0.96..all courtesy zsmin and nononsence...:)
     
  4. shahed26

    shahed26 MDL Novice

    Feb 9, 2008
    26
    0
    0
    Thanks for the update, but GRLDR version (0.97) is the latest version, i thought the 0.97 version will be in your pack.

    Anyways really appreciate this super script. Really saves time when creating an upto date Win 7 iso.
     
  5. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    It zsmin had not upped it yet when I checked yesterday, but I have it now
    Ill change the SLIC and post it in a few min.
     
  6. shahed26

    shahed26 MDL Novice

    Feb 9, 2008
    26
    0
    0
    Ok thanks nononsence:)
     
  7. luky

    luky MDL Addicted

    Dec 21, 2008
    729
    33
    30
    nononsence If I want to make only one version of Win7 and add ie.cfg (Ultimate) can then add key.vbs and SetupComplete.cmd the OEM folder, because there is already one SetupComplete.cmd file and then overwrite this. Please and thank you for the clarification.
     
  8. ancient

    ancient MDL Junior Member

    Oct 11, 2009
    52
    2
    0
    You just need adjust the ie.cfg....the key will be added automatically.No need to adjust the scripts.
     
  9. luky

    luky MDL Addicted

    Dec 21, 2008
    729
    33
    30
    ancient Yeah, I did not know if the key itself or do I add those key.vbs and setupcomplete.cmd located in the folder (oem_folder_key) copy the OEM folder. Thank you!
     
  10. libertard

    libertard MDL Junior Member

    Jul 30, 2009
    81
    1
    0
    Very good

    Thanks for sharing :D;):cool:
     
  11. Claysoft65

    Claysoft65 MDL Member

    Sep 4, 2009
    136
    51
    10
    #413 Claysoft65, Oct 27, 2009
    Last edited by a moderator: Apr 20, 2017
    Hi guys
    First of all thanks for this nice "collection".

    @nononsence
    I'm working on an automating Kit for my Italian RTM.
    I think that what i'm going to ask could be useful for other people that aren't running the ENG version too...

    I'm pretty sure that the only thing that i need to change is "ISO_FILE" and "SHA1_SUM"... Could you confirm that to me, please ?

    Besides that, i was looking also for the auto-download of the updates made with WUD, but i have a couple of question about it.

    -1). I already made my Italian version of the ULZ.UL file, and I had no problem at all in d/ling the "Critical Updates", but i would like
    to auto-d/l the "Other Updates" category too... I saw into your Batch "updates-xxx.bat" that the last Letter looks
    like a parameter... "C" for x86 (category 1) and "S" for x64 (category 2), but i couldn't find any documentation about them...
    Is there any other "switch" to add to those Batch so that we can auto-d/l also some other category than "Critical" ?

    -2). Those ".EXE" files d/led (both ".EXE" from Critical and from Other updates) can be left in the "xxx_updates" folder or
    do I need to move them into the "Extra" folder so that they can be installed through my precompiled "exe-name.cmd" ?

    -3). As the "Other Updates" category will create his Subfolder into "xxx_updates" folder, is there any other correction to do
    to the Batch file "Make_xxx_DVD.cmd" other than this one to the DIR command ... ? :
    Code:
    :x86_updates
    IF EXIST "%~dp0x86_updates" (
    DIR /B "%~dp0x86_updates" | FINDSTR /R ".*" >nul
    ........
    should be...
    :x86_updates
    IF EXIST "%~dp0x86_updates" (
    DIR /B /S  "%~dp0x86_updates" | FINDSTR /R ".*" >nul
    .........
    BTW... that Folder has spaces in name (both in English and in Italian)... could it be a problem for the list created ??

    Sorry for questions... i thought i could manage pretty well Batch file, but i never thought at a 12 KB batch to check... :p
    Thx again for your work, dude
    Clay
     
  12. genuine555

    genuine555 MDL Expert

    Oct 3, 2009
    1,671
    94
    60
    Used this thread to make my pre-activated 32/64 bit win7 dvd.
    It works like a charm, and just want to say thanx to the original poster and everyone who contributed to this thread :)
     
  13. sam3971

    sam3971 MDL Guru

    Nov 14, 2008
    2,229
    310
    90
    #415 sam3971, Oct 27, 2009
    Last edited by a moderator: May 23, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #416 nononsence, Oct 27, 2009
    Last edited by a moderator: Apr 20, 2017
    the download scrips are provided by Je Jin you will have to look at his downloader project thread for any details.

    dism will only install *.msu files so you will have to put them in the extras
    folder with a script to silently run the exe

    the updates folder was not ment to have subfolders, if you want subfolders
    then the code will have to be changed quite a bit the /S switch wont due

    EDIT: I woked on this a little an this is what turned out to work.
    Code:
    :x86_updates
    IF EXIST "%~dp0x86_updates" (
    IF NOT ERRORLEVEL 1 (
    DISM.exe /image:"%TEMP%\MOUNT" /Add-Package /PackagePath:"%~dp0x86_updates"
       FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%~dp0x86_updates"') DO (
          DISM.exe /image:"%TEMP%\MOUNT" /Add-Package /PackagePath:"%~dp0x86_updates\%%A"
    )
       )
    )
    GOTO :eof
    
    might work, you will have to test it.
     
  15. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    add this line to the existing one, because if did not update the one in the key folder yet.

    cscript //nologo "%~dp0key.vbs"
     
  16. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
  17. nononsence

    nononsence MDL Addicted

    Aug 18, 2009
    806
    826
    30
    #420 nononsence, Oct 27, 2009
    Last edited by a moderator: Apr 20, 2017