You can run workflows to generate actions based on a PowerShell script or a PowerShell cmdlet. You can use the generated actions as building blocks for custom workflows.
Generate an action from a PowerShell script
You can run a workflow to generate an action from a PowerShell script that you provide. You can optionally generate a sample workflow that can run the generated action.
You can customize the script of the action that you generate by using placeholders. For each placeholder, the workflow creates a corresponding action parameter of type string in the generated action. When you run the action, you can provide an actual value as the action parameter to replace the placeholder.
Prerequisites
- Verify that you are logged in to the Automation Orchestrator Client as an administrator.
- Verify that you have a connection to a PowerShell host from the Inventory view.
Procedure
What to do next
You can integrate the generated action in custom workflows.
Generate an action for a PowerShell Cmdlet
You can run a workflow to generate an action for a PowerShell cmdlet and parameter set that you provide. With this action, you can use PowerShell functionality in Automation Orchestrator. You can optionally generate a sample workflow that runs the generated action.
You can use a large set of data types with the PowerShell script engine. The data types that you can use include primitive types such as Integer, Boolean, Char, any type available from the .NET assembly, or user-defined types. When generating actions based on PowerShell cmdlet definitions, the input and output cmdlet parameters are represented by types that the Automation Orchestrator platform supports. The PowerShell plug-in defines the type mappings. In general, primitive types are mapped to the corresponding Automation Orchestrator types, and complex types are represented by the PowerShellRemotePSObject object.
Prerequisites
- Verify that you are logged in to the Automation Orchestrator Client as an administrator.
- Verify that you have a connection to a PowerShell host from the Inventory view.
Procedure
What to do next
You can integrate the generated action in custom workflows.
Passing Invocation Results Between Actions
The PowerShell plug-in supports passing of results as parameters from one PowerShell script invocation to another. To pass results correctly, both invocations must happen in the same session.