检测Windows Server 2012上安装了哪些服务器角色

本文关键字:服务器 角色 安装 Windows Server 2012 检测 | 更新日期: 2023-09-27 18:05:19

在Windows Server 2008中,您可以使用WMI和Win32_ServerFeature类以编程方式检测服务器功能和角色。

在Windows Server 2012中,Win32_ServerFeature类已被弃用,并且不包括2012年新添加的功能和角色。

据我所知,Win32_ServerFeature类已被服务器管理器部署所取代,并且没有如何使用它的示例。

我在网上搜索了一下,除了没有帮助的文档之外,找不到任何关于它的信息。

任何帮助将不胜感激,我是在c#开发的4.5点。Net框架应用程序。

检测Windows Server 2012上安装了哪些服务器角色

我会考虑这样做的方式是通过使用一块PowerShell脚本,然后在c#中'播放'输出。

如果你添加一个引用到以下项目,你将能够在c#中与PowerShell脚本交互:

System.Management.Automation

然后使用下面的using语句来深入研究和交互this的特性:

using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces

下面的脚本将创建一个很好的子脚本,它将接受一个PowerShell命令并返回一个可读的字符串,其中每个项(在本例中是一个角色)作为一个新行添加:

private string RunScript(string scriptText)
{
// create a Powershell runspace then open it
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();
// create a pipeline and add it to the text of the script
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(scriptText);
// format the output into a readable string, rather than using Get-Process
// and returning the system.diagnostic.process
pipeline.Commands.Add("Out-String");
// execute the script and close the runspace
Collection<psobject /> results = pipeline.Invoke();
runspace.Close();
// convert the script result into a single string
StringBuilder stringBuilder = new StringBuilder();
foreach (PSObject obj in results)
{
stringBuilder.AppendLine(obj.ToString());
}
return stringBuilder.ToString();
}

然后您可以将以下PowerShell命令传递给脚本并接收如下输出:

RunScript("Import-module servermanager | get-windowsfeature");

或者你可以从c#脚本中运行这个PowerShell命令,然后在脚本完成处理后从c#中读取输出文本文件:

import-module servermanager | get-windowsfeature > C:'output.txt

希望这对你有帮助!

我建议您检查Windows注册表。例如,对于IIS组件,您可以检查HKEY_LOCAL_MACHINE'SOFTWARE'Microsoft'InetStp'Components文件夹