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

Get-PSUJobPipelineOutput

Gets the pipeline output written by a job.

SYNOPSIS

Gets the pipeline output written by a job.

SYNTAX

ById

Get-PSUJobPipelineOutput -JobId <Int64> [-ComputerName <String>] [-AppToken <String>]
 [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate] [-Cookies]
 [<CommonParameters>]

ByRunId

Get-PSUJobPipelineOutput -RunId <Guid> [-ComputerName <String>] [-AppToken <String>]
 [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate] [-Cookies]
 [<CommonParameters>]

ByObject

Get-PSUJobPipelineOutput -Job <Job> [-ComputerName <String>] [-AppToken <String>] [-Credential <PSCredential>]
 [-UseDefaultCredentials] [-Integrated] [-TrustCertificate] [-Cookies]
 [<CommonParameters>]

DESCRIPTION

Gets the pipeline output written by a job. Pipeline output that is written to a job is stored as CLIXML and can be retrieved by this cmdlet.

EXAMPLES

Example 1

Returns pipeline output for job 10.

Example 2

Returns pipeline output for job 12.

PARAMETERS

-AppToken

App token to access the PowerShell Universal server.

-ComputerName

The name or URL of the PowerShell Universal server.

-Integrated

Whether to use integrated transport

-Job

The job for which to receive the pipeline input for.

-JobId

The job ID for which to receive the pipeline input for.

-UseDefaultCredentials

Use default Windows Credentials when connecting to PowerShell Universal.

-RunId

The run ID (GUID) for this job. Requires JobRunId experimental feature.

-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

UniversalAutomation.Job

OUTPUTS

System.Object

NOTES

Get-PSUJob

Last updated

Was this helpful?