Set-CitrixLicenseCeipOption
Citrix: Sets license CEIP option
param(
[Parameter(Mandatory = $true)]
[bool]$Enabled
)
try {
Import-Module Citrix.Licensing.Admin.V1 -ErrorAction Stop
Set-LicCeipOption -Enabled $Enabled -ErrorAction Stop
Write-Output "Successfully updated CEIP option."
} catch {
Write-Error $_
exit 1
}Whether to enable CEIP.