Skip to content

Get-CitrixLicenseCertificate

Citrix: Gets license certificate

param()

try {
	Import-Module Citrix.Licensing.Admin.V1 -ErrorAction Stop
	$certs = Get-LicCertificate -ErrorAction Stop
	Write-Output $certs
} catch {
	Write-Error $_
	exit 1
}

This script has no configurable parameters.

An interactive directory of PowerShell scripts.