Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docset/windows/storage/get-storagereliabilitycounter.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ These counters include information about such things as the device temperature,

### Example 1: Get the counters for a specified physical disk
```
PS C:\>Get-PhysicalDisk -FriendlyName "PhysicalDisk8" | Get-StorageReliabilityCounter
PS C:\>Get-PhysicalDisk -FriendlyName "PhysicalDisk8" | Get-StorageReliabilityCounter | Format-List

ObjectId : {e24dbc00-a448-11e1-a100-806e6f6e6963}:reliabilitycounter
PassThroughClass :
Expand All @@ -72,7 +72,7 @@ WriteErrorsUncorrected : 0
PSComputerName :
```

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.
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.

## PARAMETERS

Expand Down