Skip to content

Commit a0d92e4

Browse files
committed
Edited the broken links
1 parent 74bdd2e commit a0d92e4

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

articles/automation/automation-managing-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Automation data security
33
description: This article helps you learn how Azure Automation protects your privacy and secures your data.
44
services: automation
55
ms.subservice: shared-capabilities
6-
ms.date: 04/02/2023
6+
ms.date: 05/26/2023
77
ms.topic: conceptual
88
ms.custom: devx-track-azurepowershell
99
---
@@ -60,7 +60,7 @@ When you delete an Automation account in Azure, all objects in the account are d
6060

6161
### Runbooks
6262

63-
You can export your runbooks to script files using either the Azure portal or the [Get-AzureAutomationRunbookDefinition](/powershell/module/servicemanagement/azure.service/get-azureautomationrunbookdefinition) cmdlet in Windows PowerShell. You can import these script files into another Automation account, as discussed in [Manage runbooks in Azure Automation](manage-runbooks.md).
63+
You can export your runbooks to script files using either the Azure portal or the [Get-AzureAutomationRunbookDefinition](/powershell/module/servicemanagement/azure/get-azureautomationrunbookdefinition) cmdlet in Windows PowerShell. You can import these script files into another Automation account, as discussed in [Manage runbooks in Azure Automation](manage-runbooks.md).
6464

6565
### Integration modules
6666

articles/automation/automation-use-azure-ad.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use Azure AD in Azure Automation to authenticate to Azure
33
description: This article tells how to use Azure AD within Azure Automation as the provider for authentication to Azure.
44
services: automation
5-
ms.date: 09/23/2021
5+
ms.date: 05/26/2023
66
ms.topic: conceptual
77
ms.custom: devx-track-azurepowershell
88
---
@@ -88,7 +88,9 @@ You can use the Azure portal to create the credential asset. Do this operation f
8888

8989
### Create the credential asset with Windows PowerShell
9090

91-
To prepare a new credential asset in Windows PowerShell, your script first creates a `PSCredential` object using the assigned user name and password. The script then uses this object to create the asset through a call to the [New-AzureAutomationCredential](/powershell/module/servicemanagement/azure.service/new-azureautomationcredential) cmdlet. Alternatively, the script can call the [Get-Credential](/powershell/module/microsoft.powershell.security/get-credential) cmdlet to prompt the user to type in a name and password. See [Credential assets in Azure Automation](shared-resources/credentials.md).
91+
To prepare a new credential asset in Windows PowerShell, your script first creates a `PSCredential` object using the assigned user name and password. The script then uses this object to create the asset through a call to the [New-AzureAutomationCredential](/powershell/module/servicemanagement/azure/new-azureautomationcredential) cmdlet. Alternatively, the script can call the [Get-Credential](/powershell/module/microsoft.powershell.security/get-credential) cmdlet to prompt the user to type in a name and password. See [Credential assets in Azure Automation](shared-resources/credentials.md).
92+
93+
9294

9395
## Manage Azure resources from an Azure Automation runbook
9496

articles/automation/runbook-input-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure runbook input parameters in Azure Automation
33
description: This article tells how to configure runbook input parameters, which allow data to be passed to a runbook when it's started.
44
services: automation
55
ms.subservice: process-automation
6-
ms.date: 04/03/2023
6+
ms.date: 05/26/2023
77
ms.topic: conceptual
88
ms.custom: devx-track-azurepowershell
99
---
@@ -153,7 +153,7 @@ In the label beneath the input box, you can see the properties that have been se
153153
Start-AzAutomationRunbook -AutomationAccountName "TestAutomation" -Name "Get-AzureVMGraphical" –ResourceGroupName $resourceGroupName -Parameters $params
154154
```
155155

156-
* **Azure classic deployment model cmdlets:** You can start an automation runbook that was created in a default resource group by using [Start-AzureAutomationRunbook](/powershell/module/servicemanagement/azure.service/start-azureautomationrunbook).
156+
* **Azure classic deployment model cmdlets:** You can start an automation runbook that was created in a default resource group by using [Start-AzureAutomationRunbook](/powershell/module/servicemanagement/azure/start-azureautomationrunbook).
157157

158158
```powershell
159159
$params = @{"VMName"="WSVMClassic"; "ServiceName"="WSVMClassicSG"}

