Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (22 loc) · 738 Bytes

Test-ICXVLAN.README.md

File metadata and controls

36 lines (22 loc) · 738 Bytes

Test-ICXVLAN

Test if a VLAN exist on a Brocade ICX Switch.

Description

Test if a VLAN exist on a Brocade ICX Switch.

Screenshot

Syntax

Get-ICXVLAN [-ComputerName] <String[]> [[-AcceptKey]] [[-Credential] <PSCredential>] [<CommonParameters>]

Get-ICXVLAN [-Session] <PSObject[]> [<CommonParameters>]

Example 1

PS> Test-ICXVLAN -ComputerName megatron -VlanId 1
    
true

Example 2

PS> $Cred = Get-Credential $null
PS> Test-ICXVLAN -ComputerName megatron -VlanId 2 -Credential $Cred

false