请问您是在设置密码永不过期的时候遇到的问题吗?如果是设置密码永不过期,您可以通过以下的步骤来重新进行设置去验证一下目前的问题:
1. 启动 Microsoft Online Services Module for PowerShell. 您可以点击“开始”,然后输入“online” 在“搜索程序和文件”的文本框。然后“Microsoft Online Services Module for PowerShell ”就出现了。看到它,右键点击这个程序“ Microsoft Online Services Module for PowerShell”,选择“作为管理员运行”。然后,点击“确定”按钮。
2. 使用公司Office 365系统管理员账号运行如下命令:
$cred=Get-Credential
connect-MSOLService -credential $cred
Set-MsolUser -UserPrincipalName <user ID> -PasswordNeverExpires $true
如果是设置用户
user1@contoso.com, 您可以输入命令:Set-MSOLUser -UserPrincipalName
user1@contoso.com -PasswordNeverExpires $true
您可以把命令替换成你需要设置密码的用户的用户名。
如果您希望设置所有人的密码永不过期,您可以通过运行如下命令:
Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true