-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGet-OneShellOrgProfile.ps1
59 lines (56 loc) · 2.06 KB
/
Get-OneShellOrgProfile.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Function Get-OneShellOrgProfile
{
[cmdletbinding(DefaultParameterSetName = 'All')]
param
(
[parameter(ParameterSetName = 'Identity', Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string[]]$Identity
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
$OrgProfileType = 'OneShellOrgProfile'
,
[parameter(ParameterSetName = 'GetCurrent')]
[switch]$GetCurrent
)
Process
{
Write-Verbose -Message "Parameter Set is $($pscmdlet.ParameterSetName)"
switch ($PSCmdlet.ParameterSetName)
{
'GetCurrent'
{
$Script:CurrentOrgProfile
}
Default
{
$PotentialOrgProfiles = @(GetPotentialOrgProfiles -path $path)
if ($PotentialOrgProfiles.Count -ge 1)
{
$FoundOrgProfiles = @($PotentialOrgProfiles | Where-Object {$_.ProfileType -eq $OrgProfileType})
Write-Verbose -Message "Found $($FoundOrgProfiles.Count) Org Profiles."
switch ($PSCmdlet.ParameterSetName)
{
'Identity'
{
foreach ($i in $Identity)
{
Write-Verbose -Message "Identity is set to $"
@($FoundOrgProfiles | Where-Object -FilterScript {$_.Identity -eq $i -or $_.Name -eq $i})
}
}#Identity
'All'
{
@($FoundOrgProfiles)
}#All
}#switch
}#if
}#Default
}#switch
}#end Process
}