In this Azure PowerShell article, we will discuss the syntax and usage of the Get-AzureADDeletedApplication PowerShell command with examples of how to use this command.
Get-AzureADDeletedApplication
This command can help you to get the lists of deleted applications.
Syntax
Below is the syntax of the Get-AzureADDeletedApplication PowerShell command.
Get-AzureADDeletedApplication
Get-AzureADDeletedApplication
[-SearchString <String>]
Let’s discuss a few examples of how to use the Get-AzureADDeletedApplication PowerShell command.
Example-1:
You can execute the below Azure PowerShell command to retrieve the lists of deleted applications.
Get-AzureADDeletedApplication
After executing the above command, I got the below-expected output.
PS C:\WINDOWS\system32> Get-AzureADDeletedApplication
ObjectId AppId DisplayName
-------- ----- -----------
ef68982c-5978-4b9b-8589-ba174f5b8f08 07a20682-d07e-4419-857f-f9943a9ea7bf TsinfoApp
You can see the same output below

Example-2:
You can execute the below Azure PowerShell command to retrieve a specific deleted application with a filter condition based on the specified Display name.
Get-AzureADDeletedApplication -Filter "DisplayName eq 'TsinfoApp'"
After executing the above PowerShell command, I got the expected output as below.

You can also check out a video tutorial on the Get-AzureADDeletedApplication PowerShell command.
Final Thoughts
Well, in this article, we discussed the syntax and usage of the Get-AzureADDeletedApplication PowerShell command with examples. Thanks for reading this article !!!