Chinaunix首页 | 论坛 | 博客
  • 博客访问: 164544
  • 博文数量: 38
  • 博客积分: 1831
  • 博客等级: 上尉
  • 技术积分: 310
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-07 11:08
文章分类

全部博文(38)

文章存档

2013年(2)

2012年(27)

2011年(1)

2010年(8)

分类:

2012-10-12 17:35:56

工作需要批量更改域内所有用户密码,并且要设置用户登录时不需要更改密码。
首先运行Import-Module ActiveDirectory(即PowerShell与活动目录中提到的)如下图
如果powershell提示不让运行脚本则运行下面命令
 set-executionpolicy remotesigned
在运行脚本即可
Get-ADUser -filter * -SearchBase 'OU=xxx,DC=contoso,DC=com' | Set-ADAccountPassword -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "pass01!" -Force)
Get-ADUser -filter * -SearchBase 'OU=xxx,DC=contoso,DC=com' | Set-ADUser -ChangePasswordAtLogon $false
把上面命令保存为ps1文件运行即可
阅读(2852) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~