gpt4 book ai didi

powershell - Security.SecureString参数不接受字符串

转载 作者:行者123 更新时间:2023-12-04 13:26:04 29 4
gpt4 key购买 nike

将字符串作为参数传递给此参数时:

[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[Security.SecureString]$password=$(Throw "Password required.")

使用 -password参数时出现此错误。

cannot convert type System.String to type System.Security.SecureString



如果我没有传递 -password参数,则会显示一个提示,并接受输入。

最佳答案

您不能传递字符串;您必须传递一个安全的字符串

function Get-PasswordThing {
Param (
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[Security.SecureString]$password=$(Throw "Password required.")
)

Process {
Write-Host "cool"
}
}

[string]$password = "hello"
[Security.SecureString]$securePassword = ConvertTo-SecureString $password -AsPlainText -Force
Get-PasswordThing -password $securePassword

# inline
Get-PasswordThing -password (ConvertTo-SecureString $password -AsPlainText -Force)

关于powershell - Security.SecureString参数不接受字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42902300/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com