In this Azure PowerShell article, we will discuss the syntax and usage of the New-AzADApplication Azure PowerShell command with examples.
Table of Contents
New-AzADApplication
You can use the New-AzADApplication PowerShell command to add the new entity to the applications.
Syntax
Below is the syntax of the New-AzADApplication PowerShell command.
New-AzADApplication
-DisplayName <String>
Let’s discuss an example of how to use the New-AzADApplication PowerShell command.
Example:
Below PowerShell command can create an application with the display name “testing123”.
New-AzADApplication -DisplayName testing123
After executing the above command, I got the below output
DisplayName Id AppId
----------- -- -----
testing123 e7f31fb3-ecc1-4fe1-9720-78549faae15a 31b8010d-464f-49e3-b543-39c1339b4ec9

Now, you can use the Get-AzADApplication PowerShell command to get the details of the application.
Final Thoughts
Well, in this Azure PowerShell article, we will discuss the syntax and usage of the New-AzADApplication PowerShell command with an example of how to use this command. Thanks for reading this article !!!