From 8f06e98b6b0832ead75287391d7596f695a38268 Mon Sep 17 00:00:00 2001 From: Andres Mariano Gorzelany <36666927+get-itips@users.noreply.github.com> Date: Mon, 20 May 2019 13:22:24 -0300 Subject: [PATCH] Corrected Example #1 If you use the example without a format-list or format-table, it will only show some attributes and not the result given in this example https://github.com/MicrosoftDocs/windows-powershell-docs/issues/563 --- docset/windows/storage/get-storagereliabilitycounter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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