2017-09-14 101 views

回答

1

你可以使用Azure的AD圖形API使用Delete user operation。如果您想要減少往返服務器,請在用戶實體上嘗試batch operationsHere是一個代碼示例,演示如何使用批處理來查詢Azure Active Directory圖形API。

另一種選擇是使用的powershell。您可以除去大量使用者帳戶(使用CSV文件存儲用戶帳戶)的條件:

Import-CSV C:\Users.csv | Remove-MsOlUser –Force 

Here爲一種製品,顯示了使用散裝的powershell除去天青Active Directory用戶。