-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInitializeOneShellSystemPSSession.ps1
124 lines (124 loc) · 4.65 KB
/
InitializeOneShellSystemPSSession.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
function InitializeOneShellSystemPSSession
{
[CmdletBinding()]
param
(
[parameter(Mandatory)]
$ServiceObject
,
[parameter()]
$ServiceSession
,
[parameter()]
$endpoint
,
[parameter(Mandatory)]
[ValidateSet('PreModuleImport', 'PostModuleImport')]
$Phase
,
[parameter(Mandatory)]
[bool]$UsePSRemoting
)
Get-CallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState
$serviceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceObject.ServiceType
switch ($UsePSRemoting)
{
$true
{
$PhaseCommands = $serviceTypeDefinition.PSRemotingSettings.SessionInitialization.$Phase
}
$false
{
$PhaseCommands = $serviceTypeDefinition.DirectConnectSettings.SessionInitialization.$Phase
}
}
switch ($null -ne $PhaseCommands -and ($PhaseCommands).count -ge 1)
{
$true
{
$InitializationCommandsResults = @(
foreach ($cmd in $PhaseCommands)
{
$conditionResults = @(
foreach ($c in $cmd.conditions)
{
switch ($c.type)
{
'Local'
{
$ScriptBlockToTest = [scriptblock]::Create($c.test)
&$ScriptBlockToTest
}
'InPSSession'
{
Invoke-Command -Session $serviceSession -ScriptBlock {& $($($using:c).test)}
}
}
}
)
switch ($conditionResults -notcontains $false)
{
$true
{
$CmdParams = @{
ErrorAction = 'Stop'
}
foreach ($p in $cmd.parameters)
{
$value = $(
switch ($p.ValueType)
{
'Static'
{$p.Value}
'ScriptBlock'
{
$ValueGeneratingScriptBlock = [scriptblock]::Create($p.Value)
&$ValueGeneratingScriptBlock
}
}
)
if ($null -ne $value)
{
$CmdParams.$($p.name) = $value
}
}
Try
{
switch ($UsePSRemoting)
{
$true
{
[void](Invoke-Command -Session $serviceSession -ScriptBlock {& $(($Using:cmd).command) @using:CmdParams} -ErrorAction Stop)
}
$false
{
[void](Invoke-Command -ScriptBlock {& $(($cmd).command) @CmdParams} -ErrorAction Stop)
}
}
$true
}#end Try
Catch
{
$myerror = $_
Write-OneShellLog -Message "Initialization Phase $Phase failed." -ErrorLog -Verbose -EntryType Failed
Write-OneShellLog -Message $myerror.tostring() -ErrorLog
$false
}
}
$false
{
$null
}
}
}
)
#output True or false depending on results above
$InitializationCommandsResults -notcontains $false
}
$false
{
$null
}
}#end Switch
}
#end function InitializeOneShellSystemPSSession