Modules/businessdev.ALbuild.Containers/Private/Get-BcContainerCertificateFriendlyName.ps1
|
function Get-BcContainerCertificateFriendlyName { <# .SYNOPSIS Builds the friendly name ALbuild stamps on a trusted container certificate. .DESCRIPTION Pure helper. The friendly name tags certificates ALbuild added to the user's trusted root store so they can be found and removed again when the container is removed. .PARAMETER Name Container name. .OUTPUTS [string] #> [CmdletBinding()] [OutputType([string])] param( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string] $Name ) return "ALbuild BC Container: $Name" } |