Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Batch change of domain user password under Win2008/2012r2

2025-01-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Use Windows PowerShell to change the password of AD users in batches. Use the following command to modify the corresponding fields and execute them.

1. Open Windows PowerShell to load the AD module:

Import-Module ActiveDirectory

2. Change the password of all domain users:

Get-ADUser-filter *-SearchBase 'DC=xxx,DC=com' | Set-ADAccountPassword-Reset-NewPassword (ConvertTo-SecureString-AsPlainText "abc123AA"-Force)

3. Change the password of all domain users in the specified "test" OU:

Get-ADUser-filter *-SearchBase 'OU=test,DC=xxx,DC=com' | Set-ADAccountPassword-Reset-NewPassword (ConvertTo-SecureString-AsPlainText "123 stories #"-Force)

4. Set domain users do not need to change their password when they log in next time:

Get-ADUser-filter *-SearchBase 'DC=xxx,DC=com' | Set-ADUser-ChangePasswordAtLogon $false

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report