Remove-CsLisWirelessAccessPoint
Topic Last Modified: 2012-03-26
Removes a Location Information Server (LIS) wireless access point (WAP).
Syntax
Remove-CsLisWirelessAccessPoint -BSSID <String> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]
Detailed Description
Enhanced 9-1-1 allows an emergency operator to identify the location of a caller without having to ask the caller for that information. In the case where a caller is calling from a Voice over Internet Protocol (VoIP) connection, that information must be extracted based on various connection factors. The VoIP administrator must configure a location map (called a wiremap) that will determine a caller’s location. This cmdlet removes a WAP from the location configuration database. Removing the WAP will not remove the location associated with that WAP. Use the Remove-CsLisLocation cmdlet to remove a location.
If you attempt to remove a WAP that does not exist, no action will be taken and you will not receive an error or a warning message.
Who can run this cmdlet: By default, members of the following groups are authorized to run the Remove-CsLisWirelessAccessPoint cmdlet locally: RTCUniversalServerAdmins. 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 "Remove-CsLisWirelessAccessPoint"}
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
BSSID |
Required |
String |
The Basic Service Set Identifier (BSSID) of the wireless access point you want to remove. This value will be in the form nn-nn-nn-nn-nn-nn, such as 12-34-56-78-90-ab. |
WhatIf |
Optional |
SwitchParameter |
Describes what would happen if you executed the command without actually executing the command. |
Confirm |
Optional |
SwitchParameter |
Prompts you for confirmation before executing the command. |
Input Types
Accepts pipelined input of LIS wireless access point objects.
Return Types
This cmdlet removes an object of type System.Management.Automation.PSCustomObject.
Example
-------------------------- Example 1 --------------------------
Remove-CsLisWirelessAccessPoint -BSSID 99-99-99-99-99-99
Example 1 removes the LIS WAP location with the BSSID 99-99-99-99-99-99.
If this WAP was associated with a location, that location will not be removed, only the WAP will be removed from the location mapping.
-------------------------- Example 2 --------------------------
Get-CsLisWirelessAccessPoint | Where-Object {$_.Location -like "*Bldg30*"} | Remove-CsLisWirelessAccessPoint
This example removes all WAPs in building 30. The example begins with a call to the Get-CsLisWirelessAccessPoint cmdlet, which returns a collection of all WAPs. This collection is piped to the Where-Object cmdlet, which finds the items in that collection that have a Location property that contains the string Bldg30 anywhere in the value; in other words, a Location that is like (-like) Bldg30. Finally, we pipe this collection of WAPs in building 30 to the Remove-CsLisWirelessAccessPoint cmdlet, which removes everything in that collection.
Note that, as in Example 1, no locations are removed from the location configuration database, only the WAPs that reference those locations are removed.
See Also
Other Resources
Set-CsLisWirelessAccessPoint
Get-CsLisWirelessAccessPoint
Remove-CsLisLocation