Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1006 Bytes

Import-MRNGRootNode.md

File metadata and controls

49 lines (35 loc) · 1006 Bytes

Import-MRNGRootNode

SYNOPSIS

Import an mRemoteNG root connections node from a confCons.xml file.

SYNTAX

Import-MRNGRootNode [-Path] <FileInfo> [[-EncryptionKey] <SecureString>] [<CommonParameters>]

DESCRIPTION

PARAMETERS

-Path <FileInfo>

Required?                    true
Position?                    1
Default value
Accept pipeline input?       false
Accept wildcard characters?  false

-EncryptionKey <SecureString>

The encryption key for the confCons.xml file.

Required?                    false
Position?                    2
Default value                ( ConvertTo-SecureString -String 'mR3m' -AsPlainText -Force )
Accept pipeline input?       false
Accept wildcard characters?  false

INPUTS

OUTPUTS

mRemoteNG.Tree.Root.RootNodeInfo

NOTES

EXAMPLES

EXAMPLE 1

PS C:\>$RootNode = Import-MRNGRootNode -Path .\confCons.xml -EncryptionKey ( Read-Host 'Encryiption Key' -AsSecureString )