作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在与一个尝试通过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)
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/
我有一个存储用户登录信息的表,其中包含以下方案中的密码: {crypt}散列密码 {ssha}散列密码加盐 {md5}哈希密码 ...... 是否有 Perl 模块可以理解此方案并能够验证给定纯文本密
我有这个实体: namespace FP.Domain.Entities { public class Admins { public int ID { get; se
我加密用户的密码并保存到数据库。然后用户登录,比较散列密码和普通密码,我得到 crypto/bcrypt: hashedPassword is not the hash of the given pa
func validateCredentials(attemptedPassword string, actualPasswordHash string) (bool, error) { if
我是一名优秀的程序员,十分优秀!