PowerShell Logo Small

Get-CauReport



This is the built-in help made by Microsoft for the command 'Get-CauReport', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Retrieves the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters.

SYNTAX


Get-CauReport [[-ClusterName] <String>] [-Credential <PSCredential>] [-Detailed] [<CommonParameters>]
Get-CauReport [[-ClusterName] <String>] [[-StartDate] <DateTime>] [[-EndDate] <DateTime>] [-Credential <PSCredential>] [-Detailed] [<CommonParameters>]
Get-CauReport [[-ClusterName] <String>] [-Credential <PSCredential>] [-Detailed] [-Last] [<CommonParameters>]
Get-CauReport [[-ClusterName] <String>] [-Credential <PSCredential>] [-Report <CauReportSummary>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-CauReport cmdlet retrieves the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters.
This cmdlet can return a list of all Updating Run reports between the specified StartDate and EndDate parameters, or if the Last parameter is specified instead of dates,
then the cmdlet returns the most recent Updating Run report. By default, the report contains summaries only, but more detail can be obtained with the Detailed parameter or
by using the Report parameter and specifying a Cluster-Aware Updating (CAU) report summary object for which to return the detailed results.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287666
Export-CauReport

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed



This example returns a detailed list of the Updating Runs performed on the cluster called Contoso-FC1 on 01/01/2012 or later.




EXAMPLE 2

PS C:\> Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed



This example returns a detailed list of the Updating Runs performed on the cluster called Contoso-FC1 starting with Updating Runs on 01/01/2012 and ending with Updating Runs
on 04/01/2012.




EXAMPLE 3

PS C:\> $CauReportSummary=Get-CauReport Contoso-FC1 -Last
PS C:\>Get-CauReport Contoso-FC1 -Report $CauReportSummary



This example uses a CAU report summary object called $CauReportSummary to return a detailed report of the last Updating Run performed on the cluster called Contoso-FC1.