레지스트리 HKLM\SYSTEM\CurrentControlset\Services 아래의 님의 드라이버 세팅정보중 Start값을 바꿔 보시겠습니까? 2 ~ 0 의 값중 하나로 말이지요. 자세한 내용은 ddk에 나와 있습니다만, 0으로 갈수록 시작순서가 빨라집니다.^^
아래는 ddk의 내용입니다. 도움이 되었길 바라겠습니다.
Specifies when to start the driver as one of the following numerical values, expressed either in decimal or, as shown here, in hexadecimal notation. 0x0 (SERVICE_BOOT_START) Indicates a driver started by the operating system loader. This value must be used for drivers of devices required for loading the operating system.
0x1 (SERVICE_SYSTEM_START) Indicates a driver started during operating system initialization. This value should be used by PnP drivers that do device detection during initialization but are not required to load the system.
For example, a PnP driver that also can detect a legacy device should specify this value in its INF so that its DriverEntry routine will be called to find the legacy device, even if that device cannot be enumerated by the PnP manager.
0x2 (SERVICE_AUTO_START) Indicates a driver started by the service control manager during system startup. This value should never be used in the INF files for WDM or PnP device drivers.
0x3 (SERVICE_DEMAND_START) Indicates a driver started on demand, either by the PnP manager when the corresponding device is enumerated or possibly by the service control manager in response to an explicit user demand for a non-PnP device. This value should be used in the INF files for all WDM drivers of devices that are not required to load the system and for all PnP device drivers that are neither required to load the system nor engaged in device detection.
0x4 (SERVICE_DISABLED) Indicates a driver that cannot be started. This value can be used to temporarily disable the driver services for a device, but a device/driver cannot be installed if this value is specified in the service-install section of its INF file.
>로그인 전에 나오는 사운드 관련 프로그램을 만들었는데 2000에서는 동작되는데 XP에서는 동작이 안되더군요. 알아보니 XP에서는 사운드 드라이버가 늦게 뜨기 때문이던데. 강제로 드라이버 로딩순서를 바꿀수 있을까요? > >꼬옥좀 답변 부탁 드리고 좋은 하루되세요.
HKLM\SYSTEM\CurrentControlset\Services
아래의 님의 드라이버 세팅정보중 Start값을 바꿔 보시겠습니까?
2 ~ 0 의 값중 하나로 말이지요.
자세한 내용은 ddk에 나와 있습니다만,
0으로 갈수록 시작순서가 빨라집니다.^^
아래는 ddk의 내용입니다.
도움이 되었길 바라겠습니다.
Specifies when to start the driver as one of the following numerical values, expressed either in decimal or, as shown here, in hexadecimal notation.
0x0 (SERVICE_BOOT_START)
Indicates a driver started by the operating system loader.
This value must be used for drivers of devices required for loading the operating system.
0x1 (SERVICE_SYSTEM_START)
Indicates a driver started during operating system initialization.
This value should be used by PnP drivers that do device detection during initialization but are not required to load the system.
For example, a PnP driver that also can detect a legacy device should specify this value in its INF so that its DriverEntry routine will be called to find the legacy device, even if that device cannot be enumerated by the PnP manager.
0x2 (SERVICE_AUTO_START)
Indicates a driver started by the service control manager during system startup.
This value should never be used in the INF files for WDM or PnP device drivers.
0x3 (SERVICE_DEMAND_START)
Indicates a driver started on demand, either by the PnP manager when the corresponding device is enumerated or possibly by the service control manager in response to an explicit user demand for a non-PnP device.
This value should be used in the INF files for all WDM drivers of devices that are not required to load the system and for all PnP device drivers that are neither required to load the system nor engaged in device detection.
0x4 (SERVICE_DISABLED)
Indicates a driver that cannot be started.
This value can be used to temporarily disable the driver services for a device, but a device/driver cannot be installed if this value is specified in the service-install section of its INF file.
>로그인 전에 나오는 사운드 관련 프로그램을 만들었는데 2000에서는 동작되는데 XP에서는 동작이 안되더군요. 알아보니 XP에서는 사운드 드라이버가 늦게 뜨기 때문이던데. 강제로 드라이버 로딩순서를 바꿀수 있을까요?
>
>꼬옥좀 답변 부탁 드리고 좋은 하루되세요.