Skip to content

Get-CitrixServiceAddedCapability

Citrix: Gets service added capabilities

param(
	[Parameter(Mandatory = $true)]
	[string]$ServiceType
)

try {
	Import-Module Citrix.Configuration.Admin.V2 -ErrorAction Stop
	$caps = Get-ConfigServiceAddedCapability -ServiceType $ServiceType -ErrorAction Stop
	Write-Output $caps
} catch {
	Write-Error $_
	exit 1
}

The type of Citrix service.

An interactive directory of PowerShell scripts.