Get-CertificateEnrollmentPolicyServer
Returns all of the certificate enrollment policy server URL configurations.
Syntax
Get-CertificateEnrollmentPolicyServer
[-Url <Uri>]
-Scope <EnrollmentPolicyServerScope>
-context <Context>
[<CommonParameters>]
Description
The Get-CertificateEnrollmentPolicyServer cmdlet retrieves information required for connecting to one or more certificate enrollment policy servers configured for this user or computer. The returned information can be filtered by providing a specific URL, a specific scope, or requesting only user or computer (machine) context.
Examples
EXAMPLE 1
PS C:\>Get-CertificateEnrollmentPolicyServer -Scope All -Context User
This example returns all of the enrollment policy URL configurations that are included with the user configuration, Group Policy, and local policy for the User context.
EXAMPLE 2
PS C:\>Get-CertificateEnrollmentPolicyServer -Url http://www.contoso.com/Policy/service.svc -Scope All -Context Machine
This example returns all of the enrollment policy URL configurations that have the given URL for the machine context.
EXAMPLE 3
PS C:\>Get-CertificateEnrollmentPolicyServer -Scope ConfiguredByYou -Context User
This example returns all of the enrollment policy server URL configurations that are configured for the User context.
Parameters
-context
Retrieves information about the enrollment policy server for the local computer (machine) or Current User context.
Type: | Context |
Accepted values: | Machine, User |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Scope
Specifies where the cmdlet will find the enrollment policy server configuration.
Type: | EnrollmentPolicyServerScope |
Accepted values: | Applied, ConfiguredByYou, All |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Url
Limits the returned enrollment policy servers to the servers that contain the provided URL.
Type: | Uri |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
None
Outputs
Microsoft.CertificateServices.Commands.EnrollmentPolicyUrlDescription[]
Describes the enrollment policy obtained from the specified URL.