Skip to content

Commit a01dce0

Browse files
committed
fixed links
1 parent 64ae571 commit a01dce0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/automation/shared-resources/credentials.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ An Automation credential asset holds an object, which contains security credenti
2121
2222
## Azure PowerShell Az cmdlets
2323

24-
For Azure PowerShell Az module, the cmdlets in the following table are used to create and manage automation credential assets with Windows PowerShell. They ship as part of the [AzureAz.Automation module](/powershell/azure/new-azureps-module-az), which is available for use in Automation runbooks and DSC configurations.
24+
For Azure PowerShell Az module, the cmdlets in the following table are used to create and manage automation credential assets with Windows PowerShell. They ship as part of the [AzureAz.Automation module](/powershell/azure/new-azureps-module-az?view=azps-1.1.0), which is available for use in Automation runbooks and DSC configurations.
2525

2626
| Cmdlets | Description |
2727
|:--- |:--- |
28-
| [Get-AzAutomationCredential](/powershell/module/az.automation/get-azautomationcredential) |Retrieves information about a credential asset. This does not return a PSCredential object. |
29-
| [New-AzAutomationCredential](/powershell/module/az.automation/new-azautomationcredential) |Creates a new Automation credential. |
30-
| [Remove-AzAutomationCredential](/powershell/module/az.automation/remove-azautomationcredential) |Removes an Automation credential. |
31-
| [Set-AzAutomationCredential](/powershell/module/az.automation/set-azautomationcredential) |Sets the properties for an existing Automation credential. |
28+
| [Get-AzAutomationCredential](/powershell/module/az.automation/get-azautomationcredential?view=azps-3.3.0) |Retrieves information about a credential asset. This does not return a PSCredential object. |
29+
| [New-AzAutomationCredential](/powershell/module/az.automation/new-azautomationcredential?view=azps-3.3.0) |Creates a new Automation credential. |
30+
| [Remove-AzAutomationCredential](/powershell/module/az.automation/remove-azautomationcredential?view=azps-3.3.0) |Removes an Automation credential. |
31+
| [Set-AzAutomationCredential](/powershell/module/az.automation/set-azautomationcredential?view=azps-3.3.0) |Sets the properties for an existing Automation credential. |
3232

3333
## Activities
3434

@@ -92,7 +92,7 @@ $securePassword = $myCredential.Password
9292
$password = $myCredential.GetNetworkCredential().Password
9393
```
9494

95-
You can also use a credential to authenticate to Azure with [Connect-AzAccount](/powershell/module/az.accounts/connect-azaccount). Under most circumstances, you should use a [Run As account](../manage-runas-account.md) and retrieve it with [Get-AzAutomationConnection](../automation-connections.md).
95+
You can also use a credential to authenticate to Azure with [Connect-AzAccount](/powershell/module/az.accounts/connect-azaccount?view=azps-3.3.0). Under most circumstances, you should use a [Run As account](../manage-runas-account.md) and retrieve it with [Get-AzAutomationConnection](../automation-connections.md).
9696

9797
```azurepowershell
9898
$myCred = Get-AutomationPSCredential -Name 'MyCredential'

0 commit comments

Comments
 (0)