ASP .NET Apps v2.0* 的 WMI 类是什么?
当我在本地拉取 win32* 类时,我没有看到引用 ASP.NET Apps v.2.0.50727 计数器的类,该计数器显示在 perfmon gui 中。如何在 Windows 2003 上提取 2.0 应用程序的 WMI 信息?
When I pull the win32* classes locally I am not seeing a class that refers to the ASP.NET Apps v.2.0.50727 counters which show up in the perfmon gui. How do I pull WMI info for 2.0 applications on Windows 2003?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行 PowerShell 以匹配
root\cimv2
: 中的任何 WMI 类给出:(
我认为“
.
”在 WMI 类名中无效,因此命名。)此外,通过 System.Diagnostics.PerformanceCounter,您可以直接读取性能计数器,无需通过 WMI。
Running PowerShell to match any WMI classes in
root\cimv2
:gives:
(I don't think "
.
" is valid in a WMI class name, hence the naming.)Also, with
System.Diagnostics.PerformanceCounter
you can read a performance counter directly, you don't need to go via WMI.