Skip to content

Commit 93fe288

Browse files
committed
updated H1 and metadata and next steps
1 parent a479e8b commit 93fe288

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

articles/automation/learn/automation-tutorial-runbook-graphical.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: My first graphical runbook in Azure Automation
2+
title: Create a graphical runbook in Azure Automation
33
description: Tutorial showing how to create, test, and publish a simple graphical runbook in Azure Automation.
44
keywords: runbook, runbook template, runbook automation, azure runbook
55
services: automation
66
ms.subservice: process-automation
77
ms.date: 04/19/2020
88
ms.topic: tutorial
99
---
10-
# Tutorial: My first graphical runbook
10+
# Tutorial: Create a graphical runbook
1111

1212
> [!div class="op_single_selector"]
1313
> * [Graphical](automation-tutorial-runbook-graphical.md)
@@ -348,7 +348,7 @@ You can now modify the runbook so that it only attempts to start the VM if it is
348348
## Next steps
349349
350350
* To learn more about graphical authoring, see [Graphical authoring in Azure Automation](../automation-graphical-authoring-intro.md).
351-
* To get started with PowerShell runbooks, see [My first PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
352-
* To get started with PowerShell Workflow runbooks, see [My first PowerShell workflow runbook](automation-tutorial-runbook-textual.md).
351+
* To get started with PowerShell runbooks, see [Create a PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
352+
* To get started with PowerShell Workflow runbooks, see [Create a PowerShell workflow runbook](automation-tutorial-runbook-textual.md).
353353
* For a PowerShell cmdlet reference, see [Az.Automation](https://docs.microsoft.com/powershell/module/az.automation/?view=azps-3.7.0#automation
354354
).

articles/automation/learn/automation-tutorial-runbook-textual-powershell.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: My first PowerShell runbook in Azure Automation
2+
title: Create a PowerShell runbook in Azure Automation
33
description: Tutorial showing how to create, test, and publish a simple PowerShell runbook.
44
keywords: azure powershell, powershell script tutorial, powershell automation
55
services: automation
66
ms.subservice: process-automation
77
ms.date: 04/19/2020
88
ms.topic: tutorial
99
---
10-
# Tutorial: My first PowerShell runbook
10+
# Tutorial: Create a PowerShell runbook
1111

1212
> [!div class="op_single_selector"]
1313
> * [Graphical](automation-tutorial-runbook-graphical.md)
@@ -274,7 +274,7 @@ Your runbook currently starts the virtual machine that you hard-coded in the run
274274
* For more information on PowerShell, including language reference and learning modules, see the [PowerShell Docs](/powershell/scripting/overview).
275275
* For a PowerShell cmdlet reference, see [Az.Automation](https://docs.microsoft.com/powershell/module/az.automation/?view=azps-3.7.0#automation
276276
).
277-
* To get started with graphical runbooks, see [My first graphical runbook](automation-tutorial-runbook-graphical.md).
278-
* To get started with PowerShell Workflow runbooks, see [My first PowerShell Workflow runbook](automation-tutorial-runbook-textual.md).
277+
* To get started with graphical runbooks, see [Create a graphical runbook](automation-tutorial-runbook-graphical.md).
278+
* To get started with PowerShell Workflow runbooks, see [Create a PowerShell Workflow runbook](automation-tutorial-runbook-textual.md).
279279
* To know more about runbook types and their advantages and limitations, see [Azure Automation runbook types](../automation-runbook-types.md).
280280
* For more information on the PowerShell script support feature, see [Native PowerShell script support in Azure Automation](https://azure.microsoft.com/blog/announcing-powershell-script-support-azure-automation-2/).

articles/automation/learn/automation-tutorial-runbook-textual-python2.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: My first Python runbook in Azure Automation
2+
title: Create a Python runbook in Azure Automation
33
description: Tutorial showing how to create, test, and publish a simple Python runbook.
44
services: automation
55
ms.subservice: process-automation
66
ms.date: 04/19/2020
77
ms.topic: tutorial
88
---
99

10-
# Tutorial: My first Python runbook
10+
# Tutorial: Create a Python runbook
1111

1212
> [!div class="op_single_selector"]
1313
> - [Graphical](automation-tutorial-runbook-graphical.md)
@@ -34,7 +34,7 @@ You start by creating a simple runbook that outputs the text *Hello World*.
3434

3535
1. In the Azure portal, open your Automation account.
3636

37-
The Automation account page gives you a quick view of the resources in this account. You should already have some assets. Most of those assets are the modules that are automatically included in a new Automation account. You should also have the Credential asset that's mentioned in the [prerequisites](#prerequisites).<br>
37+
The Automation account page gives you a quick view of the resources in this account. You should already have some assets. Most of those assets are the modules that are automatically included in a new Automation account. You should also have the Credential asset that's mentioned in the [prerequisites](#prerequisites).
3838

3939
2. Select **Runbooks** under **Process Automation** to open the list of runbooks.
4040

@@ -242,9 +242,9 @@ except Exception as detail:
242242
243243
## Next steps
244244

245-
- To get started with PowerShell runbooks, see [My first PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
246-
- To get started with Graphical runbooks, see [My first graphical runbook](automation-tutorial-runbook-graphical.md).
247-
- To get started with PowerShell workflow runbooks, see [My first PowerShell workflow runbook](automation-tutorial-runbook-textual.md).
245+
- To get started with PowerShell runbooks, see [Create a PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
246+
- To get started with Graphical runbooks, see [Create a graphical runbook](automation-tutorial-runbook-graphical.md).
247+
- To get started with PowerShell workflow runbooks, see [Create a PowerShell workflow runbook](automation-tutorial-runbook-textual.md).
248248
- To know more about runbook types, their advantages and limitations, see [Azure Automation runbook types](../automation-runbook-types.md).
249249
- To learn about developing for Azure with Python, see [Azure for Python developers](/azure/python/).
250250
- To view sample Python 2 runbooks, see the [Azure Automation GitHub](https://github.com/azureautomation/runbooks/tree/master/Utility/Python).

articles/automation/learn/automation-tutorial-runbook-textual.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: My first PowerShell Workflow runbook in Azure Automation
2+
title: Create a PowerShell Workflow runbook in Azure Automation
33
description: Tutorial showing how to create, test, and publish a simple PowerShell Workflow runbook.
44
keywords: powershell workflow, powershell workflow examples, workflow powershell
55
services: automation
@@ -8,7 +8,7 @@ ms.date: 04/19/2020
88
ms.topic: tutorial
99
---
1010

11-
# Tutorial: My first PowerShell Workflow runbook
11+
# Tutorial: Create a PowerShell Workflow runbook
1212

1313
> [!div class="op_single_selector"]
1414
> * [Graphical](automation-tutorial-runbook-graphical.md)
@@ -229,7 +229,7 @@ Your runbook currently starts the VM that you have hardcoded in the runbook. It
229229
* For more information on PowerShell, including language reference and learning modules, refer to the [PowerShell Docs](https://docs.microsoft.com/powershell/scripting/overview).
230230
* For a PowerShell cmdlet reference, see [Az.Automation](https://docs.microsoft.com/powershell/module/az.automation/?view=azps-3.7.0#automation
231231
).
232-
* To get started with graphical runbooks, see [My first graphical runbook](automation-tutorial-runbook-graphical.md).
233-
* To get started with PowerShell runbooks, see [My first PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
232+
* To get started with graphical runbooks, see [Create a graphical runbook](automation-tutorial-runbook-graphical.md).
233+
* To get started with PowerShell runbooks, see [Create a PowerShell runbook](automation-tutorial-runbook-textual-powershell.md).
234234
* To learn more about runbook types and their advantages and limitations, see [Azure Automation runbook types](../automation-runbook-types.md).
235235
* 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

Comments
 (0)