.NET、WMI - StdRegProv 未找到!
正在做 ManagementObject obj = new ManagementObject(@"root\default:StdRegProv");
抛出 ArgumentOutOfRangeException 以及
ManagementClass regClass = new ManagementClass(new ManagementPath("StdRegProv")); inParams= regClass.GetMethodParameters("GetStringValue"); //throws ManagementException "Not found"
什么..????????????
DoingManagementObject obj = new ManagementObject(@"root\default:StdRegProv");
throws ArgumentOutOfRangeException
as well as
ManagementClass regClass = new ManagementClass(new ManagementPath("StdRegProv")); inParams= regClass.GetMethodParameters("GetStringValue"); //throws ManagementException "Not found"
What the..????????????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢您的回复。
我已经成功地通过这样的编码正确地获得了它:
范围像这样提前初始化
//path is init to ...cimv2 b/c 我也将它用于其他对象
Thanx for your reply.
I've managed to get it correctly by coding like this:
Scope is initialized earlier like this
//path is init to ...cimv2 b/c I use it for other objects too