有几件事:您需要使用参数集来告诉 PowerShell 调用脚本的方法是互斥的;也就是说,不能同时使用开关和字符串。这些集合还允许您设置两者的位置$bar
并$filepath
位于索引 0。开关不需要按位置放置,因为它们对活页夹没有歧义并且可以放置在任何地方。此外,每组中至少有一个参数应该是强制性的。
function test-set {
[CmdletBinding(DefaultParameterSetName = "BarSet")]
param(
[parameter(
mandatory=$true,
parametersetname="FooSet"
)]
[switch]$Foo,
[parameter(
mandatory=$true,
position=0,
parametersetname="BarSet"
)]
[string]$Bar,
[parameter(
mandatory=$true,
position=1
)]
[io.fileinfo]$FilePath
)
@"
Parameterset is: {0}
Bar is: '{1}'
-Foo present: {2}
FilePath: {3}
"@ -f $PSCmdlet.ParameterSetName, $bar, $foo.IsPresent, $FilePath
}
如果在没有参数的情况下调用函数,则需要该CmdletBinding
属性来指定哪个参数集应该是默认值。
以下是上述配置的语法帮助:
PS> test-set -?
NAME
test-set
SYNTAX
test-set [-Bar] <string> [-FilePath] <FileInfo> [<CommonParameters>]
test-set [-FilePath] <FileInfo> -Foo [<CommonParameters>]
这是各种调用的输出:
PS> test-set barval C:\temp\foo.zip
Parameterset is: BarSet
Bar is: 'barval'
-Foo present: False
FilePath: C:\temp\foo.zip
PS> test-set -foo c:\temp\foo.zip
Parameterset is: FooSet
Bar is: ''
-Foo present: True
FilePath: c:\temp\foo.zip
希望这可以帮助。