简体   繁体   中英

How to get list of recently created AD users from azure active directory using Azure CLI

I need the list of recently created AD users from azure active directory using Azure CLI

I need the users which is created in AD in the past 2 hours/24 hours. Is it possible to get it via CLI Command?

Try something like the following:

az ad user list --filter "createdDateTime ge datetime'2020-06-10'"

This will list the users created on or after 10th June 2020.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM