Office 子号批量解除阻止登录
面那个使用用于 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 }
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。