Get-CauReport

Get-CauReport

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

構文

Parameter Set: AllParamsSet
Get-CauReport [[-ClusterName] <String> ] [-Credential <PSCredential> ] [-Detailed] [ <CommonParameters>]

Parameter Set: LastParamSet
Get-CauReport [[-ClusterName] <String> ] [-Credential <PSCredential> ] [-Detailed] [-Last] [ <CommonParameters>]

Parameter Set: RangeParamSet
Get-CauReport [[-ClusterName] <String> ] [[-StartDate] <DateTime> ] [[-EndDate] <DateTime> ] [-Credential <PSCredential> ] [-Detailed] [ <CommonParameters>]

Parameter Set: SpecificReportParamSet
Get-CauReport [[-ClusterName] <String> ] [-Credential <PSCredential> ] [-Report <CauReportSummary> ] [ <CommonParameters>]

詳細説明

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.

パラメーター

-ClusterName<String>

Specifies the name of the cluster for which to retrieve reports. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run.

エイリアス

なし

必須?

false

位置は?

1

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Credential<PSCredential>

Specifies the administrative credentials for the target cluster.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Detailed

Specifies that the full results for one or more runs will be returned, instead of just summary information.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-EndDate<DateTime>

Retrieves only the reports for Runs before this time.

エイリアス

なし

必須?

false

位置は?

3

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Last

Retrieves only the most recent Run report.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Report<CauReportSummary>

Retrieves detailed results for the Run represented by the specified report summary.

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-StartDate<DateTime>

Retrieves only the reports from Runs on or after this time.

エイリアス

なし

必須?

false

位置は?

2

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

  • Microsoft.ClusterAwareUpdating.CauReportSummary

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • Microsoft.ClusterAwareUpdating.CauReport
  • Microsoft.ClusterAwareUpdating.CauReportSummary

EXAMPLE 1

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

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

EXAMPLE 2

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.

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

EXAMPLE 3

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.

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

関連トピック

Export-CauReport