您好,登錄后才能下訂單哦!
步驟1
Import-Module activedirectory
步驟2
get-aduser -SearchBase "ou=user,dc=contoso,dc=com" -filter *|Select-Object name,samaccountname| Export-Csv -Path c:\user.csv -Encoding utf8 -NoTypeInformation
步驟3、在導出的user.csv表格中新加password列,并為每個用戶設置新密碼,然后導入csv表格
import-csv -path c:\user.csv |%{Set-ADAccountPassword -identity $.samaccountname -Reset -NewPassword (ConvertTo-SecureString -AsPlainText $.password -Force)}
也可以
import-csv -path c:\user.csv |%{get-aduser -identity $.samaccountname |Set-ADAccountPassword -Reset -NewPassword (ConvertTo-SecureString -AsPlainText $.password -Force)}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。