SYNOPSIS
Open the specified session.
SYNTAX
Open-RDMSession -ID [ID] <Guid> -Silent [Silent] <SwitchParameter> -ForceExternal [ForceExternal] <SwitchParameter> [<CommonParameters>]
DESCRIPTION
Open the specified session.
PARAMETERS
-ID <Guid>
(Required) Specifies the ID of the session to open.
Must be a valid GUID, in the form {00000000-0000-0000-0000-000000000000}.
-Silent <SwitchParameter>
Silent
-ForceExternal <SwitchParameter>
Open the session external
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable,OutBuffer and OutVariable.For more information, type, "get-help about_commonparameters".
NOTES
For more information, type "Get-Help Open-RDMSession -detailed". For technical information, type "Get-Help Open-RDMSession -full".
EXAMPLE 1
PS C:\> Open-RDMSession -ID "{00000000-0000-0000-0000-000000000000}"
Open the session with ID = "{00000000-0000-0000-0000-000000000000}".
EXAMPLE 2
PS C:\> $list = Get-RDMSession; Open-RDMSession -ID $list[1].ID
Retrieves the list of available sessions and opens the second element in the list.
RELATED LINKS