本文介绍PowerShell自定义函数中使用参数集时,可以将同一个参数既设置为可选,又设置为必选。
好吧,小编承认,这个话题有点无聊,但确实还是有点有趣,不妨看一看啦。
在PowerShell中,我们有可能有这样的需求,如果只需要输入某个参数时,这个参数是可选的。但如果还要输入别的参数,那这个参数就变成必选的了。那么这种需求如何来满足呢?那就是本文的意义所在了。
function Connect-Somewhere { [CmdletBinding(DefaultParameterSetName='A')] param ( [Parameter(ParameterSetName='A',Mandatory=$false)] [Parameter(ParameterSetName='B',Mandatory=$true)] $ComputerName, [Parameter(ParameterSetName='B',Mandatory=$false)] $Credential ) $chosen = $PSCmdlet.ParameterSetName “You have chosen $chosen parameter set.” }
且看下面的函数调用示例。
PS> Connect-Somewhere You have chosen A parameter set. PS> Connect-Somewhere -ComputerName test You have chosen A parameter set. PS> Connect-Somewhere -Credential user1 cmdlet Connect-Somewhere at command pipeline position 1 Supply values for the following parameters: ComputerName: NOWMANDATORY! You have chosen B parameter set.
第一个调用Case是使用默认参数集,函数中默认参数集是参数集A,参数集A只有一个参数$ComputerName,且是可选的,所以什么都不输入是可以的。
第二个调用Case是使用了一个ComputerName参数,符合参数集A的条件,自动匹配为参数集A了。
第三个调用Case只使用了一个Credential参数,这个参数是出现在参数集B中的。但如果使用参数集B,那必须填ComputerName参数,所以就报错了。
关于PowerShell函数参数即可选又必选,本文就介绍这么多,希望对您有所帮助,谢谢!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。