Forum overview »
Hardware » Custom install CD with extra drivers? (1/1)
| Custom install CD with extra drivers? |
| Author |
Message |
Demi-god
Junior Member
Posts: 4
Joined: 2003-07-11
Member No.: 20935
|
2003-07-11 20:36:39
Is there any way to add drivers to the XP installation so I could finally get rid of the goddamn legacy 3.5" floppy drive? I'm trying to install XP on a serial ata hdd but it won't be recognised unless I give the drivers on a floppy disk(not even a USB floppy will do). I want to get rid of the floppy disk for good but Microsoft still seems to actively support it since drivers can't be input any other way!
|
|
| Post #128676 |
|
sapiens74
Senior Member
Posts: 1915
Joined: 2000-03-29
Member No.: 2815
|
2003-07-11 21:04:21
Nope
You can add cmd line installations with intel drivers and such, but you have to newer SATA and SCSI controllers via floppy
|
|
| Post #128677 |
|
jmmijo
Senior Member
Posts: 1295
Joined: 2002-05-29
Member No.: 9759
|
2003-07-12 01:37:51
Actually there is a way, but you have to have access to the OEM Pre-Install kits for XP. Since I'm a system builder I do but I can only use them at the shop
I've done this along with slip-streaming the service packs for both Win 2K and XP. You can create an OEM folder for extra drivers and use the F5 key to load these during the initial setup.
I'm not sure you can do this same kind of thing with either the retail or the upgrade versions but perhaps you can.
|
|
| Post #128680 |
|
adamvjackson
Senior Member
Posts: 2174
From: Asheville, NC
Joined: 2002-08-26
Member No.: 12643
|
2003-07-12 02:59:22
You can, and you do not need the OPK. I don't have a link off-hand, but you need to create a custom CD/images with an 'OEM' folder below \i386.
|
|
| Post #128682 |
|
adamvjackson
Senior Member
Posts: 2174
From: Asheville, NC
Joined: 2002-08-26
Member No.: 12643
|
2003-07-12 03:22:22
|
|
| Post #128687 |
|
Demi-god
Junior Member
Posts: 4
Joined: 2003-07-11
Member No.: 20935
|
2003-07-12 09:16:18
Thanks! This was just what I needed.
EDIT: Seems like this was useless information after all  The latter link points to a document which describes how to add OEM drivers in the GUI phase, but I need to add them in the text setup phase! The former link says I need to download the boot disks(floppy disks as they are, this would not help at all).
|
|
| Post #128691 |
|
adamvjackson
Senior Member
Posts: 2174
From: Asheville, NC
Joined: 2002-08-26
Member No.: 12643
|
2003-07-12 11:39:43
If you follow the unattended installation instructions, that should allow you to add a mass-storage controller driver, however, you will need to copy at least the i386 folder to your hard drive, and make a custom CD.
More information on that can be found in DosFreak's Ultimate Slipstream Guide here in the forums.
|
|
| Post #128693 |
|
zen69x
Senior Member
Posts: 125
Joined: 2002-03-26
Member No.: 8860
|
2003-07-12 15:48:44
You can do this. I will see if I can post some better information later. I integrated some OEM SCSI drivers onto a CD and now it recognizes the controller during install. No floppy needed.
|
|
| Post #128702 |
|
Demi-god
Junior Member
Posts: 4
Joined: 2003-07-11
Member No.: 20935
|
2003-07-12 23:15:19
"If you follow the unattended installation instructions, that should allow you to add a mass-storage controller driver, however, you will need to copy at least the i386 folder to your hard drive, and make a custom CD."
The M$ guide says it's impossible to specify additional drivers during unattended setup. Besides, I do NOT want to do an unattended setup!
"More information on that can be found in DosFreak's Ultimate Slipstream Guide here in the forums."
DosFreak's slipstream guide contains no information regarding adding new drivers to text setup phase.
"You can do this. I will see if I can post some better information later. I integrated some OEM SCSI drivers onto a CD and now it recognizes the controller during install. No floppy needed."
I'd be grateful if you could tell me how you accomplished this.
|
|
| Post #128727 |
|
zen69x
Senior Member
Posts: 125
Joined: 2002-03-26
Member No.: 8860
|
2003-07-19 00:05:30
Sorry for the delay.
I will post what I changed to get my Adaptec 2930U2 SCSI controller recognized during the install without having to use a floppy. I would imagine that the changes required for your device should be pretty similar.
First, what you will want to use the makecab utility found in the \winnt\system32 directory to make cab files of your .sys (driver) and .inf (setup) files. Mine were 2930U2.sys and 2930U2.inf which in turn became 2930U2.sy_ and 2930U2.in_ respectively. You will need to copy these files to the i386 directory that will be burned on your CD.
There are only 2 files that you will have to edit:
DOSNET.INF and TXTSETUP.SIF
Under DOSNET.INF I made the following changes:
[FloppyFiles.2]
I added:
d1,2930U2.sys
[Strings]
I added:
2930U2 = "Adaptec 2930U2 Ultra2 PCI SCSI Controller"
[Files]
(Be careful, there are two sections labeled this, you want the 2nd, it also has a very long list after it.) I added:
d1,2930U2.sys
Under TXTSETUP.SIF I made the following changes:
[SourceDisksFiles]
I added:
2930U2.inf = 1,,,,,,,20,0,0
2930U2.sys = 1,,,,,,3_,4,1
[HardwareIdsDatabase]
I added:
PCI\VEN_9005&DEV_0011&SUBSYS_01819005 = "2930U2"
[SCSI.Load]
I added:
2930U2 = 2930U2.sys,4
[SCSI]
I added:
2930U2 = "Adaptec 2930U2 Ultra2 PCI SCSI Controller"
The stuff in quotes is just a text string so nothing special there that I can tell. The only item I see that would be a problem is the PCI\Ven... etc. part. I got the value by opening the registry on a box that already had the adapter installed and went to the HKLM\System\ControlSet001\Enum\PCI key and searched through the values until I found the key that had the adapter that I was looking for.
Alternately, there was a similar setting in the .inf file that is provided with your hardware, I'm not sure if that would work, but I'd bet that it probably would. Mine showed PCI\VEN_9005&DEV_0011 vs. what I entered above.
I hope that helps, or at least gives you a headstart on it. If you want some more help, post your .inf and .sys files or link to the download from the manufacturer and I would be glad to take a look with you.
|
|
| Post #129028 |
|
Demi-god
Junior Member
Posts: 4
Joined: 2003-07-11
Member No.: 20935
|
2003-07-19 18:46:23
A million thanks. zen69x! I made my own XP SP1 cd that recognised my s-ata hdd in the text setup phase without having to rely on a floppy disk.
I wonder why this information wasn't available anywhere else. Maybe everyone else loves floppy disk drives?
|
|
| Post #129046 |
|
sense2k
Junior Member
Posts: 1
Joined: 2006-01-31
Member No.: 77686
|
2006-01-31 18:07:04
Hello Zen
i found this while trying to find a way to install nt4 on a Poweredge 2850 with a 4e/di raid controller. the setup fails - well, it actually does a reboot loop after reading the 2nd setup floppy. so, what i'd like to do is maybe add the 2003 driver to whatever file to have it recognized (hopefully)
do you think this is possible?
|
|
| Post #170319 |
|
Hellgy
Member
|
2006-05-02 14:10:49
If i shall follow your instructions, zen, should i be able to install two Maxtor DiamindMax plus 10(6l080m0) in a sata-raid array, using only those modifications, with no floppy disk?.
|
|
| Post #172674 |
|
Forum overview »
Hardware » Custom install CD with extra drivers?