File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed
reference/6/Microsoft.PowerShell.Utility Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ Formats the output as a table.
17
17
## SYNTAX
18
18
19
19
```
20
- Format-Table [[-Property] <Object[]>] [-AutoSize ] [-HideTableHeaders] [-Wrap] [-GroupBy <Object>]
21
- [- View <string >] [-ShowError] [-DisplayError] [-Force] [-Expand <string>] [-InputObject <psobject >]
22
- [<CommonParameters>]
20
+ Format-Table [-AutoSize] [-RepeatHeader ] [-HideTableHeaders] [-Wrap] [[-Property] <Object[] >]
21
+ [-GroupBy <Object>] [- View <String >] [-ShowError] [-DisplayError] [-Force] [-Expand <String >]
22
+ [-InputObject <PSObject>] [<CommonParameters>]
23
23
```
24
24
25
25
## DESCRIPTION
@@ -427,6 +427,23 @@ Accept pipeline input: False
427
427
Accept wildcard characters: False
428
428
` ` `
429
429
430
+ # ## -RepeatHeader
431
+ Repeats displaying the header of a table after every screen full.
432
+ This is most useful when the output is piped to a pager such as `less` or
433
+ ` more` or paging and using a screen reader.
434
+
435
+ ` ` ` yaml
436
+ Type: SwitchParameter
437
+ Parameter Sets: (All)
438
+ Aliases:
439
+
440
+ Required: False
441
+ Position: Named
442
+ Default value: None
443
+ Accept pipeline input: False
444
+ Accept wildcard characters: False
445
+ ` ` `
446
+
430
447
# ## CommonParameters
431
448
432
449
This cmdlet supports the common parameters : -Debug, -ErrorAction, -ErrorVariable,
You can’t perform that action at this time.
0 commit comments