类型:转载 责任编辑:asp.net 日期:2007/05/23
热门软件下载:
请教:
service_boot_start
service_system_start
service_auto_start
service_demand_start
的详细区别是什么?
网友回答:
SERVICE_BOOT_START
NTLDR or OSLOADER preloads driver so that it is in memory during the boot.
Driver initializes just before SERVICE_SYSTEM_START drivers.
SERVICE_SYSTEM_START
Driver loads and initializes after SERVICE_BOOT_START drivers have initialized.
SERVICE_AUTO_START
Services subsystem loads and initializes the driver or service.
SERVICE_DEMAND_START
Services subsystem starts the driver on demand.
共有五种启动类型。前三种类型是:SERVICE_AUTO_START、SERVICE_DISABLED 和 SERVICE_DEMAND_START。对应的标准启动类型:自动、禁用和手动,通常使用“计算机管理”管理工具中的“服务”进行配置。后两种类型是:SERVICE_BOOT_START 和 SERVICE_SYSTEM_START,通常用于配置加载设备驱动程序的方式。例如,在启动计算机时或启动 Windows 2000 时加载。
这些都可以系本身的帮助中找到。。。