Jump to content

donald7777

Member
  • Posts

    24
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About donald7777

donald7777's Achievements

0

Reputation

  1. I don't think I can help you with your question, but I would be fascinated to see your other cmd scripts such as "create_boot_folder.cmd" and get a better understanding of how this all works. Cheers and Regards here is the code for create_boot_folder.cmd. please note it is not my code, but from a great person on this board. @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
  2. Hello, I am remaking one of my AIO xp discs. The problem is I have 256 versions of xp on my disc and my create_boot_folders is complaining that foo already exists. I know it has to do with the 64bit versions of xp, but how to I setup the proper command for these. I have included the create_boot_folders text below. Please help, thank you. @echo off rem Change the following lines having this in mind: rem call create_boot_folder.cmd setup_dir aio_dir boot_dir1 boot_dir2 flag_for_using_cracked_setupldr rem rem setup_dir: where the setup files are rem aio_dir: where your aio folder is rem boot_dir1: must be 4-characters long rem boot_dir2: must be 5-characters long, needed only for 64bit versions of windows rem (if boot_dir2 isn't needed (for 32bit versions) write anything e.g. FOO since it will be ignored) rem flag_for_using_cracked_setupldr=1 for 64bit versions and Windows Server 2003 with SP1 rem When you have changed this file save it and run it. echo Creating multi-boot folders and files, it will take some time... REM H FOR HOME P FOR PRO M FOR MEDIA-CENTER REM 0 1 A 2 B 3 SERVICEPACKS REM R FOR RETAIL O FOR OEM U FOR UPGRADE V FOR VOLUME REM 0ORIGNAL 1ORIGNAL-UPDATES 2TEXTMODE 3TEXTMODE-REPAIR 4TEXTMODE-UPDATES 5TEXTMODE-UPDATES-REPAIR 6DRIVERPACKS 7DRIVERPACKS-REPAIR 8DRIVERPACKS-UPDATES 9DRIVERPACKS-UPDATES-REPAIR REM 6 FOR 64 BIT VERSIONS ONLY call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc H0R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H0R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H0R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H0R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-ORIGINAL I:\Template-for-AIO-Disc H0R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H0R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-TEXTMODE I:\Template-for-AIO-Disc H0R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H0R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H0R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP0-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H0R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-DRIVERPACKS I:\Template-for-AIO-Disc H1O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H1O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H1O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H1O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-ORIGINAL I:\Template-for-AIO-Disc H1O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H1O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-TEXTMODE I:\Template-for-AIO-Disc H1O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H1O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H1O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H1O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-DRIVERPACKS I:\Template-for-AIO-Disc HAO6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc HAO7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc HAO8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc HAO9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-ORIGINAL I:\Template-for-AIO-Disc HAO0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc HAO1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-TEXTMODE I:\Template-for-AIO-Disc HAO2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc HAO3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc HAO4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc HAO5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-DRIVERPACKS I:\Template-for-AIO-Disc HAU6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc HAU7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc HAU8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc HAU9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-ORIGINAL I:\Template-for-AIO-Disc HAU0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-ORIGINAL-UPDATES I:\Template-for-AIO-Disc HAU1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-TEXTMODE I:\Template-for-AIO-Disc HAU2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-TEXTMODE-REPAIR I:\Template-for-AIO-Disc HAU3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-TEXTMODE-UPDATES I:\Template-for-AIO-Disc HAU4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP1A-UPGRADE-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc HAU5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-DRIVERPACKS I:\Template-for-AIO-Disc H2O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H2O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H2O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H2O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-ORIGINAL I:\Template-for-AIO-Disc H2O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H2O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-TEXTMODE I:\Template-for-AIO-Disc H2O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H2O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H2O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H2O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc H2R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H2R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H2R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H2R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-ORIGINAL I:\Template-for-AIO-Disc H2R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H2R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-TEXTMODE I:\Template-for-AIO-Disc H2R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H2R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H2R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP2-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H2R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-DRIVERPACKS I:\Template-for-AIO-Disc H3O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H3O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H3O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H3O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-ORIGINAL I:\Template-for-AIO-Disc H3O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H3O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-TEXTMODE I:\Template-for-AIO-Disc H3O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H3O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H3O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H3O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc H3R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H3R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H3R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H3R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-ORIGINAL I:\Template-for-AIO-Disc H3R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H3R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-TEXTMODE I:\Template-for-AIO-Disc H3R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H3R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H3R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H3R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-DRIVERPACKS I:\Template-for-AIO-Disc H3U6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc H3U7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc H3U8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc H3U9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-ORIGINAL I:\Template-for-AIO-Disc H3U0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-ORIGINAL-UPDATES I:\Template-for-AIO-Disc H3U1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-TEXTMODE I:\Template-for-AIO-Disc H3U2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-TEXTMODE-REPAIR I:\Template-for-AIO-Disc H3U3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-TEXTMODE-UPDATES I:\Template-for-AIO-Disc H3U4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-HOME-SP3-UPGRADE-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc H3U5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-DRIVERPACKS I:\Template-for-AIO-Disc M2O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc M2O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc M2O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc M2O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-ORIGINAL I:\Template-for-AIO-Disc M2O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc M2O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-TEXTMODE I:\Template-for-AIO-Disc M2O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc M2O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc M2O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-MCE-SP2-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc M2O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-DRIVERPACKS I:\Template-for-AIO-Disc P0O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P0O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P0O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P0O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-ORIGINAL I:\Template-for-AIO-Disc P0O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P0O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-TEXTMODE I:\Template-for-AIO-Disc P0O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P0O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P0O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P0O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc P0R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P0R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P0R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P0R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-ORIGINAL I:\Template-for-AIO-Disc P0R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P0R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-TEXTMODE I:\Template-for-AIO-Disc P0R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P0R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P0R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P0R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-DRIVERPACKS I:\Template-for-AIO-Disc P0U6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P0U7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P0U8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P0U9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-ORIGINAL I:\Template-for-AIO-Disc P0U0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P0U1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-TEXTMODE I:\Template-for-AIO-Disc P0U2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P0U3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P0U4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP0-UPGRADE-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P0U5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-RETAIL-X64-ORIGINAL I:\Template-for-AIO-Disc P0U06 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-RETAIL-X64-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P0U16 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-DRIVERPACKS I:\Template-for-AIO-Disc P1V6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P1V7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P1V8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P1V9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-ORIGINAL I:\Template-for-AIO-Disc P1V0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P1V1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-TEXTMODE I:\Template-for-AIO-Disc P1V2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P1V3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P1V4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1-VLK-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P1V5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-DRIVERPACKS I:\Template-for-AIO-Disc PAO6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc PAO7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc PAO8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc PAO9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-ORIGINAL I:\Template-for-AIO-Disc PAO0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc PAO1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-TEXTMODE I:\Template-for-AIO-Disc PAO2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc PAO3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc PAO4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP1A-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc PAO5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-DRIVERPACKS I:\Template-for-AIO-Disc P2O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P2O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P2O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P2O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-ORIGINAL I:\Template-for-AIO-Disc P2O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-TEXTMODE I:\Template-for-AIO-Disc P2O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P2O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P2O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P2O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-X64-ORIGINAL I:\Template-for-AIO-Disc P2O06 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-OEM-X64-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2O16 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc P2R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P2R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P2R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P2R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-ORIGINAL I:\Template-for-AIO-Disc P2R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-TEXTMODE I:\Template-for-AIO-Disc P2R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P2R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P2R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P2R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-X64-ORIGINAL I:\Template-for-AIO-Disc P2R06 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-RETAIL-X64-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2R16 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-DRIVERPACKS I:\Template-for-AIO-Disc P2U6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P2U7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P2U8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P2U9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-ORIGINAL I:\Template-for-AIO-Disc P2U0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2U1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-TEXTMODE I:\Template-for-AIO-Disc P2U2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P2U3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P2U4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-UPGRADE-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P2U5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-DRIVERPACKS I:\Template-for-AIO-Disc P2V6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P2V7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P2V8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P2V9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-ORIGINAL I:\Template-for-AIO-Disc P2V0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P2V1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-TEXTMODE I:\Template-for-AIO-Disc P2V2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P2V3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P2V4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2-VLK-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P2V5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc PBR6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc PBR7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc PBR8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc PBR9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-ORIGINAL I:\Template-for-AIO-Disc PBR0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc PBR1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-TEXTMODE I:\Template-for-AIO-Disc PBR2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc PBR3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc PBR4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc PBR5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-DRIVERPACKS I:\Template-for-AIO-Disc PBV6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc PBV7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc PBV8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc PBV9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-ORIGINAL I:\Template-for-AIO-Disc PBV0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-ORIGINAL-UPDATES I:\Template-for-AIO-Disc PBV1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-TEXTMODE I:\Template-for-AIO-Disc PBV2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-TEXTMODE-REPAIR I:\Template-for-AIO-Disc PBV3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-TEXTMODE-UPDATES I:\Template-for-AIO-Disc PBV4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP2B-VLK-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc PBV5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-DRIVERPACKS I:\Template-for-AIO-Disc P3O6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P3O7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P3O8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P3O9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-ORIGINAL I:\Template-for-AIO-Disc P3O0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P3O1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-TEXTMODE I:\Template-for-AIO-Disc P3O2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P3O3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P3O4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-OEM-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P3O5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-DRIVERPACKS I:\Template-for-AIO-Disc P3R6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P3R7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P3R8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P3R9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-ORIGINAL I:\Template-for-AIO-Disc P3R0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P3R1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-TEXTMODE I:\Template-for-AIO-Disc P3R2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P3R3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P3R4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-RETAIL-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P3R5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-DRIVERPACKS I:\Template-for-AIO-Disc P3U6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P3U7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P3U8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P3U9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-ORIGINAL I:\Template-for-AIO-Disc P3U0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P3U1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-TEXTMODE I:\Template-for-AIO-Disc P3U2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P3U3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P3U4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-UPGRADE-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P3U5 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-DRIVERPACKS I:\Template-for-AIO-Disc P3V6 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-DRIVERPACKS-REPAIR I:\Template-for-AIO-Disc P3V7 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-DRIVERPACKS-UPDATES I:\Template-for-AIO-Disc P3V8 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-DRIVERPACKS-UPDATES-REPAIR I:\Template-for-AIO-Disc P3V9 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-ORIGINAL I:\Template-for-AIO-Disc P3V0 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-ORIGINAL-UPDATES I:\Template-for-AIO-Disc P3V1 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-TEXTMODE I:\Template-for-AIO-Disc P3V2 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-TEXTMODE-REPAIR I:\Template-for-AIO-Disc P3V3 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-TEXTMODE-UPDATES I:\Template-for-AIO-Disc P3V4 FOO 0 call create_boot_folder.cmd I:\Template-for-AIO-Disc\ROOT\XP\XP-PRO-SP3-VLK-TEXTMODE-UPDATES-REPAIR I:\Template-for-AIO-Disc P3V5 FOO 0 echo If you don't see any error message above then everything should be ok, but please check. pause
  3. Hello, I am trying to find out where to save the Runceonceex.cmd file based on the cd method. Do we save it in the $oem$ folders? If so can we make it a place holder to install from a cmd file from the root of the cd. This way it saves space and helps with editing multiple copies of the same file.
  4. this would be great. I usally rebuild my discs after ms has a 100 updates or whenever there is 200 megs of updates whicheever one is the last. Rebuilding usually takes 3-4 weaks testing everything making sure all my software works one at a time then all at once. If there are new gret tricks they would be gretly appreicated.
  5. ok here is what i have setup. I have a multiboot disk, and was running into problems with the driverpack finnisher. Here are my files. cd setup root | | boot- this holds all the boot files cdshell.ini etc | | oem- this holds the driverpack files | | root----holds the home and pro xps | | software----- holds the software and the INSTALL.CMD | | tools----- holds the menu and lang files | WIN51, WIN51IC, etc files INSTALL.CMD REM begin example to install software or tweaks based on os REM :XHHO REM Here we'll add the SOFTWARE to install to the XP Professional SP3 Corp With DriverPacks version. REM "%~dp0" refers to the full path the Install.cmd is in, so you don't have to worry about drive letters REM End this section REM end of this section : goto :end REM :XHHR REM Here we'll add the SOFTWARE to install to the XP Professional SP3 Corp version. REM End this section REM end of this section : goto :end REM :XHHU REM Here we'll add the SOFTWARE to install to the XP Professional SP3 Retail With DriverPacks version. REM End this section REM end of this section : goto :end :end REM Here we'll add the Applications for every OS. CALL %SystemDrive%\DPsFnshr.exe START /WAIT %CDROM%\SOFTWARE\ADOBE\Flash\FLASH_PLAYER_10.1.MSI /q START /WAIT %CDROM%\SOFTWARE\ADOBE\Shockwave\SW_LIC_FULL_INSTALLER.MSI /qn START /WAIT %CDROM%\SOFTWARE\ADOBE\READER\AdbeRdr1000_en_US.exe /msi /norestart /quiet START /WAIT %SystemDrive%\DPsFnshr.exe REM Installing Reg Tweaks regedit /s "%CDROM%\SOFTWARE\Registry\IE-BRANDING.REG" regedit /s "%CDROM%\SOFTWARE\Registry\Disable-IE-Setup.reg" regedit /s "%CDROM%\SOFTWARE\Registry\Disable-Tour.reg" REM Cleaning up the system. net user aspnet /delete DEL "%AllUsersProfile%\Start Menu\Set Program Access and Defaults.lnk" DEL "%AllUsersProfile%\Start Menu\Windows Catalog.lnk" exit now in the i386 folder there is a folder called svcpack in this folder there is another folder call CMD in CMD is a file called RUNONCE.CMD here is whats inside it @echo off for %%i in (c d e f g h i j k l m n o p q r s t u v w x y z) do if exist "%%i:\SOFTWARE\Install.cmd" call %%i:\SOFTWARE\Install.cmd exit inside the i386 folder there is a file called svcpack.inf [Version] Signature="$Windows NT$" MajorVersion=5 MinorVersion=1 BuildNumber=2600 [SetupData] CatalogSubDir="\i386\SVCPACK" [SetupHotfixesToRun] CMD\RunOnce.cmd [ProductCatalogsToInstall] BASECSP.CAT D3DX9_24_X86.CAT KB817688.CAT KB889320-V2.CAT KB897571.CAT XACT_X86.CAT XINPUT1_1_X86.CAT XINPUT1_2_X86.CAT XINPUT9_1_0_X86.CAT [SetupHotfixesToRun] [CatalogHeader] and here is my winnt.sif AutomaticUpdates="Yes" Autopartition=0 MsDosInitiated=0 UnattendedInstall="Yes" [Display] Xresolution=1024 Yresolution=768 BitsPerPel=16 Vrefresh=60 [SystemRestore] [GuiUnattended] TimeZone=015 OEMSkipRegional=1 OemSkipWelcome=1 [Components] WDSearch=Off msnexplr=off [UserData] ProductKey="xxxxx-xxxxxx-xxxxx-xxxxx-xxxxx" [RegionalSettings] LanguageGroup=1 SystemLocale="0409" UserLocale="0409" UserLocale_DefaultUser="0409" InputLocale="0409:00000409" InputLocale_DefaultUser="0409:00000409" [Networking] InstallDefaultComponents="Yes" [Identification] JoinWorkgroup="MSHOME" [GuiUnattended] "%SystemRoot%\SOFTWARE\Install.cmd" now does everything look good to you guys and gals. there are no loops or wierd things going on, or can this be optimized? Thank you. PS how would you call the driverpacks finisher or where would you place it?
  6. oh ok, I will use my discs and create a AIO server disc than. The discs have sp1 so i will slipstream sp2 if there's any problems i will post. thx.
  7. How is this warez, i don't use it to pirate, I use it for work. I am tired of caring around multiple cds when i could have everything on one disk I have all the pressed discs from my work, I just downloaded this one because i don't what to make an AIO disc myself if its already available.
  8. Hello, I have a copy of SERVER 2003 AIO from x-betas that has no service packs. I have slip streamed sp1 and 2 into the disc and that works fine. the AIO is intact and great, However when i install the install asks for files like notepad.ex_ etc and i click browse and they show up on the disc and work when i click ok. How do i stop this? is it because of sp2?
  9. ok the calls work great but it still give me an error when it trys to find the tag. i even removed all the tag info so to test out the code be errors still appear. @ECHO OFF&SETLOCAL ENABLEEXTENSIONS FOR %%# IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO ( IF EXIST %%#:\SOFTWARE SET "CDROM=%%#:") REM CHECKS FOR A TAG FILE AND GOES TO THE CORRESPONDING SECTION FOR %%# IN (%SYSTEMDRIVE%\*.TAG) DO CALL :%%~n# GOTO :end :end REM Here we'll add the options for every OS. CALL %SystemDrive%\DPsFnshr.exe START /WAIT %CDROM%\SOFTWARE\ADOBE\Flash\install_flash_player_10_active_x.msi /q START /WAIT %CDROM%\SOFTWARE\ADOBE\Shockwave\sw_lic_full_installer.msi /qn CALL %CDROM%\SOFTWARE\OEMLOGO.CMD CALL %CDROM%\SOFTWARE\REGISTRY.CMD CALL "del /f /q %SystemDrive%\*.TAG" CALL %CDROM%\SOFTWARE\CLEANUP.CMD exit here is error: The system cannot find the batch label specified - XPHR maybe i am blind and missing an obvious command.
  10. hello everyone, I am just finishing my multiboot disk for different computers around my home. when i get this error when it install my software. The system cannot find the batch label specified - XPHO 1 file<s> copied here is my install.cmd cmdow @ /HID @echo off FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\SOFTWARE SET CDROM=%%i: @echo off REM next line makes sure the *.TAG extension is identified setlocal enableextensions REM checks for the XPHO.tag file and go to the corresponding section: if exist %SystemDrive%\XPHO.TAG call :XPHO REM checks for the XPHR.tag and go to the corresponding section: if exist %SystemDrive%\XPHR.TAG call :XPHR REM checks for the XPHU.tag and go to the corresponding section: if exist %SystemDrive%\XPHU.TAG call :XPHU REM checks for the XPPC.tag and go to the corresponding section: if exist %SystemDrive%\XPPC.TAG call :XPPC REM checks for the XPPO.tag and go to the corresponding section: if exist %SystemDrive%\XPPO.TAG call :XPPO REM checks for the XPPR.tag and go to the corresponding section: if exist %SystemDrive%\XPPR.TAG call :XPPR REM checks for the XPPU.tag and go to the corresponding section: if exist %SystemDrive%\XPPU.TAG call :XPPU REM checks for the XHOD.tag and go to the corresponding section: if exist %SystemDrive%\XHOD.TAG call :XHOD REM checks for the XHRD.tag and go to the corresponding section: if exist %SystemDrive%\XHRD.TAG call :XHRD REM checks for the XHUD.tag and go to the corresponding section: if exist %SystemDrive%\XHUD.TAG call :XHUD REM checks for the XPCD.tag and go to the corresponding section: if exist %SystemDrive%\XPCD.TAG call :XPCD REM checks for the XPOD.tag and go to the corresponding section: if exist %SystemDrive%\XPOD.TAG call :XPOD REM checks for the XPRD.tag and go to the corresponding section: if exist %SystemDrive%\XPRD.TAG call :XPRD REM checks for the XPUD.tag and go to the corresponding section: if exist %SystemDrive%\XPUD.TAG call :XPUD REM End goto :end :XPHO REM Here we'll add the SOFTWARE to install to the XP Home OEM version. REM "%~dp0" refers to the full path the Install.cmd is in, so you don't have to worry about drive letters REM End this section REM end of this section : goto :end :XPHR REM Here we'll add the SOFTWARE to install to the XP Home Retail version. REM End this section REM end of this section : goto :end :XPHU REM Here we'll add the SOFTWARE to install to the XP Home Upgrade version. REM End this section REM end of this section : goto :end :XPPC REM Here we'll add the SOFTWARE to install to the XP Professional Corporate version. REM End this section REM end of this section : goto :end :XPPO REM Here we'll add the SOFTWARE to install to the XP Professional OEM version. REM End this section REM end of this section : goto :end :XPPR REM Here we'll add the SOFTWARE to install to the XP Professional Retail version. REM End this section REM end of this section : goto :end :XPPU REM Here we'll add the SOFTWARE to install to the XP Professional Upgrade version. REM End this section REM end of this section : goto :end :XHOD REM Here we'll add the SOFTWARE to install to the XP Home OEM version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XHRD REM Here we'll add the SOFTWARE to install to the XP Home Retail version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XHUD REM Here we'll add the SOFTWARE to install to the XP Home Upgrade version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XPCD REM Here we'll add the SOFTWARE to install to the XP Professional Corporate version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XPOD REM Here we'll add the SOFTWARE to install to the XP Professional OEM version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XPRD REM Here we'll add the SOFTWARE to install to the XP Professional Retail version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :XPUD REM Here we'll add the SOFTWARE to install to the XP Professional Upgrade version. %SystemDrive%\DPsFnshr.exe REM End this section REM end of this section : goto :end :end REM Here we'll add the options for every OS. %CDROM%\SOFTWARE\ADOBE\Flash\install_flash_player_10_active_x.msi /q %CDROM%\SOFTWARE\ADOBE\Shockwave\sw_lic_full_installer.msi /qn %CDROM%\SOFTWARE\OEMLOGO.CMD %CDROM%\SOFTWARE\REGISTRY.CMD %CDROM%\SOFTWARE\CLEANUP.CMD del /f /q %SystemDrive%\*.TAG exit please help
  11. hello I am back. I am trying to install adobe reader with the runince quitetly. It still doesnt work. I have added the "/ to the runonce like in the guide but that still didn't work do i need 3 quotations? here is my code. REG ADD %KEY%\002 /VE /D "Adobe Reader" /f REG ADD %KEY%\002 /V 1 /D "%CDROM%\Software\Adobe\Reader\AcroRead.msi" transforms="%CDROM%\Software\Adobe\Reader\AcroRead.mst" /qn /f I have tryed REG ADD %KEY%\002 /VE /D "Adobe Reader" /f REG ADD %KEY%\002 /V 1 /D "\"%CDROM%\Software\Adobe\Reader\AcroRead.msi" transforms="%CDROM%\Software\Adobe\Reader\AcroRead.mst" /qn\" /f and that didnt work either, Maybe i am missing something.
  12. apparently my last post never posted. it turned out the sp3 cd was the problem. made my own from sp2 and it was working.
  13. keys did post to the registry. I downloaded a untouched xp pro sp3 cd and I am trying it there . So far it seems to work except it doesn't install the programs. still checking things out on it. will post back later if i narrow anything down.
  14. ill try an older non sp3 xp pro cd maybe ms changed something.
×
×
  • Create New...