PowerShell Multiple DynamicParam

时间:2013-06-19 20:18:06

标签: powershell dynamic powershell-v3.0

我正在尝试为脚本模块创建一个函数,该函数在显示下一个参数之前验证先前的参数是否已设置。

我需要的参数是身份,份额和配额。我总是想要显示身份,我不希望在设置身份之前显示共享,并且我不希望在设置共享之前显示配额。

我能够轻松访问$ Identity,我无法从DynamicParam {}中访问$ Share。我使用PowerGUI逐步完成了脚本,当我点击Begin {}时,我只能看到$ Share。

如果设置了Identity,我可以通过显示Share / Quota来解决这个问题,但最终我想学习如何根据之前设置的参数继续添加其他参数。

该功能的副本如下。 personfileutility.exe只是我们用来与各种系统交互以提供和收集用户信息的可执行文件。

function New-PersonalFiles
{
    [CmdletBinding()]
    Param
    (
        # Param1 help description
        [Parameter(Mandatory=$true)]
        $Identity
    )

    DynamicParam
        {
            $paramDictionary = new-object -Type System.Management.Automation.RuntimeDefinedParameterDictionary

            if (($Identity -notlike "") -or ($Identity -notlike $null)){
                $attributes = new-object System.Management.Automation.ParameterAttribute
                $attributes.ParameterSetName = "__AllParameterSets"
                $attributes.Mandatory = $true

                $lookup = [xml](\\servername\personalfiles\personfileutility.exe -a $Identity)

                $type = $lookup.User.user_directory.type.type

                if ($type -like "other" -or $type -like "staff") {
                    $arguments = @()
                    $arguments += "\\fileserver\sharename"
                }
                elseif ($type -like "faculty") {
                    $arguments = @()
                    $arguments += "\\fileserver\sharename"
                    $arguments += "\\fileserver\sharename2"

                }
                elseif ($type -like "student") {
                    $arguments = @()
                    $arguments += "\\fileserver2\sharename"
                }

                $ParamOptions = New-Object System.Management.Automation.ValidateSetAttribute -ArgumentList $arguments

                $attributeCollection = new-object -Type System.Collections.ObjectModel.Collection[System.Attribute]
                $attributeCollection.Add($attributes)
                $attributeCollection.Add($ParamOptions)


                $dynParam1 = new-object -Type System.Management.Automation.RuntimeDefinedParameter("Share", [String], $attributeCollection)

                $paramDictionary.Add("Share", $dynParam1)
            }

            if (($Share -like "\\fileserver\*"))
            {
                $attributes2 = new-object System.Management.Automation.ParameterAttribute
                $attributes2.ParameterSetName = "__AllParameterSets"
                $attributes2.Mandatory = $true

                $lookup = [xml](\\servername\personalfiles\personfileutility.exe -a $Identity)

                $type = $lookup.User.user_directory.type.type

                if ($type -like "other" -or $type -like "staff") {
                    $arguments = @()
                    $arguments += "15GB"
                    $arguments += "20GB"
                }
                elseif ($type -like "faculty") {
                    $arguments = @()
                    $arguments += "10GB"
                    $arguments += "15GB"

                }
                elseif ($type -like "student") {
                    $arguments = @()
                    $arguments += "5GB"
                    $arguments += "10GB"
                }

                $ParamOptions2 = New-Object System.Management.Automation.ValidateSetAttribute -ArgumentList $arguments2

                $attributeCollection2 = new-object -Type System.Collections.ObjectModel.Collection[System.Attribute]
                $attributeCollection2.Add($attributes2)
                $attributeCollection2.Add($ParamOptions2)


                $dynParam2 = new-object -Type System.Management.Automation.RuntimeDefinedParameter("Quota", [String], $attributeCollection2)

                $paramDictionary.Add("Quota", $dynParam2)
            }

            return $paramDictionary
        }

    <#
    .Synopsis
       Short description
    .DESCRIPTION
       Long description
    .EXAMPLE
       Example of how to use this cmdlet
    .EXAMPLE
       Another example of how to use this cmdlet
    #>

    Begin
    {
    }
    Process
    {
        \\servername\personalfiles\personfileutility.exe -a $Identity -c -q ((Invoke-Expression $PSBoundParameters.Quota)  / 1KB) -s $Share
    }
    End
    {
    }
}

1 个答案:

答案 0 :(得分:3)

我正在尝试复制您正在使用的“变通方法”,但我只是看到我有权访问动态参数Share(不是Quota)。为了重现你的设置,因为我没有访问personfileutility.exe,我已经注释了两行,并添加了第三行,我将$type硬编码为“faculty”。例如,我在两个地方更新了代码:

#$lookup = [xml](\\servername\personalfiles\personfileutility.exe -a $Identity)
#$type = $lookup.User.user_directory.type.type
$type = "faculty"

有了这些更改后,我可以在指定Share后访问Identity参数。但是,我无法访问Quota。您希望Quota可用吗?

如果我了解您所询问的问题,则在Share可访问(您目前正在使用)之前,您不希望Identity可访问。但是,此外,在QuotaIdentity填写完毕并且您不知道如何使其工作之前,您不希望Share可访问。这是对的吗?

如果我正确理解了这个问题,我不相信PowerShell提供了一种通过Commandlet绑定实现这一目标的机制。我认为你可以通过使用GUI应用程序或交互式提示用户输入来完成这项工作。