Win2008/2012r2下批量更改域用户密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Win2008/2012r2下批量更改域用户密码相关的知识,希望对你有一定的参考价值。
使用Windows PowerShell批量更改AD用户的密码,使用以下命令,修改对应字段,执行即可。
1、打开Windows PowerShell加载AD模块:
Import-Module ActiveDirectory
2、更改所有域用户的密码:Get-ADUser -filter * -SearchBase ‘DC=xxx,DC=com‘ | Set-ADAccountPassword -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "abc123AA" -Force)
3、更改指定“test”OU中所有域用户的密码:Get-ADUser -filter * -SearchBase ‘OU=test,DC=xxx,DC=com‘ | Set-ADAccountPassword -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "[email protected]#" -Force)
4、设置域用户下次登陆时不需要更改密码:Get-ADUser -filter * -SearchBase ‘DC=xxx,DC=com‘ | Set-ADUser -ChangePasswordAtLogon $false
以上是关于Win2008/2012r2下批量更改域用户密码的主要内容,如果未能解决你的问题,请参考以下文章
Windows2008server R2 组策略批量更改本地管理员密码
在win2008 R2 服务器中搭建好了ftp服务器,通过IE访问,提示输入用户名和密码