Remove-DhcpServerv4MulticastExclusionRange

Remove-DhcpServerv4MulticastExclusionRange

Removes a range of addresses previously excluded from a multicast scope.

Sintaxis

Parameter Set: Remove2
Remove-DhcpServerv4MulticastExclusionRange [-Name] <String> [[-StartRange] <IPAddress> ] [[-EndRange] <IPAddress> ] [-AsJob] [-CimSession <CimSession[]> ] [-ComputerName <String> ] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Descripción detallada

The Remove-DhcpServerv4MulticastExclusionRange cmdlet removes a range of addresses previously excluded from a multicast scope. The addresses are available immediately after the cmdlet runs. An exclusion prevents the Dynamic Host Configuration Protocol (DHCP) Server service from offering these addresses for DHCP assignment.

Parámetros

-AsJob

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-CimSession<CimSession[]>

Ejecuta el cmdlet en una sesión remota o en un equipo remoto. Escriba un nombre de equipo o un objeto de sesión, como la salida de un cmdlet New-CimSession o Get-CimSession. El valor predeterminado es la sesión actual en el equipo local.

Alias

Session

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-ComputerName<String>

Specifies the Domain Name System (DNS) name or IP address of the target computer that runs the DHCP Server service.

Alias

Cn

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-EndRange<IPAddress>

Specifies the high end of the range of IP addresses previously excluded from the scope. Use the StartRange parameter to specify the low end of the range of IP addresses to remove from the exclusion range. If you do not specify the low end of the range by using the StartRange parameter, the cmdlet removes the exclusion range that ends with this parameter. If the DHCP Server service is not excluding addresses ending at the specified value, the cmdlet returns an error and exits.

If you do not specify either the low end or the high end of the exclusion range, the cmdlet removes all exclusion ranges for the specified scope.

Alias

ninguno

¿Requerido?

false

¿Posición?

4

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Name<String>

Specifies the name of the multicast scope from which to remove the IP address exclusion range.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-PassThru

Devuelve un objeto que representa el elemento con el que está trabajando. De forma predeterminada, este cmdlet no genera ningún resultado. If this parameter is specified, the cmdlet return the PowerShell objects which are deleted.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-StartRange<IPAddress>

Specifies the low end of the range of IP addresses that were previously excluded from the scope. Use the EndRange parameter to specify the high end of the range of IP addresses to remove from the exclusion range. If you do not specify the high end of the range by using the EndRange parameter, the cmdlet removes the exclusion range that begins with this parameter. If the DHCP Server service is not excluding addresses beginning at the specified value, the cmdlet returns an error and exits.

If you do not specify either the low end or the high end of the exclusion range, the cmdlet removes all exclusion ranges for the specified scope.

Alias

ninguno

¿Requerido?

false

¿Posición?

3

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-ThrottleLimit<Int32>

Especifica el número máximo de operaciones simultáneas que se pueden establecer para ejecutar el cmdlet. Si se omite este parámetro o es especifica un valor de 0, Windows PowerShell ® calcula un límite óptimo para el cmdlet en función del número de cmdlets de CIM que se estén ejecutando en el equipo. El límite solo se aplica al cmdlet actual, no a la sesión ni al equipo.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Confirm

Solicita confirmación antes de ejecutar el cmdlet.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-WhatIf

Muestra lo que sucedería si se ejecutara el cmdlet. El cmdlet no se ejecuta.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

Example 1: Remove an excluded address range by scope name

This command removes all excluded multicast IP address ranges from the multicast scope named Multicast_VideoConference from the DHCP Server service running on the computer named DhcpServer01.Contoso.com.

PS C:\> Remove-DhcpServerv4MulticastExclusionRange -Name "Multicast_VideoConference" -ComputerName "DhcpServer01.Contoso.com"

Example 2: Remove an excluded address range by IP address

This command removes the excluded multicast IP address range 224.0.0.21 through 224.0.0.25 from the multicast scope named Multicast_VideoConference.

PS C:\> Remove-DhcpServerv4MulticastExclusionRange -Name "Multicast_VideoConference" -StartRange 224.0.0.21 -EndRange 224.0.0.25 -ComputerName "DhcpServer01.Contoso.com"

Example 3: Remove an excluded address range by start range

This command removes the excluded multicast IP address range beginning with address 224.0.0.21. The command specifies the multicast scope named Multicast_VideoConference for the DHCP Server service running on the computer named DhcpServer01.Contoso.com.

PS C:\> Remove-DhcpServerv4MulticastExclusionRange -Name "Multicast_VideoConference" -StartRange 224.0.0.21 -ComputerName "DhcpServer01.Contoso.com"

Temas relacionados

Add-DhcpServerv4MulticastExclusionRange

Get-DhcpServerv4MulticastExclusionRange