diff --git a/docset/windows/storage/get-storagereliabilitycounter.md b/docset/windows/storage/get-storagereliabilitycounter.md index 06bb5f78bf..44a6dee4e2 100644 --- a/docset/windows/storage/get-storagereliabilitycounter.md +++ b/docset/windows/storage/get-storagereliabilitycounter.md @@ -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 : @@ -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