gpt4 book ai didi

powershell - 如何使用PowerShell自动填充Active Directory hashedPassword字段

转载 作者:行者123 更新时间:2023-12-03 00:01:23 27 4
gpt4 key购买 nike

我正在与一个尝试通过PowerShell导入AD用户的客户端一起工作。以下命令被用作初始测试:

New-ADUser -Name "John Smith" `
-SamAccountName Smithbor `
-GivenName John `
-Surname Smith `
-EmailAddress john.smith@stackoverflow.com `
-Path 'OU=Users,DC=stackoverflow,DC=com' `
-ChangePasswordAtLogon $false `
-Enabled $true `
-AccountPassword (ConvertTo-SecureString -AsPlainText "foo12345678" -Force)

这似乎可行,因为它可以正确创建一个AD用户,但是没有填充 hashedPassword字段,并且此 hashedPassword字段是进一步集成所必需的。有没有办法在此阶段自动填充 hashedPassword字段?

最佳答案

有时由于密码策略限制,密码设置可能会失败。创建帐户后,您可以尝试使用Set-ADAccountPassword设置密码。

Set-ADAccountPassword -Identity username -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "password" -Force)

关于powershell - 如何使用PowerShell自动填充Active Directory hashedPassword字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27601421/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com