Jump to content

geitonaki

Member
  • Posts

    29
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Greece

About geitonaki

Recent Profile Visitors

1,792 profile views

geitonaki's Achievements

0

Reputation

  1. Recovery console works normally with the cracked setupldr.bin. I have used it many times. Something else must be the cause of your problem.
  2. You need to modify all BTS scripts that use the directory OEM. (e.g. in I386\PRESETUP.CMD change OEM to anything you want)
  3. Yes, 2003 R2 is 2003 SP1 plus some extras on a second cd. (First cd is exactly the same with 2003 SP1)
  4. Yes it won't work but at least it tells you what's wrong This is the reason that it is better to have two boot folders. But if you don't mind you can merge them into one.
  5. Having the AMD64 directory and trying to install to a 32bit processor you get the following message: "Attempting to load an x64 operating system, however this CPU is not compatible with x64 mode. Please install a 32-bit X86 operating system." Without the AMD64 directory you will get: "Please insert the disk labeled Windows blah blah x64 Edition CD-ROM into drive A:"
  6. Check this: http://www.msfn.org/board/index.php?showtopic=58446 it automatically creates the boot folders
  7. I have uploaded a new version, check it out and post how it worked for you, the syntax is now: Usage: create_boot_folder setup_dir aio_dir boot_dir1 boot_dir2 flag_for_using_cracked_setupldr You have to open create_boot_folders.cmd with notepad, modify the included examples and then run it by double clicking the file
  8. Make sure you are running create_boot_folders.cmd and not create_boot_folder.cmd Also read carefully the included help.
  9. Having 150kb limit for each post how could I uploaded here? My only option was to upload to rapidshare.de
  10. No it won't. As I said it works for any version of Windows 2000, XP, 2003
  11. Download the self extracting rar file in the first post, execute it and it will ask where to install. Browse to your AIO-DVD folder. When finished it will create #TOOLS in there, open create_boot_folders.cmd which calls create_boot_folder.cmd, modify it in your needs and execute it. It will create the boot folders, modify setupldr.bin, modify txtsetup.sif, create the boot sector and copy the tag files. Everything described in http://flyakite.msfnhosting.com/ for Windows 2000/XP/2003 is made automatically B). Doesn't this topic deserve to be sticky ? @amd64lover please give us feedback for 64bit version of windows since I don't have an amd64 to test, but I am pretty sure that everything should be fine.
  12. Edit: New version. You can automatically create the multi-boot folders and files using my batch file for any version of Windows 2000, XP, 2003. Everything needed is included in the file I have uploaded. File attached so people don't need to wait for RapidShare's download ticket ~ Alanoll Here I will post only the main batch file: create_boot_folder.cmd @echo off if [%1] == [] goto :usage if [%2] == [] goto :usage if [%3] == [] goto :usage if [%4] == [] goto :usage if [%5] == [] goto :usage if not [%6] == [] goto :usage if not exist "%~f1" ( echo Directory "%~f1" does not exist. goto :usage ) if not exist "%~f2" ( echo Directory "%~f2" does not exist. goto :usage ) if exist "%~f2\%3" ( echo "%~f2\%3" already exists so nothing to do, please delete it manually goto :end ) set pth=%~f1 set aio=%~f2 call set pth=%%pth:%aio%=%% if "%pth%" == "%~f1" ( echo "%~f1" must be under "%~f2". goto :end ) if exist "%1\I386\TXTSETUP.SIF" ( set src_dir=%1\I386 set dest_dir=%2\%3 set archit=I386 ) else if exist "%1\AMD64\TXTSETUP.SIF" ( set src_dir=%1\AMD64 set dest_dir=%2\%4 set archit=AMD64 ) else ( echo Cannot find TXTSETUP.SIF in I386 or AMD64 in %1 ) type "%src_dir%\TXTSETUP.SIF" | findstr /r ",_[1-9] ,[1-9]_" | sed -e s/"=.*"/""/g -e s/" .*"/""/g > out.txt type out.txt | sed -e s/".$"/"_"/g > out_.txt mkdir "%dest_dir%" for /f %%i in ('type out.txt') do copy "%src_dir%\%%i" "%dest_dir%" > nul 2>&1 for /f %%i in ('type out_.txt') do copy "%src_dir%\%%i" "%dest_dir%" > nul 2>&1 copy "%src_dir%\BOOTFONT.BIN" "%dest_dir%" > nul 2>&1 copy "%src_dir%\BOOTFONT.BIN" "%2" > nul 2>&1 mkdir "%dest_dir%\SYSTEM32" copy "%src_dir%\system32\*.*" "%dest_dir%\SYSTEM32" > nul 2>&1 set pth=%pth:\=\\% type "%src_dir%\TXTSETUP.SIF" | sed -e s/"SetupSourcePath = \""/"SetupSourcePath = \"%pth%"/g > "%dest_dir%\TXTSETUP.SIF" unix2dos "%dest_dir%\TXTSETUP.SIF" del "%dest_dir%\NTDLL.DLL" > nul 2>&1 if "%archit%" == "AMD64" ( mkdir "%2\%3" copy "%1\I386\NTDETECT.COM" "%2\%3" > nul 2>&1 ) if "%5" == "1" ( copy SETUPLDR.BIN "%2\%3" > nul 2>&1 ) else ( copy "%1\I386\SETUPLDR.BIN" "%2\%3" > nul 2>&1 ) start /w xvi32.exe "%2\%3\SETUPLDR.BIN" /S=replaceI386.xsc "%3" if "%archit%" == "AMD64" ( start /w xvi32.exe "%2\%3\SETUPLDR.BIN" /S=replaceAMD64.xsc "%4" ) copy BOOT.BIN "%2\%3.bin" > nul 2>&1 start /w xvi32.exe "%2\%3.bin" /S=universalrepl.xsc "I386" "%3" del OUT.txt > nul 2>&1 del OUT_.txt > nul 2>&1 copy "%1\CDROM*.*" "%2"\ > nul 2>&1 copy "%1\WIN51*.*" "%2"\ > nul 2>&1 goto :end :usage echo Usage: %~n0 setup_dir aio_dir boot_dir1 boot_dir2 flag_for_using_cracked_setupldr goto :end :end Edit: New version so that you don't need to subst your aio-dvd dir anymore. File attached ~ Alanoll Create_MultiBoot_Folders_And_Files.zip
×
×
  • Create New...