Powershell变更AD用户的属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell变更AD用户的属性相关的知识,希望对你有一定的参考价值。
需求:将指定OU的用户属性中“下次登陆时更改密码”启用。该选项启用后用户的密码即过期。
#Subject: Get the passwordexpired Property of the users and Set ChangePasswordAtLogon to yes. #Date:2017/05/26 Import-Module ActiveDirectory # 0 is Disable ChangePasswordAtLogon # 1 is Enable ChangePasswordAtLogon $Myou="OU=testou,OU=MY_USER,OU=Beijing,DC=CCTV,DC=China" Get-ADUser -SearchBase "$Myou" -Filter * -Properties * | select Name,PasswordExpired,sAMAccountName | ForEach-Object { Set-ADUser -identity $_.sAMAccountName -ChangePasswordAtLogon 1 }
本文出自 “工作备忘录” 博客,请务必保留此出处http://michael2017.blog.51cto.com/151632/1931524
以上是关于Powershell变更AD用户的属性的主要内容,如果未能解决你的问题,请参考以下文章
powershell [AD - 创建/编辑AD用户]通过powershell创建/编辑AD用户,使用纯文本密码#Windows #Powershell #ActiveDirectory