|
| 1 | +--- |
| 2 | +external help file: Get-CsCallQueue.xml |
| 3 | +applicable: Skype for Business Online |
| 4 | +title: Get-CsCallQueue |
| 5 | +schema: 2.0.0 |
| 6 | +--- |
| 7 | + |
| 8 | +# Get-CsCallQueue |
| 9 | + |
| 10 | +## SYNOPSIS |
| 11 | +The Get-CsCallQueue cmdlet returns the identified Call Queues. |
| 12 | + |
| 13 | +## SYNTAX |
| 14 | + |
| 15 | +``` |
| 16 | +Get-CsCallQueue [-Identity <Guid>] [-Tenant <Guid>] [First <Int32>] [Skip <Int32>] [ExcludeContent <Switch>] [Sort <String>] [Descending <Switch>] [NameFilter <String>] [<CommonParameters>] |
| 17 | +``` |
| 18 | + |
| 19 | +## DESCRIPTION |
| 20 | +The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues in your organization. Call Queue output contains statistical data on the number of active calls that are in the queue. |
| 21 | + |
| 22 | +## EXAMPLES |
| 23 | + |
| 24 | +### -------------------------- Example 1 -------------------------- |
| 25 | +``` |
| 26 | +Get-CsCallQueue |
| 27 | +``` |
| 28 | + |
| 29 | +This example gets all Call Queues in the organization. |
| 30 | + |
| 31 | +### -------------------------- Example 2 -------------------------- |
| 32 | +``` |
| 33 | +Get-CsCallQueue -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01 |
| 34 | +``` |
| 35 | + |
| 36 | +This example gets the Call Queue with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Call Queue exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error. |
| 37 | + |
| 38 | + |
| 39 | +## PARAMETERS |
| 40 | + |
| 41 | +### -Identity |
| 42 | +PARAMVALUE: Guid |
| 43 | + |
| 44 | +```yaml |
| 45 | +Type: Guid |
| 46 | +Parameter Sets: (All) |
| 47 | +Aliases: |
| 48 | +Applicable: Skype for Business Online |
| 49 | + |
| 50 | +Required: False |
| 51 | +Position: Named |
| 52 | +Default value: None |
| 53 | +Accept pipeline input: False |
| 54 | +Accept wildcard characters: False |
| 55 | +``` |
| 56 | +
|
| 57 | +### -Tenant |
| 58 | +PARAMVALUE: Guid |
| 59 | +
|
| 60 | +```yaml |
| 61 | +Type: Guid |
| 62 | +Parameter Sets: (All) |
| 63 | +Aliases: |
| 64 | +Applicable: Skype for Business Online |
| 65 | + |
| 66 | +Required: False |
| 67 | +Position: Named |
| 68 | +Default value: None |
| 69 | +Accept pipeline input: False |
| 70 | +Accept wildcard characters: False |
| 71 | +``` |
| 72 | +
|
| 73 | +### -First |
| 74 | +The First parameter gets the first N Call Queues |
| 75 | +
|
| 76 | +```yaml |
| 77 | +Type: Int32 |
| 78 | +Parameter Sets: (All) |
| 79 | +Aliases: |
| 80 | +Applicable: Skype for Business Online |
| 81 | + |
| 82 | +Required: False |
| 83 | +Position: Named |
| 84 | +Default value: 100 |
| 85 | +Accept pipeline input: False |
| 86 | +Accept wildcard characters: False |
| 87 | +``` |
| 88 | +
|
| 89 | +### -Skip |
| 90 | +The Skip parameter skips the first N Call Queues |
| 91 | +
|
| 92 | +```yaml |
| 93 | +Type: Int32 |
| 94 | +Parameter Sets: (All) |
| 95 | +Aliases: |
| 96 | +Applicable: Skype for Business Online |
| 97 | + |
| 98 | +Required: False |
| 99 | +Position: Named |
| 100 | +Default value: 0 |
| 101 | +Accept pipeline input: False |
| 102 | +Accept wildcard characters: False |
| 103 | +``` |
| 104 | +
|
| 105 | +### -ExcludeContent |
| 106 | +The ExcludeContent parameter only displays the Name and Id of the Call Queues |
| 107 | +
|
| 108 | +```yaml |
| 109 | +Type: SwitchParameter |
| 110 | +Parameter Sets: (All) |
| 111 | +Aliases: |
| 112 | +Applicable: Skype for Business Online |
| 113 | + |
| 114 | +Required: False |
| 115 | +Position: Named |
| 116 | +Default value: None |
| 117 | +Accept pipeline input: False |
| 118 | +Accept wildcard characters: False |
| 119 | +``` |
| 120 | +
|
| 121 | +### -Sort |
| 122 | +The Sort parameter specifies the property used to sort. |
| 123 | +
|
| 124 | +```yaml |
| 125 | +Type: String |
| 126 | +Parameter Sets: (All) |
| 127 | +Aliases: |
| 128 | +Applicable: Skype for Business Online |
| 129 | + |
| 130 | +Required: True |
| 131 | +Position: Named |
| 132 | +Default value: Name |
| 133 | +Accept pipeline input: False |
| 134 | +Accept wildcard characters: False |
| 135 | +``` |
| 136 | +
|
| 137 | +### -Descending |
| 138 | +The Descending parameter sorts Call Queues in descending order |
| 139 | +
|
| 140 | +```yaml |
| 141 | +Type: SwitchParameter |
| 142 | +Parameter Sets: (All) |
| 143 | +Aliases: |
| 144 | +Applicable: Skype for Business Online |
| 145 | + |
| 146 | +Required: False |
| 147 | +Position: Named |
| 148 | +Default value: None |
| 149 | +Accept pipeline input: False |
| 150 | +Accept wildcard characters: False |
| 151 | +``` |
| 152 | +
|
| 153 | +### -NameFilter |
| 154 | +The NameFilter parameter returns Call Queues where name contains specified string |
| 155 | +
|
| 156 | +```yaml |
| 157 | +Type: String |
| 158 | +Parameter Sets: (All) |
| 159 | +Aliases: |
| 160 | +Applicable: Skype for Business Online |
| 161 | + |
| 162 | +Required: True |
| 163 | +Position: Named |
| 164 | +Default value: None |
| 165 | +Accept pipeline input: False |
| 166 | +Accept wildcard characters: False |
| 167 | +``` |
| 168 | +
|
| 169 | +### CommonParameters |
| 170 | +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). |
| 171 | +
|
| 172 | +## INPUTS |
| 173 | +
|
| 174 | +### Identity |
| 175 | +Represents the unique identifier of a Call Queue. |
| 176 | +
|
| 177 | +
|
| 178 | +## OUTPUTS |
| 179 | +
|
| 180 | +### Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue |
| 181 | +
|
| 182 | +## NOTES |
| 183 | +
|
| 184 | +
|
| 185 | +## RELATED LINKS |
0 commit comments