What is the difference between IAM and Azure AD on the azure cloud?

Identity Access Management is what they call the Role-Based Access Control system in Azure subscriptions. Basically, it allows you to give users certain roles on subscriptions, resource groups, or individual resources. Azure AD is a more general identity management solution. It allows you to manage users and applications, users’ access to those applications and more. … Read more

Example of Get-AzureADUser [-Filter ] command

Command: Get-AzureADUser [-Filter ] command msdn says Parameters -Filter Specifies an oData v3.0 filter statement. This parameter controls which objects are returned. how to set filter to get the same result as Azure module v1 commands I have searched all over the place to find a proper example of setting filter but could not and … Read more