@@ -19,38 +19,40 @@ specified dates or other specified parameters.
19
19
### AllParamsSet (Default)
20
20
21
21
```
22
- Get-CauReport [[-ClusterName] <String>] [-Detailed] [-Credential <PSCredential>] [<CommonParameters>]
22
+ Get-CauReport [[-ClusterName] <String>] [-Detailed] [-Credential <PSCredential>]
23
+ [<CommonParameters>]
23
24
```
24
25
25
26
### RangeParamSet
26
27
27
28
```
28
- Get-CauReport [[-ClusterName] <String>] [[-StartDate] <DateTime>] [[-EndDate] <DateTime>] [-Detailed]
29
- [-Credential <PSCredential>] [<CommonParameters>]
29
+ Get-CauReport [[-ClusterName] <String>] [[-StartDate] <DateTime>] [[-EndDate] <DateTime>]
30
+ [-Detailed] [- Credential <PSCredential>] [<CommonParameters>]
30
31
```
31
32
32
33
### LastParamSet
33
34
34
35
```
35
- Get-CauReport [[-ClusterName] <String>] [-Last] [-Detailed] [-Credential <PSCredential>] [<CommonParameters>]
36
+ Get-CauReport [[-ClusterName] <String>] [-Last] [-Detailed] [-Credential <PSCredential>]
37
+ [<CommonParameters>]
36
38
```
37
39
38
40
### SpecificReportParamSet
39
41
40
42
```
41
- Get-CauReport [[-ClusterName] <String>] [-Report <CauReportSummary>] [-Credential <PSCredential>]
42
- [<CommonParameters>]
43
+ Get-CauReport [[-ClusterName] <String>] [-Report <CauReportSummary>]
44
+ [-Credential <PSCredential>] [ <CommonParameters>]
43
45
```
44
46
45
47
## DESCRIPTION
46
48
47
49
The ` Get-CauReport ` cmdlet gets the Updating Run reports for all known Updating Runs, or all
48
50
Updating Runs that match the specified dates or other specified parameters. This cmdlet can return a
49
- list of all Updating Run reports between the specified ** StartDate** and ** EndDate** parameters, or if
50
- the ** Last** parameter is specified instead of dates, then the cmdlet returns the most recent Updating
51
- Run report. By default, the report contains summaries only, but more detail can be obtained with the
52
- ** Detailed** parameter or by using the ** Report** parameter and specifying a Cluster-Aware Updating
53
- (CAU) report summary object.
51
+ list of all Updating Run reports between the specified ** StartDate** and ** EndDate** parameters, or
52
+ if the ** Last** parameter is specified instead of dates, then the cmdlet returns the most recent
53
+ Updating Run report. By default, the report contains summaries only, but more detail can be obtained
54
+ with the ** Detailed** parameter or by using the ** Report** parameter and specifying a Cluster-Aware
55
+ Updating (CAU) report summary object.
54
56
55
57
## EXAMPLES
56
58
@@ -60,16 +62,16 @@ Run report. By default, the report contains summaries only, but more detail can
60
62
Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed
61
63
```
62
64
63
- This command gets a detailed list of the updating runs performed on the cluster named Contoso-FC1 on
64
- 01/01/2012 or later.
65
+ This command gets a detailed list of the updating runs performed on the cluster named ** Contoso-FC1**
66
+ on 01/01/2012 or later.
65
67
66
68
### Example 2: Get a detailed list of updating runs from a date span from the specified cluster
67
69
68
70
``` powershell
69
71
Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed
70
72
```
71
73
72
- This command gets a detailed list of the updating runs performed on the cluster called Contoso-FC1
74
+ This command gets a detailed list of the updating runs performed on the cluster called ** Contoso-FC1**
73
75
starting with updating runs on 01/01/2012 and ending with updating runs on 04/01/2012.
74
76
75
77
### Example 3: Get the last updating run summary from the specified cluster
@@ -79,7 +81,7 @@ $CauReportSummary = Get-CauReport "Contoso-FC1" -Last
79
81
Get-CauReport "Contoso-FC1" -Report $CauReportSummary
80
82
```
81
83
82
- The first command gets the last updating run report summary from the cluster named Contoso-FC1 and
84
+ The first command gets the last updating run report summary from the cluster named ** Contoso-FC1** and
83
85
stores the result in the variable named ` $CauReportSummary ` .
84
86
85
87
The second command gets the detailed report from the information stored in the ` $CauReportSummary `
@@ -206,7 +208,7 @@ Accept wildcard characters: False
206
208
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
207
209
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
208
210
-WarningAction, and -WarningVariable. For more information, see
209
- [about_CommonParameters](https://go. microsoft.com/fwlink/?LinkID=113216 ).
211
+ [about_CommonParameters](/powershell/module/ microsoft.powershell.core/about/about_commonparameters ).
210
212
211
213
## INPUTS
212
214
@@ -222,5 +224,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
222
224
223
225
## RELATED LINKS
224
226
225
- [Export-CauReport](./Export-CauReport.md)
226
-
227
+ [Export-CauReport](export-caureport.md)
0 commit comments