Adds Online Responder server to an Online Responder Array.
Add-OnlineResponderArrayMember [-ArrayController] <OcspResponder> [-ArrayMember] <OcspResponder> [<CommonParameters>]
Adds Online Responder server to an Online Responder Array.
This command does:
-- removes source Online Responder from its array
-- removes all existing revocation configurations
-- adds server to new array
-- copies revocation configurations from new array's array controller
Array controller of an Online Responder array new server is added to. Revocation configuration from this object is copied to new array member specified in '-ArrayMember' parameter.
Required? | True |
Position? | 0 |
Default value | |
Accept pipeline input? | True |
Accept wildcard characters? | False |
Array member server that is added to a new array. Can be array controller or array member.
Required? | True |
Position? | 1 |
Default value | |
Accept pipeline input? | False |
Accept wildcard characters? | False |
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, InformationAction, InformationVariable,
WarningAction, WarningVariable, OutBuffer, PipelineVariable and OutVariable.
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216)
SysadminsLV.PKI.Management.CertificateServices.OcspResponder
SysadminsLV.PKI.Management.CertificateServices.OcspResponder
PS C:\> $NewMember = Connect-OnlineResponder "ocsp3.example.com" PS C:\> Connect-OnlineResponder "ocsp1.example.com" | Add-ArrayMember -NewMember $NewMember
First line connects to Online Responder server hosted on "ocsp3.example.com" and adds it to a new array with "ocsp1.example.com" array controller.