Prerequisites

Submit the certificate request to an Austin CAs

  1. Sign in to a computer joined to the Austin Active Directory where the computer has permissions to enroll for a certificate from the requested template

  2. Start an administrative PowerShell session as a local administrator

  3. Navigate to the path where the certificate request is stored.

  4. Run the following commands to retrieve the name of certificate request:

    $Name = Read-Host -Prompt "Provide the name of the certificate request file"
  5. Run the following commands to retrieve the certificate to be imported: 

    $Request = Get-ChildItem | Where-Object { $_.Name -Match $Name } | Sort-Object -Property LastWriteTime | Select-Object -Last 1
  6. Run one of the following commands to set the certificate template:

  7. Run the following commands to define where the signed certificate file will be created using the certificate request file

    $Certificate = $Request.FullName -replace "$($Request.Extension)$", '.cer'
  8. Run the following commands to submit the request to the Austin Certificates service:

    certreq -submit -attrib "CertificateTemplate:$Template" $Request.FullName $Certificate