Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 594 Bytes

New-MRNGContainer.md

File metadata and controls

40 lines (25 loc) · 594 Bytes

New-MRNGContainer

SYNOPSIS

Create an mRemoteNG container node.

SYNTAX

New-MRNGContainer [<CommonParameters>]

DESCRIPTION

PARAMETERS

INPUTS

OUTPUTS

mRemoteNG.Container.ContainerInfo

NOTES

EXAMPLES

EXAMPLE 1

PS C:\>New-MRNGContainer -Name 'Test Container' -Parent $RootNode -Protocol SSH2

EXAMPLE 2

PS C:\>$Container = New-MRNGContainer -Name 'Test Container'

$RootContainer.AddChild( $Container )

$Container2 = New-MRNGContainer -Name 'Child Container'
$Container.AddChild( $Container2 )