定义多个参数集时,DefaultParameterSetNameCmdletBinding属性的关键字 (keyword) 将指定默认参数集。 如果 PowerShell 无法根据提供给命令的信息确定要使用的参数集,则使用默认参数集。 有关CmdletBinding属性的详细信息,请参阅about_Functions_CmdletBindingAttribute。
下面演示当可选参数出现,也必须使用这个强制参数。 functionConnect-Somewhere { [CmdletBinding(DefaultParameterSetName='A')]param( [Parameter(ParameterSetName='A',Mandatory=$false)] [Parameter(ParameterSetName='B',Mandatory=$true)]$ComputerName, [Parameter(ParameterSetName='B',Mandatory=$false)]$Crede...
powershell ParameterSet解析 自定义PowerShell函数,在设置参数的时候中,可以将参数设置为某些情况下可选,某些条件下又设置为必选。 示例代码从网站复制的。 1functionConnect-Somewhere2{3[CmdletBinding(DefaultParameterSetName='A')]4param5(6[Parameter(ParameterSetName='A',Mandatory=$false)]7[Parameter(Paramete...
Wouldn’t it be great if the PowerShell team thought about such a circumstance and give you a mechanism to specify which parameterset to pick if things were ambiguous? OH WAIT – they did! function test-param { [CmdletBinding(DefaultParametersetName=”p2″)] param( [Parameter(ParameterSetNam...
还可以为 cmdlet 或高级函数的任何参数设置自定义默认值。 有关设置自定义默认值的信息,请参阅about_Parameters_Default_Values。 参数属性表 使用cmdlet 的Full、Parameter或Online参数Get-Help时,Get-Help将显示一个参数属性表,其中包含有关该参数的详细信息。
可以在 cmdlet 或函数代码中使用对象的属性和方法来响应使用条件。 例如,ParameterSetName属性包含正在使用的参数集的名称,ShouldProcess方法将WhatIf和Confirm参数动态添加到 cmdlet。 有关$PSCmdlet自动变量的详细信息,请参阅about_Functions_CmdletBindingAttribute和about_Functions_Advanced。
PS> $PSDefaultParameterValues Name Value --- --- Get-Process:Name PowerShell Get-WinEvent:LogName Microsoft-Windows-PrintService/Operational Get-*:Verbose True Send-MailMessage:SmtpServer Server123 若要从$PSDefaultParameterValues中删除值,请使用哈希表的Remove方法。 删除值不会影响哈希表的现...
类型:SwitchParameter Position:Named 默认值:False 必需:False 接受管道输入:False 接受通配符:False -ScriptBlock 指定要在后台作业中运行的命令。 若要创建脚本块,请将命令括在大括号 ({}) 中。 使用$input自动变量访问 InputObject参数的值。 此参数是必需的。
For example, the default value of theComputerNameparameter of many cmdlets is the name of the local computer. As a result, the local computer name is used in the command unless theComputerNameparameter is specified. To find the default parameter value, see help topic for the cmdlet. The par...
Add -Force parameter to Resolve-Path and Convert-Path cmdlets to support wildcard hidden files (#20981) (#24344) Add telemetry to track the use of features (#24247) (#24331) Treat large Enum values as numbers in ConvertTo-Json (#20999) (#24304) Make features PSCommandNotFoundSuggestion...