面那个使用用于 Windows PowerShell 的 Microsoft Azure Active Directory 模块。

若要解除阻止该文本文件中列出的帐户,请运行以下命令:

Get-Content "C:\My Documents\Accounts.txt" | ForEach { Set-MsolUser -UserPrincipalName $_ -BlockCredential $false }

补充
要先安装好模块,PowerShell版本要5以上

下载安装官方提供的Azure Active Directory Connection

请在本地用管理员身份打开PowerShell,并运行命令 Install-Module -Name AzureAD

下载安装官方提供的Microsoft Online Service Sign-in Assistant for IT Professionals

连接到MSOL

Connect-MsolService

列出所有被禁用户(手动操作一下,放进Accounts.txt)

Get-MsolUser -ALL  -EnabledFilter DisabledOnly

解除

Get-Content "C:\My Documents\Accounts.txt" | ForEach { Set-MsolUser -UserPrincipalName $_ -BlockCredential $false }