diff --git a/src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/ServiceConfig/GetAzureStorSimpleStorageAccountCredential.cs b/src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/ServiceConfig/GetAzureStorSimpleStorageAccountCredential.cs index 37beb7dbb314..e302691dfe99 100644 --- a/src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/ServiceConfig/GetAzureStorSimpleStorageAccountCredential.cs +++ b/src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/ServiceConfig/GetAzureStorSimpleStorageAccountCredential.cs @@ -38,7 +38,7 @@ public override void ExecuteCmdlet() var allSACs = StorSimpleClient.GetAllStorageAccountCredentials(); if (StorageAccountName == null) { - WriteObject(allSACs); + WriteObject(allSACs, true); WriteVerbose(string.Format(Resources.SACGet_StatusMessage, allSACs.Count, allSACs.Count > 1 ? "s" : string.Empty)); return; } @@ -60,4 +60,4 @@ public override void ExecuteCmdlet() } } } -} \ No newline at end of file +}