Skip to content

Commit 53e174b

Browse files
authored
Update storage-quickstart-blobs-powershell.md
1 parent 484b9b8 commit 53e174b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/blobs/storage-quickstart-blobs-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: tamram
88
ms.service: storage
99
ms.subservice: blobs
1010
ms.topic: quickstart
11-
ms.date: 02/26/2020
11+
ms.date: 03/31/2020
1212
ms.author: tamram
1313
---
1414

@@ -24,15 +24,15 @@ To access Azure Storage, you'll need an Azure subscription. If you don't already
2424

2525
[!INCLUDE [updated-for-az](../../../includes/updated-for-az.md)]
2626

27-
This quickstart requires the Azure PowerShell module Az version 0.7 or later. Run `Get-InstalledModule -Name Az -AllVersions | select Name,Version` to find the version. If you need to install or upgrade, see [Install Azure PowerShell module](/powershell/azure/install-Az-ps).
27+
This quickstart requires the Azure PowerShell module Az version 0.7 or later. Run `Get-InstalledModule -Name Az -AllVersions | select Name,Version` to find the version. If you need to install or upgrade, see [Install Azure PowerShell module](/powershell/azure/install-az-ps).
2828

2929
[!INCLUDE [storage-quickstart-tutorial-intro-include-powershell](../../../includes/storage-quickstart-tutorial-intro-include-powershell.md)]
3030

3131
## Create a container
3232

3333
Blobs are always uploaded into a container. You can organize groups of blobs like the way you organize your files on your computer in folders.
3434

35-
Set the container name, then create the container by using [New-AzStorageContainer](/powershell/module/az.storage/new-AzStoragecontainer). Set the permissions to `blob` to allow public access of the files. The container name in this example is *quickstartblobs*.
35+
Set the container name, then create the container by using [New-AzStorageContainer](/powershell/module/az.storage/new-azstoragecontainer). Set the permissions to `blob` to allow public access of the files. The container name in this example is *quickstartblobs*.
3636

3737
```powershell
3838
$containerName = "quickstartblobs"
@@ -43,7 +43,7 @@ New-AzStorageContainer -Name $containerName -Context $ctx -Permission blob
4343

4444
Blob storage supports block blobs, append blobs, and page blobs. VHD files that back IaaS VMs are page blobs. Use append blobs for logging, such as when you want to write to a file and then keep adding more information. Most files stored in Blob storage are block blobs.
4545

46-
To upload a file to a block blob, get a container reference, then get a reference to the block blob in that container. Once you have the blob reference, you can upload data to it by using [Set-AzStorageBlobContent](/powershell/module/az.storage/set-AzStorageblobcontent). This operation creates the blob if it doesn't exist, or overwrites the blob if it exists.
46+
To upload a file to a block blob, get a container reference, then get a reference to the block blob in that container. Once you have the blob reference, you can upload data to it by using [Set-AzStorageBlobContent](/powershell/module/az.storage/set-azstorageblobcontent). This operation creates the blob if it doesn't exist, or overwrites the blob if it exists.
4747

4848
The following examples upload *Image001.jpg* and *Image002.png* from the *D:\\_TestImages* folder on the local disk to the container you created.
4949

@@ -65,15 +65,15 @@ Upload as many files as you like before continuing.
6565

6666
## List the blobs in a container
6767

68-
Get a list of blobs in the container by using [Get-AzStorageBlob](/powershell/module/az.storage/get-AzStorageblob). This example shows just the names of the blobs uploaded.
68+
Get a list of blobs in the container by using [Get-AzStorageBlob](/powershell/module/az.storage/get-azstorageblob). This example shows just the names of the blobs uploaded.
6969

7070
```powershell
7171
Get-AzStorageBlob -Container $ContainerName -Context $ctx | select Name
7272
```
7373

7474
## Download blobs
7575

76-
Download the blobs to your local disk. For each blob you want to download, set the name and call [Get-AzStorageBlobContent](/powershell/module/az.storage/get-AzStorageblobcontent) to download the blob.
76+
Download the blobs to your local disk. For each blob you want to download, set the name and call [Get-AzStorageBlobContent](/powershell/module/az.storage/get-azstorageblobcontent) to download the blob.
7777

7878
This example downloads the blobs to *D:\\_TestImages\Downloads* on the local disk.
7979

0 commit comments

Comments
 (0)