本文介绍了扩展多个字符串的SystemPath密钥的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 我试图扩展DLL路径以包括多个闪存分区。在Windows CE 6.0 RC 2上的platform.reg中尝试过此。

  Am trying to extend the DLL path to include multiple flash partitions. Tried this in platform.reg on Windows CE 6.0 RC 2.



HKEY_LOCAL_MACHINE \ Loader]

 "SystemPath" ; = multi_sz:" \\Windows"," \\NV5FLASH"," \\Flash" 


HKEY_LOCAL_MACHINE\Loader]
 "SystemPath"=multi_sz:"\\Windows","\\NV5FLASH","\\Flash" 



 将图像下载到我的设备,Regedit仅显示"\ Windows"。在设备上的SystemPath密钥中。在第一个","之后的任何东西。被截断并作为注册表项的一部分被忽略。有没有人使用多个字符串路径名这个密钥
的工作示例我可以包含在platform.reg中。

        ;   任何帮助表示赞赏

                Greg White


 Downloaded the image to my device and Regedit reveals only "\Windows" in SystemPath key on the device. Anything after the first "," is truncated and ignored as part of the registry key. Does anyone have a working example of this key using more than one string path name that I can include in platform.reg.
           Any help appreciated
                Greg White

推荐答案


这篇关于扩展多个字符串的SystemPath密钥的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 02:42