Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Returns workflows from the JS7 JOC Cockpitinventory.

SYNTAX

Get-JS7Workflow [[-WorkflowPath] <String>] [[-WorkflowVersionId] <String>] [[-DirectoryFolder] <String>] [-Recursive] [[-RegularExpression] <String>] [-Compact] [<CommonParameters>]

...

Workflows are returned from JOC Cockpit - independent of their deployment status with specific Controller instances..
Workflows can be selected either by the folder of the workflow location including sub-folders or by an individual workflow.

Resulting workflows can be forwarded to other cmdlets for pipelined bulk operations.

...

-WorkflowPath <String>
Optionally specifies the path and name of a workflow that should be returned.
If the name of a workflow is specified then the -Directory Folder parameter is used to determine the folder.
Otherwise the -WorkflowPath parameter is assumed to include the full path and name of the workflow.

One of the parameters -Folder, -Directory WorkflowPath or -WorkflowPath RegularExpression has to be specified.

Required?false
Position?1
Default value
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

WorkflowVersionId

-WorkflowVersionId <String>
Deployed workflows can be assigned a version identifier. This parameters allows to select
workflows that are assigned the specified version.

Required?false
Position?2
Default value
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

Folder

-Directory Folder <String>
Optionally specifies the folder for which workflows should be returned.

One of the parameters -Directory Folder and -WorkflowPath has to be specified.

Required?false
Position?23
Default value/
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

-RegularExpression <String>
Limits result to workflow paths that correspond the given regular expression.

Required?false
Position?34
Default value
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

...

PS > $workflows = Get-JS7Workflow -Directory Folder /some_path -Recursive

Returns all workflows that are configured with the specified path including any sub-folders.

...