smartie91 Posted November 30, 2005 Posted November 30, 2005 Hi AllIs it possible to put differant Winnt.sifs on a floppy disc and pick which one i wont to installlike in a batch file on boot up ie the disc boots upto a menu you pick a name and the sif file loadsFood for thoughtSmartie91
Shark007 Posted November 30, 2005 Posted November 30, 2005 The idea isnt new, but to uncomplicate things why not just keepseveral Winnt.sif files on several floppies and use whicheverfloppy is correct for the installation you are about to proceed with.shark
Ghost82 Posted November 30, 2005 Posted November 30, 2005 The idea isnt new, but to uncomplicate things why not just keepseveral Winnt.sif files on several floppies and use whicheverfloppy is correct for the installation you are about to proceed with.sharkI find using multiple floppy's even more complicated. I would do it this way:Place the .sif files in a folder on the CD like so:x:\config1.sifx:\config2.sifx:\config3.sifetc...etc...then create a batch file like so:@echo offSET CHOICE= echo.echo 1. install using config1echo 2. install using config2echo 3. install using config3echo.SET /P CHOICE="Please select the config-file: "if errorlevel == 1 file=config1.sifif errorlevel == 2 file=config2.sifif errorlevel == 3 file=config3.sifetc...winnt32.exe /unattend:[%file%]NOTE: Code may be incorrect/also it think there is a cleaner way, but I'm getting rusty on my batch-skills...
Vadikan Posted December 1, 2005 Posted December 1, 2005 Floppies are rarely found in PCs lately. What if you run across a PC w/o floppy? Multiboot is a nice way to accomplish that. You just need to HEX-edit SETUPLDR.BIN and replace winnt.sif with winnX.sif where X is the number of the scenario. Save the file as SETUPLD1.BIN. Repeat the procedure as many times as you want. In short, you'll haveSETUPLD1.bin referring to winn1.sifSETUPLD2.bin referring to winn2.sifand so on.Then you need to use a boot manager like BCDW and point each boot option to the corresponding SETUPLx.BINIt's a time consuming method given you need to figure out the boot manager stuff, but works everywhere you can boot from CD.
pirrup Posted December 1, 2005 Posted December 1, 2005 BCDW doesn't support SETUPLDR.BIN from winxp sp2 so beware
Vadikan Posted December 1, 2005 Posted December 1, 2005 BCDW doesn't support SETUPLDR.BIN from winxp sp2 so beware 1.5x does not, but 2.01 does. _http://www.bcdwb.de/downloads/bcdw201a.rar
Sonic Posted December 1, 2005 Posted December 1, 2005 You can use EasyBoot too http://www.ezbsystems.com/easyboot/ ... Works like a charm for me
Nakatomi2010 Posted December 1, 2005 Posted December 1, 2005 So, let me get this straight.....If I edit the .dat file (Bootsector) so that it says SETUPLD1.BIN instead of SEUPLDR.BIN, then opened up the corresponding SETUPLDR.BIN in the boot folder and edit every WINNT.SIF reference to say WINN1.SIF, I should be able to have it run with more than one install option?
Grake Posted December 1, 2005 Posted December 1, 2005 http://flyakite.msfnhosting.com/that site gets into the bolts and nuts of the whole thing.
Vadikan Posted December 2, 2005 Posted December 2, 2005 If I edit the .dat file (Bootsector) so that it says SETUPLD1.BIN instead of SEUPLDR.BIN, then opened up the corresponding SETUPLDR.BIN in the boot folder and edit every WINNT.SIF reference to say WINN1.SIF, I should be able to have it run with more than one install option?Not really. I suggested editing SETUPLDR.BIN and replacing winnt.sif with winnX.sif. This is just the first step. Then you have to work on multiboot. Eventually, you get to BCDW's settings where you specify the path to each SETUPLDx.bin. Something like that\i386\setupld1.bin ;Windows XP Professional Unattended ;Unattend\i386\setupldr.bin ;Windows XP Professional Regular ;RegularAll of the above applies only if you go with BCDW. If you need step-by-step directions, study the guide Grake linked to. It doesn't use BCDW, and has some other differences, but is good for those who want to combine different OSs on one medium. If you go with BCDW, I'll try to help you out.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now