Hi, I have been working on theMS Test Lab Guide: Deploying an AD CS Two-Tier PKI Hierarchy that can be found on the following URLhttp://technet.microsoft.com/en-us/library/hh831348.aspx
And, I would appreciate it if someone can help to clarify some points.
In the section titled (To configure the root CA Settings)
What is this portion of code doing?
certutil -setreg CA\CRLPublicationURLs "1:C:\Windows\system32\CertSrv\CertEnroll\%3%8.crl\n2:http://www.contoso.com/pki/%3%8.crl"
certutil –setreg CA\CACertPublicationURLs "2:http://www.contoso.com/pki/%1_%3%4.crt"
Question: Is it telling the RootCA that the root certificate should point the user to the
following location in order to locate its CRL.
Question: And what to the percentage % and other prefixed numbers mean?
In the section (To distribute the root CA certificate)
I take it that I needed to copy over the root.crt, root.crl and add the root.crt to AD for the Subordinate CA to be able to trust the RootCA.
Question : It also says that by publishing the RootCA to AD, that all of the machines in
my domain will automatically trust the RootCA. Is that correct?
In the section (To Configure the AIA and CDP Settings)
Again, here I have to point the cert, or set the location part of the Server to point the users to the locations where they can obtain a Sub CA Crl.
In the example they use
certutil -setreg CA\CRLPublicationURLs "1:C:\Windows\system32\CertSrv\CertEnroll\%3%8.crl\n2:http://www.contoso.com/pki/%3%8.crl"
certutil -setreg CA\CACertPublicationURLs "2:http://www.contoso.com/pki/%1_%3%4.crt\n1:file://\\App1.corp.contoso.com\pki\%1_%3%4.crt"
Question : I pressume that the first one is telling them to locate the crls in the following
location and the second one is telling them they can get a copy of the Root.crt from here.
Question : Again what do the %, _, and numbers mean?
Finally
Question : How do I automatically get the content of my c:\Windows\system32\certsrv\certenroll\
store to publish to the web location in the document?
In the example the manually copy over published crls to the virtual pki directory. I was wondering if there was way so that they can be automatically sent there once they have updated.
Thanks