Forum Discussion
Faiza Qadri
Nov 04, 2019Iron Contributor
How to get All Azure AD devices with the column values from the Azure GUI app?
Trying to extract a list (csv or excel) file for all Azure AD devices with the properties displayed on the Azure Portal (see attached picture)
Sankara_Subramanian
Copper Contributor
Are you familiar with Powershell? Simple option is to run the following in powershell to export all your list
#Connect into Azure AD
Connect-Azure AD
#Download all Azure AD Device
Get-AzureADDevice -All $true | export-csv AADDevice.csv
-Sankara
Yazo97
Nov 09, 2020Copper Contributor
Nice! Thanks for this