User Profile
Steve_W_UCCS
Copper Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Re: How to get All Azure AD devices with the column values from the Azure GUI app?
Shaik Hameed Thank you for this information. And based on the other responses, I was able to establish counts for each join type: (Get-AzureADDevice -All $true | Where {$_.DeviceTrustType -eq "ServerAd"}).count (Get-AzureADDevice -All $true | Where {$_.DeviceTrustType -eq "AzureAd"}).count (Get-AzureADDevice -All $true | Where {$_.DeviceTrustType -eq "Workplace"}).count Or combine a couple: (Get-AzureADDevice -All $true | Where {($_.DeviceTrustType -eq "ServerAd") -or ($_.DeviceTrustType -eq "AzureAd")}).count Or all Azure AD Devices: (Get-AzureADDevice -All $true).count99KViews0likes1Comment
Groups
Recent Blog Articles
No content to show