我试图弄清楚如何手动(在linux上)加密/散列Autounattended.xml中的AdministratorPassword密码。
现在,我从Windows工具中生成了一个散列,如:
<UserAccounts>
<AdministratorPassword>
<Value>eAB4AEgANwAtAEgASAAyAGYAQQBkAG8AaQBuAGkAcwB0AHIAYQB0AG8AcgAQAGEAcwBzAHcAbwByAGQA</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
</UserAccounts>我想知道如何在linux中散列密码,以便将散列字符串放入Autounattended.xml中以便自动安装windows。
目前,我还没有找到密码如何被散列的任何线索,而且目前看来我只能通过Windows无人值守的生成工具生成散列密码。
发布于 2015-10-07 10:59:26
哈希是实际密码的base64表示形式,它与AdministratorPassword字符串连接在一起。但我不太确定,因为你没有这根绳子。
https://stackoverflow.com/questions/32140217
复制相似问题