Remove-DhcpServerv4MulticastExclusionRange

Remove-DhcpServerv4MulticastExclusionRange

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

語法

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

詳細描述

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.

參數

-AsJob

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-CimSession<CimSession[]>

在遠端工作階段或遠端電腦上執行 Cmdlet。輸入電腦名稱或工作階段物件,例如 New-CimSessionGet-CimSession Cmdlet 的輸出。預設為本機電腦上的目前工作階段。

別名

Session

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-ComputerName<String>

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

別名

Cn

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

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.

別名

必要?

false

位置?

4

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-Name<String>

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

別名

必要?

true

位置?

2

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-PassThru

將表示您正在使用的項目的物件傳回。根據預設,此 Cmdlet 不會產生任何輸出。 If this parameter is specified, the cmdlet return the PowerShell objects which are deleted.

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

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.

別名

必要?

false

位置?

3

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-ThrottleLimit<Int32>

指定為執行此 Cmdlet 可建立的最大同時作業數。如果省略這個參數或輸入 0 的值,則 Windows PowerShell® 會根據在電腦上執行的 CIM Cmdlet 數目,計算 Cmdlet 的最佳節流限制。節流限制僅適用於目前 Cmdlet,不適用於工作階段或電腦。

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Confirm

執行 Cmdlet 之前先提示您確認。

必要?

false

位置?

named

預設值

false

接受管線輸入?

false

接受萬用字元?

false

-WhatIf

顯示執行 Cmdlet 後會發生的情況。未執行 Cmdlet。

必要?

false

位置?

named

預設值

false

接受管線輸入?

false

接受萬用字元?

false

<CommonParameters>

此 Cmdlet 支援一般參數:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 與 -OutVariable。如需詳細資訊,請參閱 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

輸入

輸入類型是您可以使用管線處理方式傳遞給 Cmdlet 的物件類型。

輸出

輸出類型是 Cmdlet 所發出的物件類型。

範例

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"

相關主題

Add-DhcpServerv4MulticastExclusionRange

Get-DhcpServerv4MulticastExclusionRange