作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
升级到 powershell 3.0 后,现有脚本因错误而停止工作
ConvertTo-SecureString : The term 'ConvertTo-SecureString' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At line:1 char:1
+ ConvertTo-SecureString
+ ~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (ConvertTo-SecureString:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我发现 ConvertTo-SecureString 是 supported在 PS 3.0 上。我需要以某种方式包含它吗?
最佳答案
以下不起作用。
C:\contoso>powershell -command {$secured='random text'|ConvertTo-SecureString -AsPlainText -Force;$secured;}
'ConvertTo-SecureString' is not recognized as an internal or external command,
operable program or batch file.
C:\contoso>
以下确实有效。
C:\contoso>copy con: tfile1.ps1
$secured='random text'|ConvertTo-SecureString -AsPlainText -Force;
$secured;
^Z
1 file(s) copied.
C:\contoso>powershell -file tfile1.ps1
System.Security.SecureString
C:\contoso>
这也行。
C:\contoso>powershell "& {$secured='random text'|ConvertTo-SecureString -AsPlainText -Force;$secured}"
System.Security.SecureString
C:\contoso>
我会把为什么它不能作为命令工作给其他人,因为我只是一个 powershell 新手。
S.
关于windows - Powershell ConvertTo-SecureString ObjectNotFound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19957340/
升级到 powershell 3.0 后,现有脚本因错误而停止工作 ConvertTo-SecureString : The term 'ConvertTo-SecureString' is not
我正在尝试通过 powershell 生成 AWS API 网关访问 key 。但是,每次我尝试使用任何 cmdlet 时都会抛出错误: 例如: Get-AWSCredential -ListPro
我是一名优秀的程序员,十分优秀!