Azure AD Application Branding using Powershell Scripts

Subramanyam k 251 Reputation points
2020-07-27T02:58:36.09+00:00

Hi,

Currently to set the Branding Parameters for Azure AD Applications using Powershell scripts, We are calling the Graph API.

Is there any other way with Powershell commands to set the branding while creating the Azure AD application

Thanks,
Subbu

Azure Automation
Azure Automation
An Azure service that is used to automate, configure, and install updates across hybrid environments.
1,255 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,691 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. AmanpreetSingh-MSFT 56,601 Reputation points
    2020-07-27T06:16:25.38+00:00

    Hello @Subramanyamk-9132

    All AzureAD PowerShell commands and even the Azure Portal makes graph calls to make changes to Azure AD database in the background. There can be different versions of Graph API used to make any changes to Azure AD but all changes to Azure AD can only be made via Graph API. There is no way to make changes to Azure AD without using Graph API. This is as per design.


    Please do not forget to "Accept the answer" wherever the information provided helps you. This will help others in the community as well.

    0 comments No comments

  2. soumi-MSFT 11,776 Reputation points Microsoft Employee
    2020-07-27T06:21:18.427+00:00

    @Subramanyamk-9132, Thank you for reaching out. Yes, there is a Powershell cmdlet available to set the logo for the Application Registration in AAD.
    You can use the following cmdlet:

     Set-AzureADApplicationLogo -ObjectId 79592454-dea7-4660-9d91-f1768e5055ac -FilePath D:\applogo.jpg
    

    Where the -ObjectID of the Application for which the logo is set.

    You can find more details about this cmdlet here: https://video2.skills-academy.com/en-us/powershell/module/azuread/set-azureadapplicationlogo?view=azureadps-2.0

    Hope this helps.

    Do let us know if this helps and if there are any more queries around this, please do let us know so that we can help you further. Also, please do not forget to accept the response as Answer; if the above response helped in answering your query.

    0 comments No comments

  3. Subramanyam k 251 Reputation points
    2020-07-27T10:19:07.487+00:00

    Hi @soumi-MSFT ,

    We looking into setting the parameters "termsOfServiceUrl" and "privacyStatementUrl" in Azure AD application branding section using powershell commands.


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.