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