Remove-VMNetworkAdapterExtendedAcl

Remove-VMNetworkAdapterExtendedAcl

Removes an extended ACL for a virtual network adapter.

語法

Parameter Set: VMName
Remove-VMNetworkAdapterExtendedAcl [-VMName] <String[]> -Direction <VMNetworkAdapterExtendedAclDirection> -Weight <Int32> [-ComputerName <String[]> ] [-Passthru] [-VMNetworkAdapterName <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: InputObjectParameter
Remove-VMNetworkAdapterExtendedAcl [-InputObject] <VMNetworkAdapterExtendedAclSetting[]> [-Passthru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ManagementOS
Remove-VMNetworkAdapterExtendedAcl -Direction <VMNetworkAdapterExtendedAclDirection> -ManagementOS -Weight <Int32> [-ComputerName <String[]> ] [-Passthru] [-VMNetworkAdapterName <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ResourceObject
Remove-VMNetworkAdapterExtendedAcl [-VMNetworkAdapter] <VMNetworkAdapterBase[]> -Direction <VMNetworkAdapterExtendedAclDirection> -Weight <Int32> [-Passthru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: VMObject
Remove-VMNetworkAdapterExtendedAcl [-VM] <VirtualMachine[]> -Direction <VMNetworkAdapterExtendedAclDirection> -Weight <Int32> [-Passthru] [-VMNetworkAdapterName <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細描述

The Remove-VMNetworkAdapterExtendedAcl cmdlet removes an extended access control list (ACL) for a virtual network adapter.

參數

-ComputerName<String[]>

Specifies an array of Hyper-V hosts. The cmdlet removes an ACL associated with a virtual network adapter on the Hyper-V hosts that you specify.

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Direction<VMNetworkAdapterExtendedAclDirection>

Specifies the direction of network traffic, from the perspective of the virtual machine, to which the ACL applies. The cmdlet removes an ACL that has the value that you specify. 此參數接受的值包括:
     -- Inbound
     -- Outbound

別名

必要?

true

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-InputObject<VMNetworkAdapterExtendedAclSetting[]>

指定對這個 Cmdlet 的輸入。您可以使用這個參數,或是透過管道提供輸入給這個 Cmdlet。

別名

必要?

true

位置?

1

預設值

接受管線輸入?

True (ByValue, ByPropertyName)

接受萬用字元?

false

-ManagementOS

Indicates that the cmdlet operates on the parent or host operating system. If you specify this parameter, this cmdlet removes an ACL that applies in the parent or host operating system.

別名

必要?

true

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Passthru

將表示您正在使用的項目的物件傳回。根據預設,此 Cmdlet 不會產生任何輸出。

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-VM<VirtualMachine[]>

Specifies an array of virtual machines as VirutalMachine objects. The cmdlet removes an ACL for network adapters that belong to the virtual machines that you specify. To obtain a virtual machine object, use the Get-VM cmdlet.

別名

必要?

true

位置?

1

預設值

接受管線輸入?

True (ByValue)

接受萬用字元?

false

-VMName<String[]>

Specifies an array of names of virtual machines. The cmdlet removes an ACL for network adapters that belong to the virtual machines that you specify.

別名

必要?

true

位置?

1

預設值

接受管線輸入?

True (ByValue)

接受萬用字元?

false

-VMNetworkAdapter<VMNetworkAdapterBase[]>

Specifies an array virtual machine network adapters as VMNetworkAdapterBase objects. The cmdlet removes an ACL for the network adapters that you specify. To obtain a network adapter, use the Get-VMNetworkAdapter cmdlet.

別名

必要?

true

位置?

1

預設值

接受管線輸入?

True (ByValue)

接受萬用字元?

false

-VMNetworkAdapterName<String>

Specifies the name of a virtual network adapter. The cmdlet removes an ACL for the network adapter that you specify.

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Weight<Int32>

Specifies the weight of an ACL entry. Because weight is unique for each entry, if you specify a value for this parameter, the cmdlet removes a specific extended ACL entry.

別名

必要?

true

位置?

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 的物件類型。

  • None

輸出

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

  • Microsoft.HyperV.PowerShell.VMNetworkAdapterExtendedAclSetting

範例

Example 1: Remove a specific ACL

This command removes the ACL for inbound traffic that has a weight of 50 from the virtual machine named TSQA01.

PS C:\> Remove-VMNetworkAdapterExtendedAcl -VMName "TSQA01" –Direction InBound -Weight 50

Example 2: Remove all ACLs

This command uses the Get-VMNetworkAdapterExtendedAcl cmdlet to get all the ACLs for the virtual machine named TSQA01, and then passes them to the current cmdlet by using the pipeline operator. The command removes all the ACLs.

PS C:\> Get-VMNetworkAdapterExtendedAcl -VMName "TSQA01" | Remove-VMNetworkAdapterExtendedAcl

相關主題

Add-VMNetworkAdapterExtendedAcl

Get-VMNetworkAdapterExtendedAcl

Get-VM

Get-VMNetworkAdapter