Aug 25 2021 03:16 AM
Hello together
I need to get the the report from Azure AD Application Usage
The following link shows this in the Admin Center
https://portal.azure.com/#blade/Microsoft_AAD_IAM/StartboardApplicationsMenuBlade/AllApps/menuId/
Is there a way to do this from within PowerShell (as it's part of a reporting "Suite") to be able exporting it to CSV/Excel in an easier way?
Can this be achieved using the Graph API Module for PowerShell?
Thank you for your Help and best regards
Thomas
Aug 25 2021 04:40 AM
Solution@TechThomas Generally, applications inside Azure AD are service principals, and you can get a list of all service principals by using the "Get-AzureADServicePrincipal -All $true" command using PowerShell and export those as a CSV file using the Export-CSV cmdlet. You can also have a look a this Graph API call.
Aug 25 2021 04:59 AM
Aug 25 2021 05:08 AM
Aug 25 2021 05:57 AM
Aug 25 2021 06:07 AM
Aug 25 2021 06:17 AM
Aug 25 2021 07:08 AM - edited Nov 08 2023 11:15 PM
Aug 25 2021 04:40 AM
Solution@TechThomas Generally, applications inside Azure AD are service principals, and you can get a list of all service principals by using the "Get-AzureADServicePrincipal -All $true" command using PowerShell and export those as a CSV file using the Export-CSV cmdlet. You can also have a look a this Graph API call.