From 0725bf71d6c2ddec851ca04e134cabbabbcb26d1 Mon Sep 17 00:00:00 2001 From: Marty Hernandez Avedon Date: Mon, 22 Jul 2019 13:29:25 -0400 Subject: [PATCH] resolves #3987; typo fix in commands Issue #3987, Wrong Powershell commands to install the Active Directory Certificate Services > In this original document, The Powershell commands is "Add-WindowsFeature Adcs-Cert-Authority -IncludeManageTools" and "Install-AdcsCertificateAuthority". But they don't work as they are not correct. > > The correct Powershell commands should be "add-windowsfeature adcs-cert-authority -IncludeManagementTools" and "Install-AdcsCertificationAuthority". Please kindly revise it . --- .../hello-for-business/hello-hybrid-cert-new-install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-hybrid-cert-new-install.md b/windows/security/identity-protection/hello-for-business/hello-hybrid-cert-new-install.md index 65619ce7f4..c2550cdfa7 100644 --- a/windows/security/identity-protection/hello-for-business/hello-hybrid-cert-new-install.md +++ b/windows/security/identity-protection/hello-for-business/hello-hybrid-cert-new-install.md @@ -66,12 +66,12 @@ Sign-in using _Enterprise Admin_ equivalent credentials on Windows Server 2012 o 1. Open an elevated Windows PowerShell prompt. 2. Use the following command to install the Active Directory Certificate Services role. ```PowerShell - Add-WindowsFeature Adcs-Cert-Authority -IncludeManageTools + Add-WindowsFeature Adcs-Cert-Authority -IncludeManagementTools ``` 3. Use the following command to configure the Certificate Authority using a basic certificate authority configuration. ```PowerShell - Install-AdcsCertificateAuthority + Install-AdcsCertificationAuthority ``` ### Configure a Production Public Key Infrastructure