PowerShell 技能连载 - 管理凭据(第四部分)
在前一个脚本中我们演示了如何以加密的方式将一个凭据保存到磁盘上。一个类似的方法只将密码保存到加密的文件中。这段代码将创建一个加密的密码文件:
1 | # read in the password, and save it encrypted |
它只能由保存的人读取,而且必须在同一台机子上操作。第二个脚本可以用该密码登录其它系统而无需用户交互:
1 | # read in the secret and encrypted password from file |
凭据对象可以用在所有支持 -Credential
参数的 cmdlet 中。
1 | # use the credential with any cmdlet that exposes the –Credential parameter |
PowerShell 技能连载 - 管理凭据(第四部分)
http://blog.vichamp.com/2017/01/09/managing-credentials-part-4/