You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/automation/automation-child-runbooks.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,15 @@ The parameters of a child runbook called inline can be of any data type, includi
27
27
28
28
Which runbook types can call each other?
29
29
30
-
* A [PowerShell runbook](automation-runbook-types.md#powershell-runbooks) and a [Graphical runbook](automation-runbook-types.md#graphical-runbooks) can call each other inline, as both are PowerShell-based.
31
-
* A [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks) and a Graphical PowerShell Workflow runbook can call each other inline, as both are PowerShell Workflow-based.
30
+
* A [PowerShell runbook](automation-runbook-types.md#powershell-runbooks) and a [graphical runbook](automation-runbook-types.md#graphical-runbooks) can call each other inline, as both are PowerShell-based.
31
+
* A [PowerShell Workflow runbook](automation-runbook-types.md#powershell-workflow-runbooks) and a graphical PowerShell Workflow runbook can call each other inline, as both are PowerShell Workflow-based.
32
32
* The PowerShell types and the PowerShell Workflow types can’t call each other inline, and must use **Start-AzAutomationRunbook**.
33
33
34
34
When does publish order matter?
35
35
36
-
The publish order of runbooks only matters for PowerShell Workflow and Graphical PowerShell Workflow runbooks.
36
+
The publish order of runbooks only matters for PowerShell Workflow and graphical PowerShell Workflow runbooks.
37
37
38
-
When your runbook calls a Graphical or PowerShell Workflow child runbook using inline execution, it uses the name of the runbook. The name must start with **.\\** to specify that the script is located in the local directory.
38
+
When your runbook calls a graphical or PowerShell Workflow child runbook using inline execution, it uses the name of the runbook. The name must start with **.\\** to specify that the script is located in the local directory.
Copy file name to clipboardExpand all lines: articles/automation/automation-edit-textual-runbook.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ The textual editor includes a feature to insert code for cmdlets, assets, and ch
18
18
19
19
Each runbook in Azure Automation has two versions, Draft and Published. You edit the Draft version of the runbook and then publish it so it can be executed. The Published version cannot be edited. For more information, see [Publishing a runbook](manage-runbooks.md#publish-a-runbook).
20
20
21
-
This article provides detailed steps for performing different functions with this editor. These are not applicable to [Graphical Runbooks](automation-runbook-types.md#graphical-runbooks). To work with these runbooks, see [Graphical authoring in Azure Automation](automation-graphical-authoring-intro.md).
21
+
This article provides detailed steps for performing different functions with this editor. These are not applicable to [graphical runbooks](automation-runbook-types.md#graphical-runbooks). To work with these runbooks, see [Graphical authoring in Azure Automation](automation-graphical-authoring-intro.md).
22
22
23
23
>[!NOTE]
24
24
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](automation-update-azure-modules.md).
This tutorial walks you through the creation of a [Graphical runbook](automation-runbook-types.md#graphical-runbooks) in Azure Automation. Start with a simple runbook that tests and publishes, while learning how to track the status of the runbook job. Then modify the runbook to actually manage Azure resources, in this case starting an Azure virtual machine. Complete the tutorial to make the runbook more robust by adding runbook parameters and conditional links.
19
+
This tutorial walks you through the creation of a [graphical runbook](automation-runbook-types.md#graphical-runbooks) in Azure Automation. Start with a simple runbook that tests and publishes, while learning how to track the status of the runbook job. Then modify the runbook to actually manage Azure resources, in this case starting an Azure virtual machine. Complete the tutorial to make the runbook more robust by adding runbook parameters and conditional links.
20
20
21
21
>[!NOTE]
22
22
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](automation-update-azure-modules.md).
@@ -39,7 +39,7 @@ Start by creating a simple runbook that outputs the text "Hello World".
39
39
2. Select **Runbooks** under **Process Automation** to open the list of runbooks.
40
40
3. Create a new runbook by selecting **Create a runbook**.
41
41
4. Give the runbook the name **MyFirstRunbook-Graphical**.
42
-
5. In this case, you're going to create a [Graphical runbook](automation-graphical-authoring-intro.md). Select **Graphical** for **Runbook type**.<br> <br>
42
+
5. In this case, you're going to create a [graphical runbook](automation-graphical-authoring-intro.md). Select **Graphical** for **Runbook type**.<br> <br>
43
43
6. Click **Create** to create the runbook and open the graphical editor.
Copy file name to clipboardExpand all lines: articles/automation/automation-first-runbook-textual.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,7 +207,7 @@ Your runbook currently starts the VM that you have hardcoded in the runbook. It
207
207
## Next steps
208
208
209
209
* For more information on PowerShell, including language reference and learning modules, refer to the [PowerShell Docs](https://docs.microsoft.com/powershell/scripting/overview).
210
-
* To get started with Graphical runbooks, see [My first graphical runbook](automation-first-runbook-graphical.md).
210
+
* To get started with graphical runbooks, see [My first graphical runbook](automation-first-runbook-graphical.md).
211
211
* To get started with PowerShell runbooks, see [My first PowerShell runbook](automation-first-runbook-textual-powershell.md).
212
212
* To learn more about runbook types and their advantages and limitations, see [Azure Automation runbook types](automation-runbook-types.md).
213
213
* For more information on PowerShell script support features, see [Native PowerShell script support in Azure Automation](https://azure.microsoft.com/blog/announcing-powershell-script-support-azure-automation-2/).
0 commit comments