Topic Last Modified: 2013-02-22
Retrieves one or more ranges of unassigned numbers and the routing rules that apply to those numbers. This cmdlet was introduced in Lync Server 2010.
Syntax
Get-CsUnassignedNumber [-Identity
<XdsGlobalRelativeIdentity>] <COMMON PARAMETERS>
|
Get-CsUnassignedNumber [-Filter <String>]
<COMMON PARAMETERS>
|
COMMON PARAMETERS: [-LocalStore
<SwitchParameter>]
|
Examples
EXAMPLE 1
Example 1 returns a collection of all the unassigned numbers configured for use in your organization.
Copy Code | |
---|---|
Get-CsUnassignedNumber |
EXAMPLE 2
In Example 2, the Identity parameter is used to limit the retrieved data to unassigned numbers that have the Identity UNSet1. Because identities must be unique, this command will return only the specified unassigned number range.
Copy Code | |
---|---|
Get-CsUnassignedNumber -Identity UNSet1 |
EXAMPLE 3
This example uses the Filter parameter to return a collection of all the unassigned number settings with Identity values that include the string Redmond. For example, this command would return unassigned number setting with identities such as Redmond Numbers, Unassigned Redmond Numbers, UNRedmond, etc.
Copy Code | |
---|---|
Get-CsUnassignedNumber -Filter *Redmond* |
EXAMPLE 4
In Example 4, the Get-CsUnassignedNumber cmdlet and the Where-Object cmdlet are used to retrieve a collection of all the unassigned number settings that include the word Welcome in the name of the Announcement. To do this, the command first uses the Get-CsUnassignedNumber cmdlet to retrieve all the unassigned number settings. That collection is then piped to the Where-Objectcmdlet, which applies a filter that limits the returned data to unassigned numbers that have the word Welcome somewhere in the name of the assigned announcement.
Copy Code | |
---|---|
Get-CsUnassignedNumber | Where-Object {$_.AnnouncementName -match "Welcome"} |
Detailed Description
Unassigned numbers are phone numbers that have been assigned to an organization but that have not been assigned to specific users or phones. Lync Server can be set up to route calls to appropriate destinations when an unassigned number is called. This cmdlet retrieves one or more unassigned number ranges that define that routing.
Who can run this cmdlet: By default, members of the following groups are authorized to run the Get-CsUnassignedNumber cmdlet locally: RTCUniversalUserAdmins, RTCUniversalServerAdmins, RTCUniversalReadOnlyAdmin. To return a list of all the role-based access control (RBAC) roles this cmdlet has been assigned to (including any custom RBAC roles you have created yourself), run the following command from the Windows PowerShell prompt:
Get-CsAdminRole | Where-Object {$_.Cmdlets –match "Get-CsUnassignedNumber"}
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Filter |
Optional |
System.String |
Performs a wildcard search that allows you to narrow down your results to only those unassigned number settings whose identities match the given wildcard string. |
Identity |
Optional |
Microsoft.Rtc.Management.Xds.XdsGlobalRelativeIdentity |
The unique name of the unassigned number range to retrieve. |
LocalStore |
Optional |
System.Management.Automation.SwitchParameter |
Retrieves the unassigned number information from the local replica of the Central Management store, rather than the Central Management store itself. |
Input Types
None.
Return Types
Returns an object of type Microsoft.Rtc.Management.Voice.Helpers.DisplayAnnouncementVacantNumberRange.