diff --git a/Scripts/ImportCertificate.ps1 b/Scripts/ImportCertificate.ps1 index a3bbb9a..7a5e6c7 100644 --- a/Scripts/ImportCertificate.ps1 +++ b/Scripts/ImportCertificate.ps1 @@ -4,4 +4,5 @@ param( [Parameter(Mandatory=$true)][string]$CertPath ) -Write-Host "Registering certificate: $CertPath" -CertStoreLocation cert:\CurrentUser\Root \ No newline at end of file +Write-Host "Registering certificate: $CertPath" +Import-Certificate -Filepath "$CertPath" -CertStoreLocation cert:\CurrentUser\Root \ No newline at end of file