-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGet-OneShellOrgProfileSystem.ps1
65 lines (62 loc) · 2.36 KB
/
Get-OneShellOrgProfileSystem.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
59
60
61
62
63
64
Function Get-OneShellOrgProfileSystem
{
[cmdletbinding(DefaultParameterSetName = 'All')]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipeline, ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[string[]]$Identity #System Identity or Name
,
[parameter(ParameterSetName = 'Identity')]
[parameter(ParameterSetName = 'All')]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
,
[parameter(ParameterSetName = 'GetCurrent')]
[switch]$GetCurrent
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[string[]]$ServiceType
,
[parameter(ParameterSetName = 'Identity')]
[string[]]$ProfileIdentity
)
Begin
{
$profiles = @(
switch ($PSCmdlet.ParameterSetName)
{
'GetCurrent'
{
Get-OneShellOrgProfile -GetCurrent -ErrorAction Stop -Path $Path
}
'Identity'
{
if ($PsBoundParameters.ContainsKey('ProfileIdentity'))
{
Get-OneShellOrgProfile -Identity $ProfileIdentity -ErrorAction Stop -Path $Path
}
else
{
Get-OneShellOrgProfile -Path $Path -ErrorAction Stop
}
}
'All'
{
Get-OneShellOrgProfile -ErrorAction Stop -Path $Path
}
}
)
$OutputSystems = @(
foreach ($p in $profiles)
{
$p.systems #| Select-Object -Property *, @{n = 'OrgName'; e = {$p.Name}}, @{n = 'OrgIdentity'; e = {$p.Identity}}, @{n = 'ProfileIdentity'; e = {$p.Identity}}
}
)
#Filter outputSystems if required by specified parameters
$OutputSystems = @($OutputSystems | Where-Object -FilterScript {$_.ServiceType -in $ServiceType -or (Test-IsNullOrWhiteSpace -string $ServiceType)})
$OutputSystems = @($OutputSystems | Where-Object -FilterScript {$_.Identity -in $Identity -or $_.Name -in $Identity -or (Test-IsNullorWhiteSpace -string $Identity)})
$OutputSystems
}
}