Skip to content

Remove-CitrixLogOperation

Citrix: Removes configuration log operations

param(
	[Parameter(Mandatory = $true)]
	[int]$OperationId
)

try {
	Import-Module Citrix.ConfigurationLogging.Admin.V1 -ErrorAction Stop
	Remove-LogOperation -Id $OperationId -ErrorAction Stop
	Write-Output "Successfully removed log operation '$OperationId'."
} catch {
	Write-Error $_
	exit 1
}

The unique ID of the operation to remove.

An interactive directory of PowerShell scripts.