forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSWorkflow.psm1
More file actions
64 lines (52 loc) · 1.99 KB
/
Copy pathPSWorkflow.psm1
File metadata and controls
64 lines (52 loc) · 1.99 KB
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 New-PSWorkflowSession
{
<#
.EXTERNALHELP Microsoft.PowerShell.Workflow.ServiceCore.dll-help.xml
#>
[CmdletBinding(DefaultParameterSetName='ComputerName', HelpUri='http://go.microsoft.com/fwlink/?LinkID=238268', RemotingCapability='OwnedByCommand')]
[OutputType([System.Management.Automation.Runspaces.PSSession])]
param(
[Parameter(ParameterSetName='ComputerName', Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)]
[Alias('Cn')]
[ValidateNotNullOrEmpty()]
[string[]]
$ComputerName,
[Parameter(ParameterSetName='ComputerName', ValueFromPipelineByPropertyName=$true)]
[Object]
$Credential,
[string[]]
$Name,
[Parameter(ParameterSetName='ComputerName')]
[ValidateRange(1, 65535)]
[int]
$Port,
[Parameter(ParameterSetName='ComputerName')]
[switch]
$UseSSL,
[Parameter(ParameterSetName='ComputerName', ValueFromPipelineByPropertyName=$true)]
[string]
$ApplicationName,
[Parameter(ParameterSetName='ComputerName')]
[int]
$ThrottleLimit,
[Parameter(ParameterSetName='ComputerName')]
[ValidateNotNull()]
[System.Management.Automation.Remoting.PSSessionOption]
$SessionOption,
[Parameter(ParameterSetName='ComputerName')]
[System.Management.Automation.Runspaces.AuthenticationMechanism]
$Authentication,
[Parameter(ParameterSetName='ComputerName')]
[string]
$CertificateThumbprint,
[Parameter(ParameterSetName='ComputerName')]
[switch]
$EnableNetworkAccess
)
Process
{
New-PSSession -ConfigurationName Microsoft.PowerShell.Workflow @PSBoundParameters
}
}
Set-Alias -Name nwsn -Value New-PSWorkflowSession
Export-ModuleMember -Function New-PSWorkflowSession -Alias nwsn