PowerShell Logo Small

Install-AdcsEnrollmentWebService



This is the built-in help made by Microsoft for the command 'Install-AdcsEnrollmentWebService', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Performs initial configuration of the Certificate Enrollment Web service.

SYNTAX


Install-AdcsEnrollmentWebService [-AllowKeyBasedRenewal] [-ApplicationPoolIdentity] [-AuthenticationType <AuthenticationType>] [-CAConfig <String>] [-Credential
<PSCredential>] [-Force] [-RenewalOnly] [-SSLCertThumbprint <String>] [-Confirm] [-WhatIf] [<CommonParameters>]
Install-AdcsEnrollmentWebService [-AllowKeyBasedRenewal] [-AuthenticationType <AuthenticationType>] [-CAConfig <String>] [-Credential <PSCredential>] [-Force] [-RenewalOnly]
[-SSLCertThumbprint <String>] -ServiceAccountName <String> -ServiceAccountPassword <SecureString> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Install-AdcsEnrollmentWebService cmdlet performs the configuration of Certificate Enrollment Web service. It is also used to create additional instances of the service
within an existing installation. To remove the Certificate Enrollment Web Service role service use the Uninstall-AdcsEnrollmentWebService cmdlet.


You can import the cmdlet by running the following commands from Windows PowerShell:
Import-Module ServerManager
Add-WindowsFeature Adcs-Enroll-Web-Svc



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?linkid=299501
Uninstall-AdcsEnrollmentWebService

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

C:\PS>Install-AdcsEnrollmentWebService –ApplicationPoolIdentity -CAConfig CA1.contoso.com\contoso-CA1-CA -SSLCertThumbprint <thumbprint> -AuthenticationType Certificate



Description

-----------

This command installs the Certificate Enrollment Web Service to use the certification authority with a computer name of CA1.contoso.com and a CA common name contoso-CA1-CA.
The identity of the Certificate Enrollment Web Service is specified as the default application pool identity. The placeholder <thumbprint> should be replaced with the actual
thumbprint of the certificate associated with the service. The authentication type is certificate based.




-------------------------- EXAMPLE 2 --------------------------

C:\PS>Install-AdcsEnrollmentWebService -CAConfig APP1.corp.contoso.com\corp-APP1-CA -SSLCertThumbprint <thumbprint> -ServiceAccountName Corp\CEPAcct1 -ServiceAccountPassword
(read-host "Set user password" -assecurestring)



Description

-----------

This command installs the Certificate Enrollment Web Service to use the certification authority with a computer name of APP1.corp.contoso.com and a CA common name
corp-APP1-CA. The placeholder <thumbprint> should be replaced with the actual thumbprint of the certificate associated with the service. The identity of the Certificate
Enrollment Web Service is specified as CEPAcct1 from the Corp domain. The command will prompt for the user password.