Microsoft Partner Center App Registration

Kehinde Owens 1 Reputation point
2020-07-19T15:14:17.547+00:00

On the site https://partner.microsoft.com (Microsoft Partner Center) one must create or use an existing app registration to register with the Partner Portal. I've already programmatically created and assigned app permissions to the Azure App Registration. What I can't seem to do programmatically (Powershell) is to assign that existing app registration to the Partner Portal. I know there is a community maintained module for the Partner Portal but it doesn't seem to have any cmdlets related to this function. Any pointers?

12896-registered-app-in-partner-portal.png

Microsoft Partner Center API
Microsoft Partner Center API
Microsoft Partner Center: A Microsoft website for partners that provides access to product support, a partner community, and other partner services.API: A software intermediary that allows two applications to interact with each other.
345 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Jerryzy 10,571 Reputation points
    2020-07-20T06:59:05.263+00:00

    You can get start to use Partner Center PowerShell by the command "Connect-PartnerCenter" like this:

    $credential = Get-Credential  
    Connect-PartnerCenter -Credential $credential -Tenant 'xxxxx' -ServicePrincipal  
    

    The credential is the App Id and Secret you registered.

    Tenant parameter is the Tenant Id of your Partner Center.

    You can find more command details from here:

    connect-partnercenter

    0 comments No comments

  2. Kehinde Owens 1 Reputation point
    2020-07-20T13:22:44.56+00:00

    This doesn't answer my question. I know how to use the Partner Center Module; i'm asking SPECIFICALLY is there a way to register an app (App Management) using the Partner Center Powershell commands. I am trying to perform the action above (in my screenshot) without needing to access the GUI.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.