确定服务(例如 HTTPD)在 WinCE 上是否可用/运行
我有一台运行 WinCE 的设备和用于为其开发应用程序的 SDK。
是否可以知道httpd是否在设备上运行的WinCE中正在运行/可用?
I have got a device running WinCE and the SDK for developing applications for it.
Is it possible to know whether httpd is running/available in the WinCE running on the device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然。如果设备具有控制台和命令行处理器作为操作系统的一部分,则只需使用
服务列表
如果您没有控制台,请使用注册表编辑器(例如远程注册表编辑器)来查看 下的注册表
[HKEY_LOCAL_MACHINE\Services]
编辑
我想我忘记了使用
EnumServices
API 调用。Sure. If the device has a console and command line processor as part of the OS, just use
services list
If you don't have a console, use a registry editor (Remote Registry Editor for example) to look in the registry under
[HKEY_LOCAL_MACHINE\Services]
EDIT
I suppose I forgot the other (fairly obvious) option of programmatically querying for it with the
EnumServices
API call.