In this Azure PowerShell article, we will discuss the syntax and usage of the Update-AzADApplication PowerShell command with examples of how to use this command.
Table of Contents
Update-AzADApplication
This is a very good PowerShell command to update the Azure AD applications.
Syntax
Below is the syntax of the Update-AzADApplication PowerShell command.
Update-AzADApplication
-ObjectId <String>
Let’s discuss an example of how to use the Update-AzADApplication PowerShell command.
Example:
You can execute the below PowerShell cmdlet to update the display name of the existing Azure AD application. In my case, I am trying to update my Application name from mynewadapp to tsinfoapp.
Update-AzADApplication -ObjectId 085b7a57-e110-45b8-ace3-c143404d9b5b -DisplayName tsinfoapp
After executing the above command, I got the below-expected output.

To cross-verify that the Display name of the Azure AD application has been updated successfully, I have executed the Get-AzADApplication PowerShell command. You can able to see in the below image that the Display name of the Azure AD application has been updated successfully.

Final Thoughts
In this Azure PowerShell article, we discussed the syntax and usage of the Update-AzADApplication PowerShell command with an example on how to use this command. Thanks for reading this article !!!