Tip
To retrieve the name of your subscription run the following command:
Get-AzSubscription | Out-GridView
$SubscriptionName = "<Subscription Name>"
-
Provide the name of your resource group:
$ResourceGroupName
-
Provide the name of your new storage account:
$StorageAccountName
-
Provide a name for your new container:
$ContainerName
-
Provide a name for your new blob:
$BlobName
-
Provide the full path to a file you want to upload:
$FileToUpload
-
Provide the full path to a directory you wish to use for downloaded blobs:
$DestinationFolder
Tip
Context is the property of the storage account object
Tip
The following command will give you a list of the needed cmdlets
Get-Command -Module Az.Storage -noun *container*, *blob* | sort noun | ft -GroupBy noun