WMI Win32_Printer 无法在 XP Embedded 上运行

发布于 2024-09-24 11:05:13 字数 407 浏览 4 评论 0原文

我有一些代码可以在标准 XP 系统上运行,但在 XP 上失败 嵌入式测试机。

我收到 System.Management.ManagementException : Provider Load Failure

这是我的代码:

    string query = "Select * From Win32_Printer";
    ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
    ManagementObjectCollection results = searcher.Get();

是否有要启动的服务或要注册的 DLL?

请帮我找到答案!

提前致谢, 跳蚤

I have some code which works on a standard XP system, but fails on XP
Embedded test machine.

I get System.Management.ManagementException : Provider Load Failure

Here is my code:

    string query = "Select * From Win32_Printer";
    ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
    ManagementObjectCollection results = searcher.Get();

Are there services to start or DLL's to register?

Please, help me find the answer!

Thanks in advance,
Flea

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

絕版丫頭 2024-10-01 11:05:13

您必须检查 System.Management.Instrumentation.dll 库是否已正确注册。

尝试此链接

You must check wich the System.Management.Instrumentation.dll library is properly registered.

try out this link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文