[HKEY_LOCAL_MACHINE\init]键值的含义

来源:互联网 发布:js 时间排序函数 编辑:程序博客网 时间:2024/06/05 04:00

在wince注册表的[HKEY_LOCAL_MACHINE\init]下,通常可以看到下面的内容:

[HKEY_LOCAL_MACHINE\init]
        "Launch20"="device.dll"

……

[HKEY_LOCAL_MACHINE\init]
        "Launch30"="gwes.dll"
        "Depend30"=hex:14,00

……

[HKEY_LOCAL_MACHINE\init]
        "Launch60"="servicesStart.exe"
        "Depend60"=hex:14,00

……

[HKEY_LOCAL_MACHINE\init]
"Launch50"="explorer.exe"
"Depend50"=hex:14,00, 1e,00

 

他们的含义是:

1. device.dll的启动不依赖任何别的程序,因为他没有Depend项;

2. gwes.dll中的Depend30的值为0x14,十进制为20,表示gwes.dll依赖于Launch20,即device.dll,也就是说gwes.dll必须在device.dll启动之后才能启动;

3. 同理,servicesStart.exe必须在device.dll之后启动;

4. explorer.exe依赖于Launch20以及Launch30,也就是说explorer.exe必须在device.dll和gwes.dll之后启动。

原创粉丝点击