PowerShell ValidateSet

时间:2014-08-07 08:32:36

标签: validation powershell csv parameters

我非常喜欢ValidateSet的工作方式。当您在PowerShell ISE中键入Cmdlet时,它会将选项作为列表提出。

我想知道是否可以从CSV文件(Import-CSV)中检索值并在Param块中使用它们,以便它们在下拉框中可用PowerShell ISE在构造Cmdlet参数时的作用?有点像$Type现在的工作方式,但随后是导入文件中的值。

Function New-Name {
Param (
    [parameter(Position=0, Mandatory=$true)]
    [ValidateSet('Mailbox','Distribution','Folder','Role')]
    [String]$Type,
    [parameter(Position=1,Mandatory=$true)]
    [String]$Name
)
    Process { 'Foo' }
}

2 个答案:

答案 0 :(得分:19)

您可以从以下内容开始:

function New-Name {
    param (
        [parameter(Position=0, Mandatory=$true)]
        [String]$Name
    )

    dynamicparam {
        $attributes = new-object System.Management.Automation.ParameterAttribute
        $attributes.ParameterSetName = "__AllParameterSets"
        $attributes.Mandatory = $true
        $attributeCollection = new-object -Type System.Collections.ObjectModel.Collection[System.Attribute]
        $attributeCollection.Add($attributes)
        $values = @('MailBox', 'Tralala', 'Trilili') # your Import-Csv here
        $ValidateSet = new-object System.Management.Automation.ValidateSetAttribute($values)
        $attributeCollection.Add($ValidateSet)

        $dynParam1 = new-object -Type System.Management.Automation.RuntimeDefinedParameter("Type", [string], $attributeCollection)
        $paramDictionary = new-object -Type System.Management.Automation.RuntimeDefinedParameterDictionary
        $paramDictionary.Add("Type", $dynParam1)
        return $paramDictionary 
    }

     process { 'Foo' }
}

学分到期的学分,主要来自脚本专家的以下article。 代码并不漂亮,但它可以满足您的需求。

completion

答案 1 :(得分:0)

我更喜欢TabExpansion ++模块,虽然这在技术上没有验证,它有一些不错的功能......

这是一个msbuild重载命令的示例,用于为项目添加一些智能感知

Register-ArgumentCompleter -CommandName "msbuild" -ParameterName "target" -ScriptBlock {
    param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)

    $projectName = $fakeBoundParameter['project']
    $projectFile = Join-Path (Get-Location) $projectName
    $projectXml = [xml](Get-Content $projectFile)

    $targets = $projectXml.Project.Target | Where-Object { $_.Name.ToString().StartsWith($wordToComplete) }
    foreach($target in $projectXml.Project.Target)
    {
        New-CompletionResult -CompletionText "$($target.Name)"
    }
}