-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGetOneShellSystemEndpointPSSessionParameter.ps1
66 lines (66 loc) · 2.25 KB
/
GetOneShellSystemEndpointPSSessionParameter.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
function GetOneShellSystemEndpointPSSessionParameter
{
[cmdletbinding()]
param
(
$ServiceObject
,
$Endpoint
)
begin
{
Get-CallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState
}#end begin
end
{
$ServiceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceObject.ServiceType
$NewPSSessionParams = @{
ErrorAction = 'Stop'
Name = $($ServiceObject.Identity + '%' + $Endpoint.Identity)
}
if ($null -ne $ServiceObject.Credentials.PSSession)
{
$NewPSSessionParams.Credential = $ServiceObject.Credentials.PSSession
}
#Apply Service Type Defaults
foreach ($p in $ServiceTypeDefinition.PSRemotingSettings.ConnectCommand.Parameters)
{
$Value = $(
switch ($p.ValueType)
{
'Static'
{$p.Value}
'ScriptBlock'
{
& $([scriptblock]::Create($p.Value))
}
}
)
$NewPSSessionParams.$($p.Name) = $Value
}
#Apply ServiceObject Defaults or their endpoint overrides
if ($ServiceObject.defaults.ProxyEnabled -eq $true -or $Endpoint.ProxyEnabled -eq $true)
{
$NewPSSessionParams.SessionOption = New-PsSessionOption -ProxyAccessType IEConfig #-ProxyAuthentication basic
}
if ($ServiceObject.defaults.UseTLS -eq $true -or $Endpoint.UseTLS -eq $true)
{
$NewPSSessionParams.UseSSL = $true
}
if (Test-IsNotNullOrWhiteSpace -string $ServiceObject.defaults.AuthMethod)
{
$NewPSSessionParams.Authentication = $ServiceObject.defaults.AuthMethod
}
if (Test-IsNotNullOrWhiteSpace -String $endpoint.AuthMethod)
{
$NewPSSessionParams.Authentication = $Endpoint.AuthMethod
}
#Apply Endpoint only settings
if (Test-IsNotNullOrWhiteSpace -String $endpoint.ServicePort)
{
$NewPSSessionParams.Port = $Endpoint.ServicePort
}
$NewPSSessionParams
}#end end
}
#end function Get-EndpointPSSessionParameter