Updated version... Updated version to V2.6.6....the grldr version is updated to v0.96..all courtesy zsmin and nononsence...
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.
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.
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.
You just need adjust the ie.cfg....the key will be added automatically.No need to adjust the scripts.
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!
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... Thx again for your work, dude Clay
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
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.
add this line to the existing one, because if did not update the one in the key folder yet. cscript //nologo "%~dp0key.vbs"