-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGet-OneShellSystem.ps1
39 lines (39 loc) · 1.09 KB
/
Get-OneShellSystem.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
function Get-OneShellSystem
{
[cmdletbinding(DefaultParameterSetName = 'Identity')]
param
(
[parameter(ParameterSetName = 'Identity')]
[string[]]$Identity
,
[parameter(ParameterSetName = 'ServiceType')]
[string[]]$ServiceType
)
begin
{
if ($null -eq $script:CurrentUserProfile)
{throw('No OneShell User Profile is active. Use function Use-OneShellUserProfile to load an User Profile.')}
}
Process
{
switch ($PSCmdlet.ParameterSetName)
{
'Identity'
{
if ($null -eq $Identity)
{
$script:CurrentSystems
}
foreach ($i in $Identity)
{
$script:CurrentSystems | Where-Object -FilterScript {$_.Identity -eq $i -or $_.name -eq $i}
}
}
'ServiceType'
{
$script:CurrentSystems | Where-Object -FilterScript {$_.ServiceType -in $ServiceType}
}
}
}
}
#end function Get-OneShellSystem