< Back

Get-UxSignalGroup

Sat Jan 18, 2020 7:52 pm

NAME Get-UxSignalGroup



SYNOPSIS

This cmdlet displays all the signalgroup names and ID's





SYNTAX

Get-UxSignalGroup [[-uxSession] <PSObject>] [[-signalgroupid] <Int32>] [<CommonParameters>]





DESCRIPTION

This cmdlet can be used to pull either the how signalling group or an individual entry by passing the signaling

group id.





PARAMETERS

-uxSession <PSObject>

If using multiple servers you will need to pass the uxSession Object created by connect-uxGateway

Else it will look for the last created session using the command above



Required? false

Position? 2

Default value

Accept pipeline input? false

Accept wildcard characters? false



-signalgroupid <Int32>

If you want to filter send a group id.



Required? false

Position? 1

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>get-UxSignalGroup



This pulls all the signaling groups from the last connected box.









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>get-UxSignalGroup 2



This pulls the individual signal group.









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>$Creds = Get-credential



PS C:\\>$Obj = connect-uxgateway -uxhostname lyncsbc01.COMPANY.co.uk -Credentials $Creds



PS C:\\>get-UxSignalGroup -uxSession $Obj



This Example uses the uxSession object to pull entries just from that session rather than the last default session.











RELATED LINKS