脚本 – Powershell参数

前端之家收集整理的这篇文章主要介绍了脚本 – Powershell参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的脚本中有一个Param块
Param (
    [Parameter(Mandatory=$True)]
    [string]$FileLocation,[Parameter(Mandatory=$True)]
    [string]$password = Read-Host "Type the password you would like to set all the users to" -assecurestring
)

我可以在必需的参数字段中使用Read-Host CmdLet吗?如果没有,我该怎么做才能确保我采用正确类型的变量类型,以便将其传递给用户创建过程?

指定正确的密码类型应该足够了,请尝试:
Param (
    [Parameter(Mandatory=$True)]
    [string]$FileLocation,[Parameter(Mandatory=$True)]
    [Security.SecureString]$password
)

PowerShell将“屏蔽”密码(与read-host -asSecureString相同),结果类型将是其他cmdlet可能需要的密码.

编辑:在最近的评论之后:解决方案,它既提供了提供纯文本密码的选项,也强制用户输入密码(但屏蔽它的方式与Read-Host -AsSecureString相同),并且在两种情况下都得到[Security.SecureString] .并且,作为奖励,您会得到一些花哨的提示,以获取您的密码. 原文链接:https://www.f2er.com/bash/386011.html

猜你在找的Bash相关文章