# Install the certificate | |
certutil -f -p $certPass -ImportPfx $cert | |
# Retrieve the certificate details | |
Set-Location -Path cert:\LocalMachine\My | |
$myCert = Get-ChildItem | Where-Object { $_.Subject -match "\*.hobbitcloud.com" } | |
# Configure friendly name for Horizon | |
$tp = $myCert.Thumbprint | |
(Get-ChildItem -Path Cert:\LocalMachine\My\$tp).FriendlyName = "vdm" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment