installing dummy driver during installation

Hello Everybody,

This is a repeat of my mail to this list earlier.

I want to install a dummy driver during Windows
2000 installation. I want to start this driver
during boot time and indicated the load order
group as “System Bus Extender”.

After pressing F6 during the start of the
installation process, I get the prompt to
include my driver which is then loaded from the
floppy disk.

After the Windows 2000 Executive has been started
and the hard disk prepared for copying the system
files, I get the prompt “Insert the disk labeled
OEM DISK into drive A”.

Despite inserting the floppy containing my driver
and txtsetup.oem files, the system still keeps
asking me the same message. I have labeled this
floppy as “OEM DISK”. I am unable to advance
further.

Relevant portions of the inf file and txtsetup.oem
files is shown below.

Could anybody indicate me where am I going wrong?

Thanks,
Bhargav

Dummy.inf:

[Version]
signature=“$CHICAGO$”
Class=System
ClassGUID={4D36E97D-E325-11CE-BFC1-08002BE10318}
Provider=%INF_PROVIDER%
DriverVer=09/03/2002

[SourceDisksNames]
1 = %FLOPPY_DESCRIPTION%,\

[SourceDisksFiles.x86]
dummy.sys = 1,\
.
.
.
[DUMMY.NTx86]
CopyFiles=@dummy.sys

[DUMMY.NTx86.Services]
AddService = dummy, 2, dummy_Service_Inst, System

[regmon_Service_Inst]
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 0 ; SERVICE_BOOT_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
Tag = 1
ServiceBinary = %12%\dummy.sys
LoadOrderGroup = System Bus Extender

txtsetup.oem:

d1 = “OEM DISK”, \DiskId1.tag, \

[Defaults]
scsi = dummy

[scsi]
dummy= “dummy”, dummy

[Files.scsi.dummy]
driver = d1, dummy.sys, dummy

[Config.dummy]
value=“”,“DisplayName”, REG_SZ, “dummy”
value=“”,“ErrorControl”,REG_DWORD, 1
value=“”,“Group”, REG_SZ,“System Bus Extender”
value=“”,“Start”,REG_DWORD,0
value=“”,“Type”,REG_DWORD,1
value=“”,“Tag”,REG_DWORD,1