gpt4 book ai didi

xml - 从 XML 填充参数列表

转载 作者:数据小太阳 更新时间:2023-10-29 01:59:53 25 4
gpt4 key购买 nike

我需要将 ID 列表拉入 powershell 参数验证集,如下所示:

function Do-Stuff {
[Cmdletbinding()]
param(
[ValidateSet("Seattle","NewYork","London","Atlanta" )]
[String]$Site
)

我不想手动指定集合中的城市,而是想从一个已经列出所有城市的现有 xml 文档中提取。加载后,站点名称出现在 $xml.var.sites.id 中。这是可能的,而且可能更重要的是,这是一个好主意吗?

最佳答案

最近的一个项目不得不这样做。没有意识到枚举有多么容易,谢谢 mjolinor!

另一种方法是使用动态参数。使用 Get-Help 查找帮助:

#Look for the Dynamic Parameters section in here
Get-Help about_Functions_Advanced_Parameters

其他资源:

当前函数定义:

Function New-DynamicParam {
<#
.SYNOPSIS
Helper function to simplify creating dynamic parameters

.DESCRIPTION
Helper function to simplify creating dynamic parameters

Example use cases:
Include parameters only if your environment dictates it
Include parameters depending on the value of a user-specified parameter
Provide tab completion and intellisense for parameters, depending on the environment

Please keep in mind that all dynamic parameters you create will not have corresponding variables created.
One of the examples illustrates a generic method for populating appropriate variables from dynamic parameters
Alternatively, manually reference $PSBoundParameters for the dynamic parameter value

.NOTES
Credit to http://jrich523.wordpress.com/2013/05/30/powershell-simple-way-to-add-dynamic-parameters-to-advanced-function/
Added logic to make option set optional
Added logic to add RuntimeDefinedParameter to existing DPDictionary
Added a little comment based help

.PARAMETER Name
Name of the dynamic parameter

.PARAMETER ValidateSet
If specified, set the ValidateSet attribute of this dynamic parameter

.PARAMETER Mandatory
If specified, set the Mandatory attribute for this dynamic parameter

.PARAMETER ParameterSetName
If specified, set the ParameterSet attribute for this dynamic parameter

.PARAMETER Position
If specified, set the Position attribute for this dynamic parameter

.PARAMETER ValueFromPipelineByPropertyName
If specified, set the ValueFromPipelineByPropertyName attribute for this dynamic parameter

.PARAMETER HelpMessage
If specified, set the HelpMessage for this dynamic parameter

.PARAMETER DPDictionary
If specified, add resulting RuntimeDefinedParameter to an existing RuntimeDefinedParameterDictionary (appropriate for multiple dynamic parameters)
If not specified, create and return a RuntimeDefinedParameterDictionary (appropriate for a single dynamic parameter)

.EXAMPLE

function Show-Free
{
[CmdletBinding()]
Param()
DynamicParam {
$options = @( gwmi win32_volume | %{$_.driveletter} | sort )
New-DynamicParam -Name Drive -ValidateSet $options -Position 0 -Mandatory
}
begin{
#have to manually populate
$drive = $PSBoundParameters.drive
}
process{
$vol = gwmi win32_volume -Filter "driveletter='$drive'"
"{0:N2}% free on {1}" -f ($vol.Capacity / $vol.FreeSpace),$drive
}
} #Show-Free

Show-Free -Drive <tab>

# This example illustrates the use of New-DynamicParam to create a single dynamic parameter
# The Drive parameter ValidateSet populates with all available volumes on the computer for handy tab completion / intellisense

.EXAMPLE

# I found many cases where I needed to add many dynamic parameters
# The DPDictionary parameter lets you specify an existing dictionary
# The block of code in the Begin block loops through bound parameters and defines variables if they don't exist

Function Test-DynPar{
[cmdletbinding()]
param(
[string[]]$x = $Null
)
DynamicParam
{
#Create the RuntimeDefinedParameterDictionary
$Dictionary = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary

New-DynamicParam -Name AlwaysParam -options @( gwmi win32_volume | %{$_.driveletter} | sort ) -DPDictionary $Dictionary

#Add dynamic parameters to $dictionary
if($x -eq 1)
{
New-DynamicParam -Name X1Param1 -Options 1,2 -mandatory -DPDictionary $Dictionary
New-DynamicParam -Name X1Param2 -DPDictionary $Dictionary
New-DynamicParam -Name X3Param3 -DPDictionary $Dictionary
}
else
{
New-DynamicParam -Name OtherParam1 -mandatory -DPDictionary $Dictionary
New-DynamicParam -Name OtherParam2 -DPDictionary $Dictionary
New-DynamicParam -Name OtherParam3 -DPDictionary $Dictionary
}

#return RuntimeDefinedParameterDictionary
$Dictionary
}
Begin
{
#This standard block of code loops through bound parameters...
#If no corresponding variable exists, one is created
foreach($param in $PSBoundParameters.Keys)
{
if (-not ( Get-Variable -name $param -scope 0 -ErrorAction SilentlyContinue ) )
{
New-Variable -Name $Param -Value $PSBoundParameters.$param
Write-Verbose "Adding variable for dynamic parameter '$param' with value '$($PSBoundParameters.$param)'"
}
}

#Appropriate variables should now be defined and accessible
Get-Variable -scope 0
}
}

# This example illustrates the creation of many dynamic parameters using New-DynamicParam
# You must create a RuntimeDefinedParameterDictionary object ($dictionary here)
# To each New-DynamicParam call, add the -DPDictionary parameter pointing to this RuntimeDefinedParameterDictionary
# At the end of the DynamicParam block, return the RuntimeDefinedParameterDictionary
# Initialize all bound parameters using the provided block or similar code
#>
param(

[string]
$Name,

[string[]]
$ValidateSet,

[switch]
$Mandatory,

[string]
$ParameterSetName="__AllParameterSets",

[int]
$Position,

[switch]
$ValueFromPipelineByPropertyName,

[string]
$HelpMessage,

[validatescript({
if(-not ( $_ -is [System.Management.Automation.RuntimeDefinedParameterDictionary] -or -not $_) )
{
Throw "DPDictionary must be a System.Management.Automation.RuntimeDefinedParameterDictionary object, or not exist"
}
$True
})]
$DPDictionary = $false

)
#Create attribute object, add attributes, add to collection
$ParamAttr = New-Object System.Management.Automation.ParameterAttribute
$ParamAttr.ParameterSetName = $ParameterSetName
if($mandatory)
{
$ParamAttr.Mandatory = $True
}
if($Position -ne $null)
{
$ParamAttr.Position=$Position
}
if($ValueFromPipelineByPropertyName)
{
$ParamAttr.ValueFromPipelineByPropertyName = $True
}
if($HelpMessage)
{
$ParamAttr.HelpMessage = $HelpMessage
}

$AttributeCollection = New-Object 'Collections.ObjectModel.Collection[System.Attribute]'
$AttributeCollection.Add($ParamAttr)

#param validation set if specified
if($ValidateSet)
{
$ParamOptions = New-Object System.Management.Automation.ValidateSetAttribute -ArgumentList $ValidateSet
$AttributeCollection.Add($ParamOptions)
}


#Create the dynamic parameter
$Parameter = New-Object -TypeName System.Management.Automation.RuntimeDefinedParameter -ArgumentList @($Name, [string], $AttributeCollection)

#Add the dynamic parameter to an existing dynamic parameter dictionary, or create the dictionary and add it
if($DPDictionary)
{
$DPDictionary.Add($Name, $Parameter)
}
else
{
$Dictionary = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary
$Dictionary.Add($Name, $Parameter)
$Dictionary
}
}

使用此函数的示例:

#Function has already been added to this session...
function Do-Stuff {
[cmdletbinding()]
param()
DynamicParam
{
#Example borrowing from TheMadTechnician:
#New-DynamicParam -Name Site -ValidateSet $(([xml](gc c:\temp\config.xml)).getElementsByTagName("City").Name) -Mandatory

#I don't have that file... simplification
New-DynamicParam -Name Site -ValidateSet "Seattle", "NewYork", "London", "Atlanta" -Mandatory
}
Begin
{
#This standard block of code loops through bound parameters...
#If no corresponding variable exists, one is created
foreach($param in $PSBoundParameters.Keys)
{
if (-not ( Get-Variable -name $param -scope 0 -ErrorAction SilentlyContinue ) )
{
New-Variable -Name $param -Value $PSBoundParameters.$param
Write-Verbose "Adding variable for dynamic parameter '$param' with value '$($PSBoundParameters.$param)'"
}
}
$Site
}
}

最后,最终结果:

Example illustrating IntelliSense with DynamicParam

再举一个有一些其他动态参数的例子

Function New-LabMachine
{
[cmdletbinding()]
param(
[ValidateSet("ADDSNew","ADDSExisting")]
[string[]]
$Role
)
DynamicParam
{
#Define dynamicparam dictionary. Create a hashtable for splatting params
$Dictionary = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary
$dict = @{DPDictionary = $Dictionary}

#Add dynamic parameters to populate and validate Lab names
$Labs = "Lab1", "Lab2" #@( Get-Lab | Select -ExpandProperty LabName -ErrorAction SilentlyContinue )
New-DynamicParam -Name LabName -Mandatory -ValidateSet $Labs @dict

if($Role -contains 'ADDSNew')
{
#AD Forest info
New-DynamicParam -Name DomainName -Mandatory @dict -HelpMessage "Provide domain name for first domain in forest"
New-DynamicParam -Name ForestMode -Mandatory -ValidateSet "Win2008","Win2008R2","Win2012","Win2012R2" @dict
}
if($Role -contains 'ADDSExisting')
{
New-DynamicParam -Name DomainName -Mandatory @dict
New-DynamicParam -Name username -Mandatory @dict
New-DynamicParam -Name password -Mandatory @dict
}

#Return the dictionary for dynamic params
$Dictionary
}
Begin
{
#This standard block of code loops through bound parameters...
#If no corresponding variable exists, one is created
foreach($param in $PSBoundParameters.Keys )
{
if (-not ( Get-Variable -name $param -scope 0 -ErrorAction SilentlyContinue ) -and "Verbose", "Debug" -notcontains $param )
{
New-Variable -Name $Param -Value $PSBoundParameters.$param -Description DynParam
Write-Verbose "Adding variable for dynamic parameter '$param' with value '$($PSBoundParameters.$param)'"
}
}

#Display the bound parameters
$PSBoundParameters.keys | ForEach-Object {Get-Variable -Name $_}
}
}

结果:

enter image description here

在我看来,这些对最终用户非常有帮助。我通常使用它们来提供与您的目标类似的 IntelliSense 和制表符完成支持。只要它们为您提供的值(value)超过它们的轻微开销和一点点额外的复杂性,它们就值得:)

我为文字墙道歉!干杯!

关于xml - 从 XML 填充参数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22993799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com