您好,登錄后才能下訂單哦!
如何批量給微軟域最近60天內登錄的用戶進行密碼續期? 這篇文章運用了實例代碼展示,代碼非常詳細,可供感興趣的小伙伴們參考借鑒,希望對大家有所幫助。
#密碼續期
#給最近60天內登錄的用戶進行密碼續期
#續期用戶只包含密碼已過期人員
$Date1 = (Get-Date).AddDays(-60)
$Date2= (Get-Date)
Get-ADUser -SearchBase "OU=x,DC=x,DC=com" -filter {Enabled -eq $True -and PasswordNeverExpires -eq $False -and LastLogonDate -gt $Date1} –Properties "DisplayName","SamAccountName","msDS-UserPasswordExpiryTimeComputed","LastLogonDate" |
Select-Object -Property "Displayname","SamAccountName",@{Name="ExpiryDate";Expression={[datetime]::FromFileTime($_."msDS-UserPasswordExpiryTimeComputed")}} |
ForEach-Object{
if($_.ExpiryDate){
if($_.ExpiryDate -le $Date2){
Set-ADUser -Identity $_.SamAccountName -ChangePasswordAtLogon $true
Set-ADUser -Identity $_.SamAccountName -ChangePasswordAtLogon $false
}
}
}
以上就是批量給微軟域最近60天內登錄的用戶進行密碼續期的內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。