Powershell将string转化为SecureString
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell将string转化为SecureString相关的知识,希望对你有一定的参考价值。
例如,将“A123456”转化为Securestring
PS C:\WINDOWS\system32>$seString = ConvertTo-SecureString -String "A123456" -AsPlainText -Force PS C:\WINDOWS\system32>$seStr System.Security.SecureString
本文出自 “缘随心愿” 博客,请务必保留此出处http://281816327.blog.51cto.com/907015/1859460
以上是关于Powershell将string转化为SecureString的主要内容,如果未能解决你的问题,请参考以下文章
怎样将一个字符串(string)转化为数据流(stream)?