-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathImport-OneShellSystemPSSession.ps1
62 lines (62 loc) · 2.37 KB
/
Import-OneShellSystemPSSession.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
Function Import-OneShellSystemPSSession
{
[CmdletBinding(DefaultParameterSetName = 'Identity')]
param
(
[parameter(Mandatory, ParameterSetName = 'Identity', ValueFromPipelineByPropertyName, ValueFromPipeline)]
[string[]]$Identity
,
[parameter(ParameterSetName = 'ServiceObjectAndSession', ValueFromPipelineByPropertyName, Mandatory)]
[psobject]$ServiceObject
,
[parameter(ParameterSetName = 'ServiceObjectAndSession', ValueFromPipelineByPropertyName, Mandatory)]
[System.Management.Automation.Runspaces.PSSession]$ServiceSession
,
[parameter()]
[AllowNull()]
[AllowEmptyString()]
[string]$CommandPrefix
)
Begin
{
if ($null -eq $script:CurrentUserProfile)
{throw('No OneShell User Profile is active. Use function Use-OneShellUserProfile to load an User Profile.')}
$ImportOneShellSystemPSSessionParams = @{
ErrorAction = 'Stop'
}
if ($PSBoundParameters.ContainsKey('CommandPrefix'))
{
$ImportOneShellSystemPSSessionParams.CommandPrefix = $CommandPrefix
}
}
Process
{
switch ($PSCmdlet.ParameterSetName)
{
'ServiceObjectAndSession'
{
$ImportOneShellSystemPSSessionParams.ServiceObject = $ServiceObject
$ImportOneShellSystemPSSessionParams.ServiceSession = $ServiceSession
ImportOneShellSystemPSSession @ImportOneShellSystemPSSessionParams
}
'Identity'
{
foreach ($i in $Identity)
{
Try
{
$ImportOneShellSystemPSSessionParams.ServiceObject = Get-OneShellSystem -identity $i -ErrorAction Stop
$ImportOneShellSystemPSSessionParams.ServiceSession = Get-OneShellSystemPSSession -serviceObject $ImportOneShellSystemPSSessionParams.ServiceObject -ErrorAction Stop
ImportOneShellSystemPSSession @ImportOneShellSystemPSSessionParams
}
Catch
{
$myerror = $_
Write-OneShellLog -Message $myerror.tostring() -ErrorLog -Verbose
}
}
}
} #end switch
}
}
#end function Import-OneShellSystem