Azure: This subscription is not registered to use Microsoft.Compute/ManagedResourcesMove feature error

ismail yenigül
1 min readOct 24, 2018

--

When I tried to move a resource group to another resource group in different region I got the following error message on azure dashboard

{“code”: “ResourceMoveProviderValidationFailed”,“message”: “Resource move validation failed. Please see details. Diagnostic information: timestamp ‘20181024T122442Z’, subscription id ‘4ffd5b64-e8eb-4802-b4d1-xyz’, tracking id ‘14072556-c18e-4661-b423–zyz’, request correlation id ‘308507fe-8cd8–43d8-b6e1–xyz’.”,“details”: [{“target”: “Microsoft.Compute/disks”,“message”: “{\”error\”:{\”code\”:\”BadRequest\”,\”message\”:\”This subscription is not registered to use Microsoft.Compute/ManagedResourcesMove feature. Browse the link https://aka.ms/movemdsignup for resource move information.\”}}”}]

When I check Resource providers in Subscription menu I can see that I registered Microsoft.Compute. Azure portal does not allow me to go in details Microsoft.Compute to enable ManagedResourcesMove. I found the following link in the forum.

To fix this issue Launch Azure Cloud Shell in portal and enable ManagedResourcesMove feature.

Run below script on destination subscription.

 Login-AzureRmAccount
Get-AzureRmSubscription
#Select Your Subscription
Select-AzureRmSubscription -SubscriptionId ‘Your Subscription ID’

# To register your Provider-Namespace
Register-AzureRmResourceProvider -ProviderNamespace Microsoft.Compute

# Check your Provider-Namespace
get-AzureRmResourceProvider -ProviderNamespace Microsoft.Compute

#Register the managed Disk Feature
Register-AzureRmProviderFeature -FeatureName ManagedResourcesmove -ProviderNamespace Microsoft.Compute

# Check your registration status. Normally take some time.
Get-AzureRmProviderFeature -FeatureName ManagedResourcesmove -ProviderNamespace Microsoft.Compute

Ismail Yenigul

--

--

ismail yenigül
ismail yenigül

Written by ismail yenigül

CKA/CKAD,AWS certified Freelancer DevOps Engineer

Responses (1)