private void LoadFiles() { m_textSetupInf = new TextSetupINFFile(); m_textSetupInf.ReadFromDirectory(this.SetupDirectory); m_hiveSoftwareInf = new HiveSoftwareINFFile(); m_hiveSoftwareInf.ReadFromDirectory(this.SetupDirectory); if (this.Is64Bit) { m_hiveSoftware32Inf = new HiveSoftware32INFFile(); m_hiveSoftware32Inf.ReadFromDirectory(this.SetupDirectory); } m_hiveSystemInf = new HiveSystemINFFile(); m_hiveSystemInf.ReadFromDirectory(this.SetupDirectory); if (!this.IsTargetContainsTemporaryInstallation) { // integration to installation media m_dosNetInf = new DosNetINFFile(); m_dosNetInf.ReadFromDirectory(this.SetupDirectory); } m_setupRegistryHive = new SetupRegistryHiveFile(); m_netGPCInf = new NetGPCINFFile(); m_netGPCInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_netPacketSchedulerInf = new NetPacketSchedulerINFFile(); m_netPacketSchedulerInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_netPacketSchedulerAdapterInf = new NetPacketSchedulerAdapterINFFile(); m_netPacketSchedulerAdapterInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_netTCPIP = new NetTCPIPINFFile(); m_netTCPIP.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_halInf = new HalINFFile(); m_halInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_usbInf = new UsbINFFile(); m_usbInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); m_usbStorageClassDriverInf = new UsbStorageClassDriverINFFile(); m_usbStorageClassDriverInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); if (!this.IsWindows2000) // usbport.inf does not exist in Windows 2000 { m_usbPortInf = new UsbPortINFFile(); m_usbPortInf.ReadPackedCriticalFileFromDirectory(this.SetupDirectory); } }
// update txtsetup.sif and dotnet.inf private void UpdateTextSetupInformationFileAndCopyFiles(string deviceID) { // Files.HwComponent.ID Section TextModeDriverSetupINIFile driverINI = m_driverDirectory.TextModeDriverSetupINI; List <string> section = driverINI.GetDriverFilesSection(deviceID); string serviceName = String.Empty; List <string> driverKeys = new List <string>(); string sourceDirectoryInMediaRootForm = m_installation.GetSourceDriverDirectoryInMediaRootForm(deviceID); int sourceDiskID = m_installation.TextSetupInf.AllocateSourceDiskID(m_installation.ArchitectureIdentifier, sourceDirectoryInMediaRootForm); string destinationWinntDirectory = m_installation.GetDriverDestinationWinntDirectory(m_deviceID); int destinationWinntDirectoryID = m_installation.TextSetupInf.AllocateWinntDirectoryID(destinationWinntDirectory); foreach (string line in section) { KeyValuePair <string, List <string> > keyAndValues = INIFile.GetKeyAndValues(line); string fileType = keyAndValues.Key; string directory = driverINI.GetDirectoryOfDisk(keyAndValues.Value[0]); string fileName = keyAndValues.Value[1]; string sourceFilePath = m_driverDirectory.Path + "." + directory + @"\" + fileName; bool isDriver = keyAndValues.Key.Equals("driver", StringComparison.InvariantCultureIgnoreCase); m_installation.CopyFileToSetupDriverDirectory(sourceFilePath, deviceID + @"\", fileName); if (isDriver) { m_installation.CopyDriverToSetupRootDirectory(sourceFilePath, fileName); if (m_installation.IsTargetContainsTemporaryInstallation) { m_installation.CopyFileFromSetupDirectoryToBootDirectory(fileName); } } m_installation.TextSetupInf.SetSourceDisksFileEntry(m_installation.ArchitectureIdentifier, sourceDiskID, destinationWinntDirectoryID, fileName, FileCopyDisposition.AlwaysCopy); if (isDriver) { // http://msdn.microsoft.com/en-us/library/ff544919%28v=VS.85%29.aspx // unlike what one may understand from the reading specs, this value is *only* used to form [Config.DriverKey] section name, // and definitely NOT to determine the service subkey name under CurrentControlSet\Services. (which is determined by the service file name without a .sys extension) string driverKey = keyAndValues.Value[2]; // http://support.microsoft.com/kb/885756 // according to this, only the first driver entry should be processed. // http://app.nidc.kr/dirver/IBM_ServerGuide_v7.4.17/sguide/w3x64drv/$oem$/$1/drv/dds/txtsetup.oem // however, this sample and my experience suggest that files / registry entries from a second driver entry will be copied / registered, // (both under the same Services\serviceName key), so we'll immitate that. driverKeys.Add(driverKey); if (serviceName == String.Empty) { // Some txtsetup.oem drivers are without HardwareID entries, // but we already know that the service is specified by the file name of its executable image without a .sys extension, // so we should use that. serviceName = TextSetupINFFile.GetServiceName(fileName); } // We should use FileCopyDisposition.DoNotCopy, because InstructToLoadSCSIDriver will already copy the device driver. m_installation.TextSetupInf.SetSourceDisksFileDriverEntry(m_installation.ArchitectureIdentifier, fileName, FileCopyDisposition.DoNotCopy); m_installation.TextSetupInf.SetFileFlagsEntryForDriver(fileName); string deviceName = driverINI.GetDeviceName(deviceID); m_installation.TextSetupInf.InstructToLoadSCSIDriver(fileName, deviceName); } // add file to the list of files to be copied to local source directory if (!m_installation.IsTargetContainsTemporaryInstallation) { m_installation.DosNetInf.InstructSetupToCopyFileFromSetupDirectoryToLocalSourceDriverDirectory(sourceDirectoryInMediaRootForm, fileName); if (isDriver) { m_installation.DosNetInf.InstructSetupToCopyFileFromSetupDirectoryToBootDirectory(fileName); } } } section = driverINI.GetHardwareIdsSection(deviceID); foreach (string line in section) { KeyValuePair <string, List <string> > keyAndValues = INIFile.GetKeyAndValues(line); string hardwareID = keyAndValues.Value[0]; // http://msdn.microsoft.com/en-us/library/ff546129%28v=VS.85%29.aspx // The service is specified by the file name of its executable image without a .sys extension // it is incomprehensible that this line will change the value of serviceName, because we already set serviceName to the service file name without a .sys extension serviceName = INIFile.Unquote(keyAndValues.Value[1]); hardwareID = INIFile.Unquote(hardwareID); m_installation.TextSetupInf.AddDeviceToCriticalDeviceDatabase(hardwareID, serviceName); } foreach (string driverKey in driverKeys) { section = driverINI.GetConfigSection(driverKey); foreach (string line in section) { KeyValuePair <string, List <string> > keyAndValues = INIFile.GetKeyAndValues(line); string subKeyNameQuoted = keyAndValues.Value[0]; string valueName = keyAndValues.Value[1]; string valueType = keyAndValues.Value[2]; string valueDataUnparsed = keyAndValues.Value[3]; RegistryValueKind valueKind = TextModeDriverSetupINIFile.GetRegistryValueKind(valueType); object valueData = HiveINIFile.ParseValueDataString(valueDataUnparsed, valueKind); string subKeyName = INIFile.Unquote(subKeyNameQuoted); m_installation.HiveSystemInf.SetServiceRegistryKey(serviceName, subKeyName, valueName, valueKind, valueData); m_installation.SetupRegistryHive.SetServiceRegistryKey(serviceName, subKeyName, valueName, valueKind, valueData); } } }