通过组策略安装 Windows Server 2008 R2 功能和角色

通过组策略安装 Windows Server 2008 R2 功能和角色

我可以通过组策略安装 Windows 内置功能和角色吗?如果没有办法通过组策略执行此操作,是否有其他方法可以无人值守地管理已部署的一堆服务器?

在这种特殊情况下,我对 SNMP 很感兴趣,但是以后我可能希望对其他角色和功能也这么做。

答案1

一种方法是使用启动脚本。Windows 2008 的设计目的是通过命令行进行维护,并具有添加角色和功能的工具

看:在运行 Windows Server 2008 R2 服务器核心安装的服务器上安装 Windows 功能

我还没有测试过,但看起来您需要的命令是Dism /online /enable-feature /featurename:SNMP

该页面可能很有用,因为它涵盖了您可能需要配置的注册表设置。

http://msdn.microsoft.com/en-us/library/ms907066.aspx

答案2

您可以通过 PowerShell cmdlet 和命令行添加/删除角色 -http://technet.microsoft.com/en-us/library/cc732263.aspx

要通过组策略执行此操作,请使用启动脚本。

答案3

您还可以使用 pkgmgr 与无人参与文件来安装具有一组自定义的下属功能的角色:

pkgmgr /n:\\somesserver\someshare\unattend\IISUnattend.xml

无人值守文件看起来像这样:

<?xml version="1.0"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
  <servicing>
   <package action="configure"> 
     <assemblyIdentity 
        name="Microsoft-Windows-Foundation-Package"
        version="6.0.6001.18000"
        language="neutral"
        processorArchitecture="amd64"
        publicKeyToken="31bf3856ad364e35"
        versionScope="nonSxS"
     />
    <selection name="IIS-WebServerRole" state="true"/>
    <selection name="IIS-WebServer" state="true"/>
    <selection name="IIS-CommonHttpFeatures" state="true"/>
    <selection name="IIS-StaticContent" state="true"/>
    <selection name="IIS-DefaultDocument" state="true"/>
    <selection name="IIS-DirectoryBrowsing" state="true"/>
    <selection name="IIS-HttpErrors" state="true"/>
    <selection name="IIS-HttpRedirect" state="true"/>
    <selection name="IIS-ApplicationDevelopment" state="true"/>
    <selection name="IIS-ASPNET" state="true"/>
    <selection name="IIS-NetFxExtensibility" state="true"/>
    <selection name="IIS-ASP" state="true"/>
    <selection name="IIS-CGI" state="true"/>
    <selection name="IIS-ISAPIExtensions" state="true"/>
    <selection name="IIS-ISAPIFilter" state="true"/>
    <selection name="IIS-ServerSideIncludes" state="true"/>
    <selection name="IIS-HealthAndDiagnostics" state="true"/>
    <selection name="IIS-HttpLogging" state="true"/>
    <selection name="IIS-LoggingLibraries" state="true"/>
    <selection name="IIS-RequestMonitor" state="true"/>
    <selection name="IIS-HttpTracing" state="true"/>
    <selection name="IIS-CustomLogging" state="true"/>
    <selection name="IIS-ODBCLogging" state="true"/>
    <selection name="IIS-Security" state="true"/>
    <selection name="IIS-BasicAuthentication" state="true"/>
    <selection name="IIS-WindowsAuthentication" state="true"/>
    <selection name="IIS-DigestAuthentication" state="true"/>
    <selection name="IIS-ClientCertificateMappingAuthentication" state="true"/>
    <selection name="IIS-IISCertificateMappingAuthentication" state="true"/>
    <selection name="IIS-URLAuthorization" state="true"/>
    <selection name="IIS-RequestFiltering" state="true"/>
    <selection name="IIS-IPSecurity" state="true"/>
    <selection name="IIS-Performance" state="true"/>
    <selection name="IIS-HttpCompressionStatic" state="true"/>
    <selection name="IIS-HttpCompressionDynamic" state="true"/>
    <selection name="IIS-WebServerManagementTools" state="true"/>
    <selection name="IIS-ManagementConsole" state="true"/>
    <selection name="IIS-ManagementScriptingTools" state="true"/>
    <selection name="IIS-ManagementService" state="true"/>
    <selection name="IIS-IIS6ManagementCompatibility" state="true"/>
    <selection name="IIS-Metabase" state="true"/>
    <selection name="IIS-WMICompatibility" state="true"/>
    <selection name="IIS-LegacyScripts" state="true"/>
    <selection name="IIS-LegacySnapIn" state="true"/>
    <selection name="WAS-WindowsActivationService" state="true"/>
    <selection name="WAS-ProcessModel" state="true"/>
    <selection name="WAS-NetFxEnvironment" state="true"/>
    <selection name="WAS-ConfigurationAPI" state="true"/>
  </package>
</servicing>
</unattend>

我使用 WAIK 的 Windows 系统映像管理器来帮助创建无人值守文件。同样,这需要包含在启动脚本中。

相关内容