Functions/Get-Validation.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# =========================================================================== # Get-Validation.ps1 ------------------------------------------------------ # =========================================================================== # function ---------------------------------------------------------------- # --------------------------------------------------------------------------- function Get-ValidateProjectType { <# .DESCRIPTION Return values for the use of validating existing .OUTPUTS System.String[]. Virtual environments #> Param( [Parameter(Position=1, HelpMessage="Existing project type.")] [System.String] $Type="Project" ) Process{ return (Get-ProjectList -Unformatted | Where-Object { $_.Type -eq $Type } | Select-Object -ExpandProperty "Alias") } } |