mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
383 B
7 lines
383 B
$pfxPassword = ConvertTo-SecureString -String "password" -Force -AsPlainText
|
|
|
|
# import the pfx certificate
|
|
Import-PfxCertificate -FilePath ./squidex-dev.pfx Cert:\LocalMachine\My -Password $pfxPassword -Exportable
|
|
|
|
# trust the certificate by importing the pfx certificate into your trusted root
|
|
Import-Certificate -FilePath ./squidex-dev.cer -CertStoreLocation Cert:\CurrentUser\Root
|