以下是如何提示输入SecureString并将其作为加密的标准字符串写入文本文件:
例如,将“A123456”转化为Securestring PS C:\WINDOWS\system32>$seString = ConvertTo-SecureString -String "A123456" -AsPlainText -Force PS C:\WINDOWS\system32>$seStr System.Security.SecureString 1. 2. 3.
ConvertTo-SecureString [-String] <String> [-Key <Byte[]>] [<CommonParameters>]说明ConvertTo-SecureString cmdlet 会将加密的标准字符串转换为安全字符串。 它还可以将纯文本转换为安全字符串。 它与 ConvertFrom-SecureString 和Read-Host 一起使用。 由 cmdlet 创建的安全字符串可与需要类型为 SecureStr...
ConvertTo-SecureString [-String] <String> [-Key <Byte[]>] [<CommonParameters>]DescriptionCmdlet 會將 ConvertTo-SecureString 加密的標準字串轉換成安全字串。 它也可以將純文字轉換成安全字串。 它與 和Read-Host搭配ConvertFrom-SecureString使用。 Cmdlet 所建立的安全字串可以與需要 SecureString 類型參數的...
When you use the AsSecureString it will give you a dialog box which will use dots to mask what you type in. Once the cmdlet gets the string you’ve entered, it will pipe the output to ConvertFrom-SecureString. If you run just those two parts read-host -AsSecureString | ConvertFrom-...
$FTPUser="weiyigeek"$FTPPass=ConvertTo-SecureString-String"password"-AsPlainText-Force $FTPCre=New-Object-TypeName System.Management.Automation.PSCredential-ArgumentList $FTPUser,$FTPPass # 连接到 ftp服务器链接(被动链接)Set-FTPConnection-Credentials $FTPCre-Server $FTPConnect-UsePassive ...
Converts plain text or encrypted strings to secure strings. Syntax PowerShell ConvertTo-SecureString[-String] <String> [[-SecureKey] <SecureString>] [<CommonParameters>] PowerShell ConvertTo-SecureString[-String] <String> [-AsPlainText] [-Force] [<CommonParameters>] ...
ConvertTo-SecureString [-String] <String> [[-SecureKey] <SecureString>] [<CommonParameters>]PowerShell Copy ConvertTo-SecureString [-String] <String> [-AsPlainText] [-Force] [<CommonParameters>]PowerShell Copy ConvertTo-SecureString [-String] <String> [-Key <Byte[]>] [<CommonParameters>...
ConvertTo-SecureString[-String] <String> [-Key <Byte[]>] [<CommonParameters>] 说明 ConvertTo-SecureStringcmdlet 会将加密的标准字符串转换为安全字符串。 它还可以将纯文本转换为安全字符串。 它与ConvertFrom-SecureString和Read-Host一起使用。 由 cmdlet 创建的安全字符串可与需要类型为SecureString的参数的...
ConvertFrom-SecureStringcmdlet 可将安全字符串 (System.Security.SecureString) 转换为加密的标准字符串 (System.String)。和安全字符串不同,加密的标准字符串可保存在文件中以供以后使用。 加密的标准字符串可转换回它的安全字符串格式,方法是使用ConvertTo-SecureStringcmdlet。