...
- If submitting a pre-created certificate request, complete the following instructions:
- Log into a server joined to the Austin Active Directory as on a system with permissions to request a certificate from the desired template
- Start an administrative PowerShell session
- In the same administrative PowerShell session, set the following variables as requested:
- $cert_file_req - the full path to the certificate request file
- $cert_file_cer - the full path to the certificate that will be created
In the same administrative PowerShell session, run one of the following to set the certificate template:
For VMware SSL certificates, run the following:
Code Block $cert_template = "VMwareSSL6.5"
For long-duration server certificates, run the following:
Code Block $cert_template = "Server-10Year"
In the same administrative PowerShell prompt, run the following to submit the request to a certificate authority then accept the response:
Code Block certreq -submit -attrib ("CertificateTemplate:" + $cert_template) $cert_file_req $cert_file_cer certreq -accept $cert_file_cer
...