Relative Content

Tag Archive for azurepowershellazure-powershellazure-entra-id

Get-AzureADUser with multiple pipe:s

Today i’m retrieving our Entra ID users using this code snippet:
Get-AzureADUser -All $true -Filter "UserType eq 'Member'"| Select-Object -Property $args[0] | Where-Object {($_.DirSyncEnabled -eq 'True')}