我可以在 Windows 7 小工具中嵌入外部组件吗?
我需要的一些功能在 Javascript API 中不可用。是否可以在小工具中使用外部组件(C++ 或其他组件)?特别是,我想获取正在运行的进程的列表。
Some features I needed is not available in the Javascript API. Is it possible to use an external component (C++ or whatever) in a gadget? In particular, I'd like to get a list of running processes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从小工具访问 WMI 对象(或几乎任何 COM 对象)。例如,以下 WMI JScript 会将系统上的所有进程转储到小工具窗口(将其放入 HTML 中)。
You can access WMI objects (or pretty much any COM object) from a gadget. For example the following WMI JScript will dump all processes on the system to the gadget window (put it in the HTML).