0

When is run the command certutil -f -dspublish "CA01_Fabrikam Root CA.crt" RootCA

Output is

ldap:///CN=Fabrikam Root CA,CN=Certification Authorities,CN=Public Key Services,CN=Services,CN=Configuration,DC=fabrikam,DC=com?cACertificate

Certificate added to DS store.

ldap:///CN=Fabrikam Root CA,CN=AIA,CN=Public Key Services,CN=Services,CN=Configuration,DC=fabrikam,DC=com?cACertificate

Certificate added to DS store.

CertUtil: -dsPublish command completed successfully.

Where is this certificate information actually stored? Where is the DS store?

1 Answers1

0

The CA information is literally stored in the printed Active Directory object:

CN=Fabrikam Root CA,CN=AIA,CN=Public Key Services,CN=Services,CN=Configuration,DC=fabrikam,DC=com

The certificate itself is stored in binary form in the cACertificate attribute of the AD object.

The file is not stored on the file system, but within the Active Directory database, which is located in the C:\Windows\NTDS folder by default.

Daniel
  • 6,940
  • 6
  • 33
  • 64