如何在 C# 中列出 Windows Server 2008 已安装的功能
如何在 C# 中列出 Windows Server 2008 的所有已安装功能。我尝试查询 dism.exe
或 oclist.exe
但并非所有版本都有它。我可以使用 System.Management.ManagementClass 来以某种方式执行此操作吗?
How can I list all installed features of Windows Server 2008 in c#. I tried to query dism.exe
or oclist.exe
but not all versions have it. Can I use System.Management.ManagementClass
to do this somehow ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了它,您必须使用 Win32_ServerFeature 类 (http: //msdn.microsoft.com/en-us/library/cc280268(VS.85).aspx) 和 System.Management.ManagementClass。它适用于 ws2008。
I have found it, you have to use Win32_ServerFeature Class (http://msdn.microsoft.com/en-us/library/cc280268(VS.85).aspx) and System.Management.ManagementClass. It works on ws2008.