I've just tried to use the fancy new Azure Cloud Shell announced at Build 2017 but I'm getting the following error (as a json message):
{
"error": {
"code": "MissingSubscriptionRegistration",
"message": "The subscription is not registered to use namespace 'Microsoft.Storage'"
}
}
I've googled this and found answers that suggest I need to register a resource provider with:
Register-AzureRmResourceProvider -ProviderNamespace Microsoft.Storage
or
azure provider register Microsoft.Storage
...but I'm too lazy to setup a command line session to Azure.
How do I do this with the Azure portal?
