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/governance/machine-configuration/machine-configuration-azure-automation-migration.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Azure Automation State Configuration to machine configuration migration planning
3
3
description: This article provides process and technical guidance for customers interested in moving from DSC version 2 in Azure Automation to version 3 in Azure Policy.
4
-
ms.date: 07/26/2022
4
+
ms.date: 03/06/2023
5
5
ms.topic: how-to
6
6
ms.service: machine-configuration
7
7
ms.author: timwarner
@@ -81,15 +81,15 @@ Group where the Automation Account is deployed.
81
81
Install the PowerShell module "Az.Automation".
82
82
83
83
```powershell
84
-
Install-Module Az.Automation
84
+
Install-Module -Name Az.Automation
85
85
```
86
86
87
-
Next, use the "Get-AzAutomationAccount" command to identify your Automation
87
+
Next, use the `Get-AzAutomationAccount` command to identify your Automation
88
88
Accounts and the Resource Group where they're deployed.
89
-
The properties "ResourceGroupName" and "AutomationAccountName"
89
+
The properties **ResourceGroupName** and **AutomationAccountName**
90
90
are important for next steps.
91
91
92
-
```powershell
92
+
```azurepowershell
93
93
Get-AzAutomationAccount
94
94
95
95
SubscriptionId : <your subscription id>
@@ -108,7 +108,7 @@ Discover the configurations in your Automation Account. The output
108
108
contains one entry per configuration. If you have many, store the information
0 commit comments