Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deangrant/e88b0d5bf354a5e0df4f to your computer and use it in GitHub Desktop.
Save deangrant/e88b0d5bf354a5e0df4f to your computer and use it in GitHub Desktop.
ConvertTo-CertificateContainer_snippet_Param
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)][ValidateScript({Get-Item $_})][String[]] $Certificates,
[String] $Output = ([Environment]::GetEnvironmentVariable("UserProfile")) + "\container_file.pem"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment