I have created a resource group in the azure management portal to create all of my Azure Backup resources in. When you create a new Azure Backup resource, it doesnt give you a option to choose the resource group, rather it defaults to the one it wants to create on its own.
I looked online and found that you could move the resource from one group to another using the command
Get-AzureRMResource -ResourceName ResourceName -ResourceGroupName OldResourceGroup | Move-AzureRMResource -DestinationResourceGroupName Destination resource group
When i run the command, i get an error stating that the File or directory not found. The resource you are looing for might have been removed, had its name changed, or is temporarily unavailable. Its erroring out on the DestinationResourceGroupName which i copied and pasted after i found it by running the Get-AzureRMResourceGroup command.
When i run the command, i can log into the portal and see it attempting to move the group, but nothing works.
Ideas?