Skip to content

Commit 96383b3

Browse files
authored
Merge pull request #49218 from wwlpublish/af63670dac50ff43c35e47ab2d55e19a5894e935e01ba5de969431b48ae20806-live
Modules/M06-manage-azure-arc-enabled-servers-scripting
2 parents 2706ad5 + cfec0ad commit 96383b3

9 files changed

+18
-19
lines changed

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/1-introduction.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Introduction
88
description: "Introduction"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
1313
ms.custom:
1414
- N/A
1515
durationInMinutes: 3
1616
content: |
17-
[!include[](includes/1-introduction.md)]
17+
[!include[](includes/1-introduction.md)]

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/2-connect-hybrid-machines-azure-deployment-script.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Connect hybrid machines to Azure using a deployment script
88
description: "Connect hybrid machines to Azure using a deployment script"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
1313
ms.custom:
1414
- N/A
1515
durationInMinutes: 13
1616
content: |
17-
[!include[](includes/2-connect-hybrid-machines-azure-deployment-script.md)]
17+
[!include[](includes/2-connect-hybrid-machines-azure-deployment-script.md)]

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/3-connect-hybrid-machines-azure-powershell.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Connect hybrid machines to Azure by using PowerShell
88
description: "Connect hybrid machines to Azure by using PowerShell"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
1313
ms.custom:
14-
- N/A
15-
- devx-track-azurepowershell
14+
- N/A
1615
durationInMinutes: 18
1716
content: |
18-
[!include[](includes/3-connect-hybrid-machines-azure-powershell.md)]
19-
17+
[!include[](includes/3-connect-hybrid-machines-azure-powershell.md)]

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/4-connect-machines-scale-powershell-scripts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Connect machines at scale by running PowerShell scripts with Configuration Manager
88
description: "Connect machines at scale by running PowerShell scripts with Configuration Manager"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
1313
ms.custom:
1414
- N/A
1515
durationInMinutes: 16
1616
content: |
17-
[!include[](includes/4-connect-machines-scale-powershell-scripts.md)]
17+
[!include[](includes/4-connect-machines-scale-powershell-scripts.md)]

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/5-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Knowledge check
88
description: "Knowledge check"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
@@ -50,4 +50,4 @@ quiz:
5050
explanation: "Incorrect. Manual methods are time consuming and prone to errors."
5151
- content: "Automating the process of enabling Azure Arc for Windows or Linux machines."
5252
isCorrect: true
53-
explanation: "Correct. Automating the process ensures all machines are correctly configured and connected to Azure Arc."
53+
explanation: "Correct. Automating the process ensures all machines are correctly configured and connected to Azure Arc."

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/6-summary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Summary
88
description: "Summary"
9-
ms.date: 06/11/2024
9+
ms.date: 02/14/2025
1010
author: wwlpublish
1111
ms.author: bradj
1212
ms.topic: unit
1313
ms.custom:
1414
- N/A
1515
durationInMinutes: 2
1616
content: |
17-
[!include[](includes/6-summary.md)]
17+
[!include[](includes/6-summary.md)]

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/includes/3-connect-hybrid-machines-azure-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The installed extension ``Az.ConnectedMachine`` is experimental and not covered
3030
- To install the Connected Machine agent on the target machine that can directly communicate to Azure, run:
3131

3232
```powershell
33-
Azure PowerShellCopyConnect-AzConnectedMachine -ResourceGroupName myResourceGroup -Name myMachineName -Location <region>
33+
PowerShellCopyConnect-AzConnectedMachine -ResourceGroupName myResourceGroup -Name myMachineName -Location <region>
3434
```
3535
- To install the Connected Machine agent on the target machine that communicates through a proxy server, run:
3636
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
Choose the best response for each question.
1+
2+
Choose the best response for each of the questions below.

learn-pr/wwl-azure/manage-azure-arc-enabled-servers-scripting/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Manage Azure Arc-enabled servers by using scripting
77
description: "This module covers the topic of enabling Azure Arc for Windows or Linux machines in your environment. Enabling Arc-enabled servers is done either manually or by using an automated method with a provided template script."
8-
ms.date: 06/11/2024
8+
ms.date: 02/14/2025
99
author: wwlpublish
1010
ms.author: bradj
1111
ms.topic: module
@@ -39,4 +39,4 @@ units:
3939
- learn.wwl.manage-azure-arc-enabled-servers-scripting.knowledge-check
4040
- learn.wwl.manage-azure-arc-enabled-servers-scripting.summary
4141
badge:
42-
uid: learn.wwl.manage-azure-arc-enabled-servers-scripting.badge
42+
uid: learn.wwl.manage-azure-arc-enabled-servers-scripting.badge

0 commit comments

Comments
 (0)