Files
modernkeepass/Scripts/ImportCertificate.ps1

8 lines
219 B
PowerShell
Raw Normal View History

2017-11-14 17:03:24 +01:00
# Enable -Verbose option
[CmdletBinding()]
param(
[string]$CertPath = "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY",
[Parameter(Mandatory=$true)][string]$FileName
)
Import-Certificate -Filepath "$CertPath\$FileName"