mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 07:30:15 -04:00
8 lines
236 B
PowerShell
8 lines
236 B
PowerShell
# Enable -Verbose option
|
|
[CmdletBinding()]
|
|
|
|
param(
|
|
[Parameter(Mandatory=$true)][string]$CertPath
|
|
)
|
|
Write-Host "Registering certificate: $CertPath"
|
|
Import-Certificate -Filepath "$CertPath" -CertStoreLocation cert:\CurrentUser\Root |