Remove-CitrixLogServiceMetadata
Citrix: Removes configuration log service metadata
param(
[Parameter(Mandatory = $true)]
[string]$PropertyName
)
try {
Import-Module Citrix.ConfigurationLogging.Admin.V1 -ErrorAction Stop
Remove-LogServiceMetadata -Name $PropertyName -ErrorAction Stop
Write-Output "Successfully removed service metadata property '$PropertyName'."
} catch {
Write-Error $_
exit 1
}The name of the metadata property to remove.