For the complete documentation index, see llms.txt. This page is also available as Markdown.

Start-PSUTerminalInstance

Starts a terminal instance.

SYNOPSIS

Starts a terminal instance.

SYNTAX

Start-PSUTerminalInstance -Terminal <Terminal> [-ComputerName <String>] [-AppToken <String>]
 [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate] [-Cookies]
 [<CommonParameters>]

DESCRIPTION

Starts a terminal instance. Use Get-PSUTerminal to return terminal configurations.

EXAMPLES

Example 1

PS C:\> $Terminal = Get-PSUTerminal | Where-Object Name -eq 'Terminal1'
PS C:\> Start-PSUTerminalInstance -Terminal $Terminal

Starts a new instance of Terminal1

PARAMETERS

-AppToken

An App Token for authenticating against the PowerShell Universal server.

-ComputerName

The name or URL of the PowerShell Universal server.

-Integrated

Not supported

-Terminal

The terminal configuration to start. Use Get-PSUTerminal to return terminal configurations.

-UseDefaultCredentials

Whether to use Windows Authentication against the PowerShell Universal server.

-Credential

Credentials to login to the PowerShell Universal Management API.

-TrustCertificate

Whether the cmdlet should ignore certificate issues.

-Cookies

Reuses and persists authentication cookies for the current PowerShell session.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable, and -ProgressAction. For more information, see about_CommonParameters.

INPUTS

PowerShellUniversal.Terminal

OUTPUTS

System.Object

NOTES

Last updated

Was this helpful?