Disks Section of a TxtSetup.oem File

The Disks section identifies the disks in the device installation kit. This section has the following format:

[Disks]
diskN = "description",tagfile,directory
...

diskN
Specifies a key that can be used in subsequent sections to identify the disk.

description
Specifies a string containing the name of the disk. Windows uses the description to prompt the user to insert the disk.

tagfile
Specifies the name of a verification file on the disk. The filename must be specified as a full path from the root and must not specify a drive. Windows checks for this file to ensure that the user inserted the correct disk.

directory
Specifies the directory on the disk where the installation files are located. The directory must be specified as a full path from the root and must not specify a drive.

The following example shows a Disks section for an installation kit with two disks:

[Disks]
disk1 = "OEM SCSI driver disk 1",\disk1.tag,\
disk2 = "OEM SCSI driver disk 2",\disk2.tag,\
; ...