Skip to content

Commit 73f7f29

Browse files
Merge pull request #213482 from stevenmatthew/nobr
Eliminated horizontal scrollbars
2 parents e8a3566 + 7380815 commit 73f7f29

File tree

2 files changed

+52
-43
lines changed

2 files changed

+52
-43
lines changed

articles/storage/blobs/blob-containers-powershell.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: stevenmatthew
77

88
ms.service: storage
99
ms.topic: how-to
10-
ms.date: 12/07/2021
10+
ms.date: 10/03/2022
1111
ms.author: shaas
1212
ms.subservice: blobs
1313
ms.custom: template-how-to
@@ -315,7 +315,8 @@ To learn more about the soft delete data protection option, refer to the [Soft d
315315
$ctx = New-AzStorageContext -StorageAccountName $accountName -UseConnectedAccount
316316
317317
# Retrieve all containers, filter deleted containers, restore deleted containers
318-
Get-AzStorageContainer -Prefix $prefixName -IncludeDeleted -Context $ctx | ? { $_.IsDeleted } | Restore-AzStorageContainer
318+
Get-AzStorageContainer -Prefix $prefixName -IncludeDeleted `
319+
-Context $ctx | ? { $_.IsDeleted } | Restore-AzStorageContainer
319320
```
320321

321322
The results display all containers with the prefix **demo** which have been restored.

0 commit comments

Comments
 (0)