Get-LXCAJobNotes

This cmdlet retrieves the notes history for a specific job (task).

Note: You cannot pipe objects to this cmdlet.

Syntax

Get-LXCAJobNotes [-Connection LXCAConnection] 
                  -JobUID String
                 [CommonParameter]

Parameters

-Connection LXCAConnection
Specifies the connection to the Lenovo XClarity Administrator server. If no connection is specified, the result from the last Connect-LXCA cmdlet is used.
-JobUID String
Specifies the UID of the job.

If the job does not exist, the 404 - Not Found exception is thrown.

CommonParameters
This cmdlet supports the following common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer, -PipelineVariable, -OutVariable. For detailed information about each common parameter, see the Microsoft PowerShell Common Parameters webpage.

Results

Examples

The following example retrieves all notes from a specific job

$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred

$jobUID = 123444
$(Get-LXCAJobNotes -JobUID $jobUID)

Disconnect-LXCA