Skip to content

Commit c08037c

Browse files
authored
Merge pull request #1055 from get-itips/patch-20
Corrected Example #1
2 parents 412901b + da28155 commit c08037c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docset/windows/storage/get-storagereliabilitycounter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ These counters include information about such things as the device temperature,
4545

4646
### Example 1: Get the counters for a specified physical disk
4747
```
48-
PS C:\>Get-PhysicalDisk -FriendlyName "PhysicalDisk8" | Get-StorageReliabilityCounter
48+
PS C:\>Get-PhysicalDisk -FriendlyName "PhysicalDisk8" | Get-StorageReliabilityCounter | Format-List
4949
5050
ObjectId : {e24dbc00-a448-11e1-a100-806e6f6e6963}:reliabilitycounter
5151
PassThroughClass :
@@ -72,7 +72,7 @@ WriteErrorsUncorrected : 0
7272
PSComputerName :
7373
```
7474

75-
This command gets the physical disk named PhysicalDisk8, and uses the pipeline operator to pass it to Get-StorageReliabilityCounter, which gets its storage reliability counters.
75+
This command gets the physical disk named PhysicalDisk8, and uses the pipeline operator to pass it to Get-StorageReliabilityCounter, which gets all of its storage reliability counters through another pipeline with Format-List.
7676

7777
## PARAMETERS
7878

0 commit comments

Comments
 (0)