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 vRealize Orchestrator Client as an administrator.
  • Verify that you have a connection to a PowerShell host from the Inventory view.

Procedure

  1. In the vRealize Orchestrator Client, navigate to Library > Workflows and enter the powershell and generate tags in the workflow search box.
  2. Locate the Generate an action from a PowerShell script workflow and click Run.
  3. On the Script tab, in the Script text box, type or paste the PowerShell script from which to generate the action.
    Note: You can use {#ParamName#} as a placeholder for user input. If the placeholder is of type string, you must use double quotes to pass the value of the placeholder to the action.
    The following script is an example of how to link the generated action parameter to a script parameter.
    param($name={#ParamName#})
    echo $name;
  4. On the Action tab, in the Name text box, enter a name for the action that you want to generate, and select an existing module in which to generate the action.
  5. On the Workflow tab, select whether to generate a workflow.
    Option Description
    Yes Generates a sample workflow that can run the generated action. You must select a folder in which to generate the workflow.
    Note: The name of the generated workflow consists of the predefined string Invoke Script and the name of the generated action.
    No A sample workflow is not generated.
  6. Click Submit to run the workflow.

What to do next

You can integrate the generated action in custom workflows.