我将加密的pw存储在txt文件中,然后将其加载到PowerShell会话中:
gc .\localadmincred.txt | convertto-securestring
这不起作用,因为我读到只有加密了该密钥的用户才能将其转换为安全字符串,所有人都无法解密我的txt中的字符串。
如何将加密字符串存储在文件中,以便每个人都可以将其与convertto-securestring
一起使用?
答案 0 :(得分:2)
您可以使用密钥加密字符串。如果其他用户拥有密钥,他/她将能够解密该字符串。
参见示例:Secure Password with PowerShell: Encrypting Credentials – Part 2