51CTO Blog地址:https://blog.51cto.com/u_13969817
密码过期提醒是一种安全措施,用于确保用户定期更改其密码,以减少密码被盗用的风险。当用户密码过期时,系统发送提醒通知,告知需要更改密码。这种提醒通常可以以电子邮件、系统通知的方式发送给用户,提醒中通常包含有关如何更改密码的提示以及过期日期和时间等设置。
为了确保密码安全,建议用户定期更改密码,并使用密码策略来创建难以猜测的密码,同时还应该启用密码过期提醒功能,以便及时收到通知并采取必要的行动。
在本中,我们将演示如何创建Microsoft Graph
PowerShell脚本,该脚本可在用户的Office 365密码即将过期时自动向用户发送电子邮件通知。
前提条件:安装Microsoft Graph
PowerShell模块,命令为:
Install-Module Microsoft.Graph
使用此PowerShell脚本向密码即将过期的所有用户发送电子邮件提醒:
Connect-MgGraph -Scopes "User.Read.All", "Mail.Send"
$NotificationThreshold = 7
$PasswordExpiryThreshold = 90 #By default 90 days Password expiry
$AllUsers = Get-MgUser -All -Property Id, DisplayName, UserPrincipalName,Mail,UserType, AccountEnabled,PasswordPolicies,lastPasswordChangeDateTime
ForEach ($User in $AllUsers)
{
If (!$User.AccountEnabled -or $User.PasswordPolicies -contains "xDisablePasswordExpiration" -or $User.userType -eq "Guest") {
continue
}
$PasswordExpiryDate = $User.lastPasswordChangeDateTime.AddDays($PasswordExpiryThreshold)
$RemainingDays = ($PasswordExpiryDate - (Get-Date)).Days
If ($RemainingDays -le $NotificationThreshold) {
$EmailBody = "
Hello $($User.DisplayName),
Your Office 365 password will expire in $remainingDays days. Please change your password before it expires to avoid any disruption in accessing your account.
To change your password, follow these steps:
- Sign in to Office 365 (https://www.office.com)
- Click on your profile picture in the top right corner.
- Select 'View account'.
- Click 'Password'.
- Follow the instructions to change your password.
Thank you,
IT Support Team
"
$MailParams = @{
Message = @{
Subject = "Your Office 365 password will expire soon"
Importance = "High"
Body = @{
ContentType = "html"
Content = $EmailBody
}
ToRecipients = @(
@{
EmailAddress = @{
Address = $User.Mail
}
}
服务器托管网 )
}
服务器托管网 }
Send-MgUserMail -UserId $User.Mail -BodyParameter $MailParams
}
}
说明:此脚本将提示输入登录凭据,并遍历组织中的所有用户,计算密码过期日期,并向密码将在指定阈值(在我们的情况下为7天)内过期的用户发送电子邮件通知。您可以修改$NotificationThreshold变量,以调整发送通知时密码过期前的天数。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
作者:vivo 互联网数据库团队 – Han Chaobing 介绍 vivo 数据库备份恢复功能的演化,以及对备份文件的功能扩展。 一、概述 vivo互联网领域拥有的数据库组件分别为MySQL、MongoDB、TiDB等,其中MySQL集群占比绝大部分, M…