mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
8 lines
219 B
PowerShell
8 lines
219 B
PowerShell
![]() |
# Enable -Verbose option
|
|||
|
[CmdletBinding()]
|
|||
|
|
|||
|
param(
|
|||
|
[string]$CertPath = "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY",
|
|||
|
[Parameter(Mandatory=$true)][string]$FileName
|
|||
|
)
|
|||
|
Import-Certificate -Filepath "$CertPath\$FileName"
|