...
- Sign in to a computer joined to the Austin Active Directory where the system has permissions to request enroll for a certificate with from the desired requested template
Start an administrative PowerShell session as a local administrator
Info Complete any remaining instructions in this PowerShell session unless directed otherwise
Modify then run the following commands to define the full path to certificate request file:
Code Block $cert_file_req = C:\Content\certificate\custom.req
Run one of the following commands 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"
Run the following commands to define where the signed certificate file will be created using the certificate request file
Code Block $cert_file_cer = (Get-Item $cert_file_req).DirectoryName + "\" + (Get-Item $cert_file_req).BaseName + ".cer"
Run the following commands to submit the request to an Austin certificate authority:
Code Block certreq -submit -attrib ("CertificateTemplate:" + $cert_template) $cert_file_req $cert_file_cer