Automate IT Operations with System Center - Orchestrator Runbooks

Important

This version of Orchestrator has reached the end of support. We recommend you to upgrade to Orchestrator 2022.

The power of System Center - Orchestrator lies in providing runbooks and the individual activities that make up a runbook. Runbooks contain the instructions for an automated task or process. The individual steps throughout a runbook are called activities. Within the runbook, additional controls provide information and instructions to control the sequence of activities in the runbook. Runbooks, activities, and each runbook control have configurable properties. You modify these properties to configure the behavior that your runbook requires.

Starting Point

Your runbook must have only one starting point. A starting point is an activity that automatically runs when the runbook is started. Each activity in the runbook runs after the previous activity in the workflow is completed.

If a runbook starts with any activity other than a monitor activity, the runbook begins processing, and attempts to run to completion. If the runbook starts with a monitoring activity, the monitor loads and waits for the trigger condition. When the condition is met, a runbook instance is created to run the remaining activities in the runbook. The monitor continues to run and waits for another occurrence of the trigger condition. Runbooks that start with monitors continue to run until you stop them from the Runbook Designer or Orchestration console.

Variables

When building runbooks, some settings are the same across activities. Variables let you specify a value that activities use in any runbook.

Important

The access permissions for variables can be modified, but the runbook server doesn't enforce these permissions.

Important

Be aware that in Orchestrator, variables that reference system variables, for example %ProgramFiles%, return values from a 32-bit runtime environment. This is because Orchestrator is a 32-bit application.

Note

Orchestrator doesn't support moving multiple variables with multiple selection. To move more than one variable to another folder, you must move each variable individually.

Use the following procedures to create, insert, and organize variables.

Follow these steps to create a variable:

  1. In the Connections pane in the Runbook Designer, expand the Global Settings folder, and then select the Variables folder.

  2. Right-click the Variables folder or a subfolder of the Variables folder to select New, and then select Variable to open the New Variable dialog.

  3. In the Name box, enter a name for the variable.

  4. In the Description box, enter a description that explains the purpose of the variable.

  5. In the Value box, enter the value of the variable. This value replaces the placeholder in those activities where the variable is inserted.

  6. If you want the variable to be encrypted (for example, to store a password for use in other runbook activities), select the Encrypted Variable checkbox.

    For more information about best practices for using encrypted variables, see Orchestrator Data Encryption.

  7. Select Finish.

Important

Orchestrator doesn't let you combine an encrypted variable with plain text as a parameter value in a runbook.

Special Variables

You can specify special formats of variables to provide dynamic information to your runbooks. Specify the value of the variable to invoke this behavior.

NOW(): When the variable is resolved, it's set to the current date and time. You can pass arguments to this function to return specific portions of the date or time. For example, NOW(hour) returns the current hour. The following are the valid arguments for the NOW() function: day, dayofweek, dayofyear, month, year, hour, minute, second, millisecond.

%ENVVAR%: This variable returns the value of the environment variable between the percent (\) symbols. The environment variable is based on the runbook server computer where the runbook is running, and it's not case-sensitive. All system variables can be resolved. Any user variables are resolved in the context of the service account on the runbook server. If the environment variable doesn't exist, the text specified within the variable is returned as-is (that is, if you enter %ENVVAR% and no environment variable named ENVVAR exists, the text '%ENVVAR%' is returned).

Workflow Control

When you build runbooks in Orchestrator, it's important to understand the underlying logic of the workflow engine. By using this logic, you can create workflows to automate resource-based jobs and complex data processing tasks.

The workflow control provides the following controls: Smart Links and Embedded Loops.

The links that connect individual activities in a runbook are called smart links. Smart links in Orchestrator support precedence between two activities. Smart links invoke the next activity in the runbook as soon as the previous activity finishes successfully. Smart links also provide filtering capabilities for the data so that you can limit the data passed to subsequent activities in the workflow.

Embedded Loops

Each activity can create a loop so that you can retry operations if they fail or test the output information of the activity for valid data. You can also use these mechanisms to build wait conditions into your workflows.

When a loop is configured for an activity, it continues to run with the same input data until a desired exit looping criteria is reached. The exit criteria are built in a similar way as smart link configurations. You can use any published data item from the activity as part of the exit or don't exit configuration. Included in the common published data are special data items, such as Loop: Number of attempts and Loop: Total duration, that let you use information from the loop itself in the looping conditions.

Loops run one time for each incoming piece of data that is passed to the activity. For example, consider a runbook that uses a Query Database activity followed by Append Line. If the Query Database activity returned three rows, the Append Line activity would run three times. If you have a loop on the Append Line activity, it would run three separate loops. After the first data item has looped through the Append Line activity, the next item goes through Append Line and loops until it exits, and then the third begins. After all the three items have been processed, the next activity in the runbook runs.

Extending Runbook capabilities

Orchestrator provides two options for extending standard activities. You can either build new activities or create new Integration Packs (IP). IPs are collections of activities for Microsoft and products of other companies, which are specific to a product or technology. If the functionality that you require isn't available in an IP, you have the alternative option of using the Orchestrator Integration Toolkit.

The Orchestrator Integration Toolkit is a set of tools to help you create new integrations for Orchestrator. You can use wizards in the Integration Toolkit to easily create new workflow activities and Integration Packs that extend the capabilities of the product. You can also create custom workflow activities using the Orchestrator SDK and C#, and then package them into an IP using this toolkit.

Next steps