articles/automation/shared-resources/certificates.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage certificates in Azure Automation
33
description: This article tells how to work with certificates for access by runbooks and DSC configurations.
44
services: automation
55
ms.subservice: shared-capabilities
6-
ms.date: 01/04/2023
6+
ms.date: 05/26/2023
77
ms.topic: conceptual
88
ms.custom: devx-track-azurepowershell
99
---
@@ -26,7 +26,8 @@ The cmdlets in the following table create and manage Automation certificates wit
2626
|[Remove-AzAutomationCertificate](/powershell/module/Az.Automation/Remove-AzAutomationCertificate)|Removes a certificate from Automation.|
2727
|[Set-AzAutomationCertificate](/powershell/module/Az.Automation/Set-AzAutomationCertificate)|Sets the properties for an existing certificate, including uploading the certificate file and setting the password for a **.pfx** file.|
2828

29-
The [Add-AzureCertificate](/powershell/module/servicemanagement/azure.service/add-azurecertificate) cmdlet can also be used to upload a service certificate for the specified cloud service.
29+
The [Add-AzureCertificate](/powershell/module/servicemanagement/azure/add-azureaccount) cmdlet can also be used to upload a service certificate for the specified cloud service.
30+
3031

3132
## Internal cmdlets to access certificates
3233

articles/automation/shared-resources/credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage credentials in Azure Automation
33
description: This article tells how to create credential assets and use them in a runbook or DSC configuration.
44
services: automation
55
ms.subservice: shared-capabilities
6-
ms.date: 09/22/2021
6+
ms.date: 05/26/2023
77
ms.topic: conceptual
88
---
99

@@ -35,7 +35,7 @@ The cmdlets in the following table are used to access credentials in your runboo
3535
|:--- |:--- |
3636
| `Get-AutomationPSCredential` |Gets a `PSCredential` object to use in a runbook or DSC configuration. Most often, you should use this [internal cmdlet](modules.md#internal-cmdlets) instead of the `Get-AzAutomationCredential` cmdlet, as the latter only retrieves credential information. This information isn't normally helpful to pass to another cmdlet. |
3737
| [Get-Credential](/powershell/module/microsoft.powershell.security/get-credential) |Gets a credential with a prompt for user name and password. This cmdlet is part of the default Microsoft.PowerShell.Security module. See [Default modules](modules.md#default-modules).|
38-
| [New-AzureAutomationCredential](/powershell/module/servicemanagement/azure.service/new-azureautomationcredential) | Creates a credential asset. This cmdlet is part of the default Azure module. See [Default modules](modules.md#default-modules).|
38+
| [New-AzureAutomationCredential](/powershell/module/servicemanagement/azure/new-azureautomationcredential) | Creates a credential asset. This cmdlet is part of the default Azure module. See [Default modules](modules.md#default-modules).|
3939

4040
To retrieve `PSCredential` objects in your code, you must import the `Orchestrator.AssetManagement.Cmdlets` module. For more information, see [Manage modules in Azure Automation](modules.md).
4141

articles/automation/troubleshoot/update-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot Azure Automation Update Management issues
33
description: This article tells how to troubleshoot and resolve issues with Azure Automation Update Management.
44
services: automation
55
ms.subservice: update-management
6-
ms.date: 02/23/2023
6+
ms.date: 05/26/2023
77
ms.topic: troubleshooting
88
ms.custom: devx-track-azurepowershell
99
---

0 commit comments

Comments
 (0)