How to install Windows from USB- WinSetupFromUSB with GUI Lets make it easy
#1541
Posted 19 November 2011 - 01:46 PM
#1542
Posted 06 December 2011 - 04:38 PM
[SetupData] SetupSourcePath ="\WINSETUP\XPpSP33\" MajorVersion = 5 MinorVersion = 1 DefaultPath=\WINDOWS OsLoadOptions = "/fastdetect /noguiboot /nodebug" ForceScsi = 1 ForceDiskClass = 1 ForceCDRom = 1 Architecture = i386 DriverCabName=driver.cab ProductType = 0 LoadIdentifier = %wks_id% LoadIdentifierCancel = %cancel_id% LoadIdentifierWin9x = %9x_id% BaseVideoLoadId = %wks_id_vga% RequiredMemory = 67108864 Pagefile = 115,250 SetupSourceDevice=\ArcName\multi(0)disk(0)rdisk(1)partition(1) BootPath="\WINSETUP\XPpSP33\I386\" BootDevice="multi(0)disk(0)rdisk(1)partition(1)"
The reason I ask is because when I update my source files, I can just copy the new files to the WINSETUP folder already on my USB Hard Drive so I dont have to rerun the program every time and just add the line above to my new txtsetup file.
#1543
Posted 07 December 2011 - 12:40 PM
Folder name is tied up to the lines you quoted, winsetup.lst and setup.cmd in \I386 folder.
If you want to go that route- get Beyond Compare:
http://www.scootersoftware.com/
Trial version works for looong time. Compare original txtsetup.sif in the small ISO file and the original in \I386 folder. Compare I386 folder structure on USB disk and in your source. I could be forgetting something.
#1544
Posted 07 December 2011 - 02:10 PM
http://www.prestosof...dp_examdiff.asp
jaclaz
#1545
Posted 07 December 2011 - 03:00 PM
#1546
Posted 07 December 2011 - 06:25 PM
#1547
Posted 07 December 2011 - 09:38 PM
jaclaz, on 07 December 2011 - 02:10 PM, said:
http://www.prestosof...dp_examdiff.asp
jaclaz
tomasz86, on 07 December 2011 - 03:00 PM, said:
laddanator, on 07 December 2011 - 06:25 PM, said:
Please read again:
ilko_t, on 07 December 2011 - 12:40 PM, said:
Folder name is tied up to the lines you quoted, winsetup.lst and setup.cmd in \I386 folder.
If you want to go that route- get Beyond Compare:
http://www.scootersoftware.com/
Trial version works for looong time. Compare original txtsetup.sif in the small ISO file and the original in \I386 folder. Compare I386 folder structure on USB disk and in your source. I could be forgetting something.
In short, edit these, if I am not missing something:
1) winsetup.lst
2) txtsetup.sif in the small ISO file
3) setup.cmd in \WINSETUP\XP.....\I386
#1548
Posted 07 December 2011 - 10:43 PM
Quote
1) winsetup.lst
2) txtsetup.sif in the small ISO file
3) setup.cmd in \WINSETUP\XP.....\I386
I rode the short bus growing up!
All I should have to do is replace this line
rem XPhSP3 string is dynamically changed by WinSetupFromUSB when prepariung source set TAGFILE=\WINSETUP\XPhSP3
with this
rem XPhSP3 string is dynamically changed by WinSetupFromUSB when prepariung source set TAGFILE=\WINSETUP\Home
Already changed my txtsetup to this
[SetupData] SetupSourcePath ="\WINSETUP\HOME\" MajorVersion = 5 MinorVersion = 1 DefaultPath=\WINDOWS OsLoadOptions = "/fastdetect /noguiboot /nodebug" ForceScsi = 1 ForceDiskClass = 1 ForceCDRom = 1 Architecture = i386 DriverCabName=driver.cab ProductType = 0 LoadIdentifier = %wks_id% LoadIdentifierCancel = %cancel_id% LoadIdentifierWin9x = %9x_id% BaseVideoLoadId = %wks_id_vga% RequiredMemory = 67108864 Pagefile = 115,250 SetupSourceDevice=\ArcName\multi(0)disk(0)rdisk(1)partition(1) BootPath="\WINSETUP\HOME\I386\" BootDevice="multi(0)disk(0)rdisk(1)partition(1)"
My menu.lst entry
title 01. XP Setup With MOST Driver\nOctober 2011 password --md5 $1$A$hzYlFap3SLNNQ/tA7c3.S. # find the ISO folder by looking for a marker file debug off find --set-root /laddsbootusb.tag clear echo # list all files in the /WINSETUP folder so the user can see them ls ()/WINSETUP/ISO/ echo # Ask user which iso they want (name is converted to uppercase as /u is specified) set /p /u install=Enter XP Filename WITH NO .ISO EXTENSION. (ex.HOME ) : if "%install%"=="" echo No iso file specified! && configfile /menu.lst clear # check if user entered a valid filename with no ISO extension! ls /WINSETUP/ISO/%install%.iso || echo Cannot find /WINSETUP/ISO/%install%.iso !!! && pause --wait=3 && configfile (bd)/menu.lst echo Loading /WINSETUP/ISO/%install%.iso - please wait ... #set root drive to USB stick find --set-root /WINSETUP/ISO/%install%.iso # run the grub4dos map command and specify the iso file we want to load map --unmap=0:0xff map --unhook ls /WINSETUP/ISO/%install%.iso || find --set-root --ignore-cd /WINSETUP/ISO/%install%.iso map /WINSETUP/ISO/%install%.iso (0xff) || map --mem /WINSETUP/ISO/%install%.iso (0xff) savedefault 2 checkrange 0x00,0x01 read 0x8280 && configfile /BOOTWS/fd.lst checkrange 8 calc *0x475 & 0xFF && configfile /BOOTWS/8.lst checkrange 7 calc *0x475 & 0xFF && configfile /BOOTWS/7.lst checkrange 6 calc *0x475 & 0xFF && configfile /BOOTWS/6.lst checkrange 5 calc *0x475 & 0xFF && configfile /BOOTWS/5.lst checkrange 4 calc *0x475 & 0xFF && configfile /BOOTWS/4.lst checkrange 3 calc *0x475 & 0xFF && configfile /BOOTWS/3.lst checkrange 2 calc *0x475 & 0xFF && configfile /BOOTWS/2.lst checkrange 1 calc *0x475 & 0xFF && configfile /BOOTWS/1.lst boot
I created a folder called ISO and copied the small iso files there. So when the files were listed so you could type the name of the XP you want to install, it would only show the iso stuff and not everything else. This works like a charm. just type (example) home and off the install goes
This post has been edited by laddanator: 07 December 2011 - 10:55 PM
#1549
Posted 08 December 2011 - 01:01 PM
#1550
Posted 08 December 2011 - 01:27 PM
laddanator, on 08 December 2011 - 01:01 PM, said:
XP is designed to launch setup.exe.
A fake setup.exe is used to lauch setup.cmd.
Source code is at WinSetup\files\winsetup\PyronSetup\setup.c
Pyron created this approach http://www.msfn.org/...rivers-from-cd/
This version calls presetup.cmd. A new name was chosen to keep old solutions working.
#1551
Posted 09 December 2011 - 05:37 AM
I am interested in making Multy boot flash drive .
I would like to have on it :
Win xp
Win 7
Hirens boot cd
can you please help me with some tutorial how to do it ?
Thank you.
#1552
Posted 09 December 2011 - 05:41 AM
(Hirens)
Please take some time to review our forum rules especially #1
#1553
Posted 19 December 2011 - 06:46 PM
#1554
Posted 19 December 2011 - 06:58 PM
Need to think a bit in this direction, it's possible the fix is easy.
#1555
Posted 19 December 2011 - 07:12 PM
ilko_t, on 19 December 2011 - 06:58 PM, said:
I just made a Dec Complete XP DVD. I will use it for plan B. I hope Grub4Dos will in the future maybe pass the ARC to USB. I was hoping this to be a better alternative to PLop. On XP machines, I have found it's 50-50 if they will boot USB and Vista and up like 95-10. If I have a Vista or Win 7 not boot to USB for some strange reason, the Grub4Dos CD loads my USB menu.lst and Vista or 7 install fine. I make a AIO XP DVD but I have to hex the Setupldr.bin to match my folder name (can only use 4 letters and or numbers). Of course I have to change the path in txtsetup.sif like your program. I like booting and using USB, much faster but nothing is as reliable as CD or DVD booting.
#1556
Posted 19 December 2011 - 07:13 PM
Quote
What if the biosinfo file was added to the small ISO to load to memory and hook it that way?
Maybe add a line to the path in the fd.lst?
This post has been edited by laddanator: 19 December 2011 - 07:21 PM
#1557
Posted 19 December 2011 - 07:21 PM
laddanator, on 19 December 2011 - 07:13 PM, said:
Quote
What if the biosinfo file was added to the small ISO to load to memory and hook it that way?
#1558
Posted 19 December 2011 - 07:26 PM
Quote
Very interesting
By the way, forgot to mention on my computer, I can pass the torch to USB from Grub4Dos BootCD and XP loads fine.
Asus Model:M4A88TD-M/USB3. Got this board last Dec
This post has been edited by laddanator: 19 December 2011 - 07:32 PM
#1559
Posted 19 December 2011 - 07:55 PM
default /windefault?
in the header of the winsetup.lst
This post has been edited by laddanator: 19 December 2011 - 08:01 PM
#1560
Posted 19 December 2011 - 08:35 PM
laddanator, on 19 December 2011 - 07:55 PM, said:
default /windefault?
in the header of the winsetup.lst
http://diddy.boot-la...enu.htm#default
Quote
- ← Help me detect what kind of BCD
- Install Windows from USB
- Install all Windows Install ISOs from 1 MultiBoot USB drive →



Help

Back to top










