Management

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 773 other subscribers

Social

  • LinkedIn
  • RSS Feed for Posts
  • Twitter
  • StumbleUpon

[Solved] Azure : link your Partner ID to an Azure Tenant

This post describes how to link your Microsoft partner ID to an Azure tenant

Change by GUI

Log in azure with the credentials of the customer

Use this link:

https://portal.azure.com/#blade/Microsoft_Azure_Billing/managementpartnerblade

Fill in your partner ID

GUI-2

Click on Link a Partner ID

The portal is now linked to your subscription.

Change by Powershell

Install module AzureRM.ManagementPartner

Powershell-1

Install-Module -Name AzureRM.ManagementPartner

Find the tenantID

Go to Azure Active Directory => Properties => Directory ID

Connect powershell to the tenant

Connect to Azure :

Connect-AzureRmAccount -TenantId XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX

Error message when no connection is linked

Powershell-3

New-AzureRmManagementPartner -PartnerId 12345

Check the connection.

Delete an existing link to the partner ID

Powershell-5

Remove-AzureRmManagementPartner -PartnerId 12345 -PassThru

Documentation

For more information you can check the site of Microsoft:

https://docs.microsoft.com/en-us/powershell/module/azurerm.managementpartner/Get-AzureRmManagementPartner?view=azurermps-6.13.0