Get-CauReport
Gets 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>]
[-Detailed]
[-Credential <PSCredential>]
[<CommonParameters>]
Get-CauReport
[[-ClusterName] <String>]
[[-StartDate] <DateTime>]
[[-EndDate] <DateTime>]
[-Detailed]
[-Credential <PSCredential>]
[<CommonParameters>]
Get-CauReport
[[-ClusterName] <String>]
[-Last]
[-Detailed]
[-Credential <PSCredential>]
[<CommonParameters>]
Get-CauReport
[[-ClusterName] <String>]
[-Report <CauReportSummary>]
[-Credential <PSCredential>]
[<CommonParameters>]
Description
The Get-CauReport
cmdlet gets 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.
Examples
Example 1: Get a detailed list of updating runs from the specified cluster
Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed
This command gets a detailed list of the updating runs performed on the cluster named Contoso-FC1 on 01/01/2012 or later.
Example 2: Get a detailed list of updating runs from a date span from the specified cluster
Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed
This command gets 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: Get the last updating run summary from the specified cluster
$CauReportSummary = Get-CauReport "Contoso-FC1" -Last
Get-CauReport "Contoso-FC1" -Report $CauReportSummary
The first command gets the last updating run report summary from the cluster named Contoso-FC1 and
stores the result in the variable named $CauReportSummary
.
The second command gets the detailed report from the information stored in the $CauReportSummary
variable.
Parameters
-ClusterName
Specifies the name of the cluster for which this cmdlet gets reports. This parameter is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Credential
Specifies the administrative credentials for the target cluster.
Type: | PSCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Detailed
Specifies that cmdlet gets full results for one or more runs, instead of just summary information.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-EndDate
Specifies that this cmdlet gets only the reports for runs before this time.
Type: | DateTime |
Position: | 2 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Last
Indicates that this cmdlet gets only the most recent run report.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Report
Specifies the report summary that this cmdlet gets detailed results for the run.
Type: | CauReportSummary |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-StartDate
Specifies that this cmdlet gets only the reports for runs after this time.
Type: | DateTime |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Microsoft.ClusterAwareUpdating.CauReportSummary
Outputs
Microsoft.ClusterAwareUpdating.CauReport
Microsoft.ClusterAwareUpdating.CauReportSummary