5 lines
170 B
PowerShell
5 lines
170 B
PowerShell
# Install CA certificate
|
|
@"
|
|
{{ authority.certificate.blob }}"@ | Out-File ca_cert.pem
|
|
Import-Certificate -FilePath ca_cert.pem -CertStoreLocation Cert:\LocalMachine\Root
|