en-US/about_AdcsOnlineResponder.help.txt
|
.NAME
AdcsOnlineResponder .SYNOPSIS The AdcsOnlineResponder DSC resource is used to configure the ADCS Online Responder after the feature has been installed on the server. .DESCRIPTION This resource can be used to install an ADCS Online Responder after the feature has been installed on the server. Using this DSC Resource to configure an ADCS Online Responder assumes that the `ADCS-Online-Responder` feature has already been installed. .PARAMETER IsSingleInstance Key - System.String Specifies the resource is a single instance, the value must be 'Yes'. .PARAMETER Credential Required - System.Management.Automation.PSCredential If the Online Responder service is configured to use Standalone certification authority, then an account that is a member of the local Administrators on the CA is required. If the Online Responder service is configured to use an Enterprise CA, then an account that is a member of Domain Admins is required. .PARAMETER Ensure Write - Ensure Specifies whether the Online Responder feature should be installed or uninstalled. .PARAMETER Reasons Read - AdcsReason[] Returns the reason a property is not in desired state. .EXAMPLE 1 This example will add the Active Directory Certificate Services Online Responder feature to a server and configure it as an Online Certificate Status Protocol (OCSP) server. Configuration AdcsOnlineResponder_InstallOnlineResponder_Config { param ( [Parameter(Mandatory = $true)] [ValidateNotNullorEmpty()] [System.Management.Automation.PSCredential] $Credential ) Import-DscResource -Module ActiveDirectoryCSDsc Node localhost { WindowsFeature ADCS-Online-Cert { Ensure = 'Present' Name = 'ADCS-Online-Cert' } AdcsOnlineResponder OnlineResponder { Ensure = 'Present' IsSingleInstance = 'Yes' Credential = $Credential DependsOn = '[WindowsFeature]ADCS-Online-Cert' } } } |