学习自:
徐鹏老师的 AD Powershell 系列视频课程
批量更改AD用户的密码
1
|
Get-ADUser
-SearchBase
"ou=Lab,dc=satid,dc=com"
-
Filter
* |
foreach
{
Set-ADAccountPassword
-Identity
$_
.name -NewPassword (
ConvertTo-SecureString
abc
@123
-AsPlainText -Force)}
|
本文转自cix123 51CTO博客,原文链接:,http://blog.51cto.com/zhaodongwei/1948851如需转载请自行联系原作者