pondělí 14. března 2016

Windows 2012R2 - Certification Authority Web Enrollment Configuration Failed 0x80070057

Při konfiguraci (zavolání ze SERVERU MANAGERU) se může vyskytnout následující chybová hláška:

AD: Certification Authority Web Enrollment Configuration Failed 0x80070057 (WIN32: 87)

Přestože chybka vypadá hrůzostrašně, oprava je velmi jednoduchá.
The likely issue is that the value of SetupStatus at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CertSvc\Configuration 
is configured to hexidecimal 6003, but should be configured to hexidecimal 6001

This is because 6003 indicates that CA Web Enrollment is already installed and 6001 indicates that it is not yet installed.

Modify the registry SetupStatus to read 6001 and then install CA Web Enrollment.
You can modify that registry setting with the following certutil command from Windows PowerShell or a command prompt run as Administrator:
certutil -setreg config\setupstatus 0x6001

Alternatively, you can use the following command to achieve the same result:
certutil -setreg config\setupstatus -SETUP_CLIENT_FLAG


Zdroj:
http://social.technet.microsoft.com/wiki/contents/articles/12035.ad-certification-authority-web-enrollment-configuration-failed-0x80070057-win32-87.aspx

Žádné komentáře:

Okomentovat