Skip to content

Commit 7944d85

Browse files
committed
Bulk update of links to azps rdfe content
1 parent 4d39b9d commit 7944d85

23 files changed

Lines changed: 34 additions & 37 deletions

articles/automation/automation-managing-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ When you delete an Automation account in Azure, all objects in the account are d
112112

113113
### Runbooks
114114

115-
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).
115+
You can export your runbooks to script files using either the Azure portal or the [Get-AzAutomationRunbookContent](/powershell/module/az.automation/get-azautomationrunbook) 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).
116116

117117
### Integration modules
118118

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ You can use the Azure portal to create the credential asset. Do this operation f
5757

5858
### Create the credential asset with Windows PowerShell
5959

60-
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).
60+
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-AzAutomationCredential](/powershell/module/az.automation/new-azautomationcredential) 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).
6161

6262

6363
## Manage Azure resources from an Azure Automation runbook

articles/automation/runbook-input-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ In the label beneath the input box, you can see the properties that have been se
167167
Start-AzAutomationRunbook -AutomationAccountName "TestAutomation" -Name "Get-AzureVMGraphical" –ResourceGroupName $resourceGroupName -Parameters $params
168168
```
169169

170-
* **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).
170+
* **Azure classic deployment model cmdlets:** You can start an automation runbook that was created in a default resource group by using `Start-AzureAutomationRunbook`.
171171

172172
```powershell
173173
$params = @{"VMName"="WSVMClassic"; "ServiceName"="WSVMClassicSG"}

articles/automation/shared-resources/certificates.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ The cmdlets in the following table create and manage Automation certificates wit
2929
|[Remove-AzAutomationCertificate](/powershell/module/Az.Automation/Remove-AzAutomationCertificate)|Removes a certificate from Automation.|
3030
|[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.|
3131

32-
The [Add-AzureCertificate](/powershell/module/servicemanagement/azure/add-azureaccount) cmdlet can also be used to upload a service certificate for the specified cloud service.
33-
34-
3532
## Internal cmdlets to access certificates
3633

3734
The internal cmdlet in the following table is used to access certificates in your runbooks. This cmdlet comes with the global module `Orchestrator.AssetManagement.Cmdlets`. For more information, see [Internal cmdlets](modules.md#internal-cmdlets).

articles/automation/shared-resources/credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The cmdlets in the following table are used to access credentials in your runboo
3939
|:--- |:--- |
4040
| `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. |
4141
| [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).|
42-
| [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).|
42+
| [New-AzAutomationCredential](/powershell/module/az.automation/new-azautomationcredential) | Creates a credential asset. This cmdlet is part of the default Azure module. See [Default modules](modules.md#default-modules).|
4343

4444
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).
4545

@@ -89,7 +89,7 @@ The following example shows how to create a new Automation credential asset. A `
8989
$user = "MyDomain\MyUser"
9090
$pw = ConvertTo-SecureString "PassWord!" -AsPlainText -Force
9191
$cred = New-Object –TypeName System.Management.Automation.PSCredential –ArgumentList $user, $pw
92-
New-AzureAutomationCredential -AutomationAccountName "MyAutomationAccount" -Name "MyCredential" -Value $cred
92+
New-AzAutomationCredential -ResourceGroupName "MyResourceGroup" -AutomationAccountName "MyAutomationAccount" -Name "MyCredential" -Value $cred
9393
```
9494

9595
## Get a credential asset

articles/azure-netapp-files/azure-government.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ When you connect to Azure Government through PowerShell, you must specify an env
7676
| [Azure](/powershell/module/az.accounts/Connect-AzAccount) commands | `Connect-AzAccount -EnvironmentName AzureUSGovernment` |
7777
| [Microsoft Graph PowerShell](/powershell/microsoftgraph/authentication-commands) | `Connect-MgGraph -Environment USGov` |
7878
| [Microsoft Entra PowerShell](/powershell/entra-powershell/authentication-scenarios) | `Connect-Entra -Environment USGov` |
79-
| [Azure (Classic deployment model)](/powershell/module/servicemanagement/azure/add-azureaccount) commands | `Add-AzureAccount -Environment AzureUSGovernment` |
79+
| Azure (Classic deployment model) commands | `Add-AzureAccount -Environment AzureUSGovernment` |
8080
| [Microsoft Entra ID (Classic deployment model)](/previous-versions/azure/jj151815(v=azure.100)) commands | `Connect-MsolService -AzureEnvironment UsGovernment` |
8181

8282
For more information, see [Connect to Azure Government with PowerShell](../azure-government/documentation-government-get-started-connect-with-ps.md).

articles/cloud-services-extended-support/in-place-migration-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Planning is the most important step for a successful migration experience. Revie
2626
## Install the latest version of PowerShell
2727
There are two main options to install Azure PowerShell: [PowerShell Gallery](https://www.powershellgallery.com/profiles/azure-sdk/) or [Web Platform Installer (WebPI)](https://aka.ms/webpi-azps). WebPI receives monthly updates. PowerShell Gallery receives updates on a continuous basis. This article is based on Azure PowerShell version 2.1.0.
2828

29-
For installation instructions, see [How to install and configure Azure PowerShell](/powershell/azure/servicemanagement/install-azure-ps?preserve-view=true&view=azuresmps-4.0.0).
29+
For installation instructions, see [How to install and configure Azure PowerShell](https://www.powershellgallery.com/packages/Azure/).
3030

3131
## Ensure Admin permissions
3232
To perform this migration, you must be added as a coadministrator for the subscription in the [Azure portal](https://portal.azure.com).

articles/cloud-services-extended-support/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The major differences between Cloud Services (classic) and Cloud Services (exten
5151

5252
## Migration to Azure Resource Manager
5353

54-
Cloud Services (extended support) provides two paths for you to migrate from [Azure Service Manager](/powershell/azure/servicemanagement/overview) to [Azure Resource Manager](../azure-resource-manager/management/overview.md).
54+
Cloud Services (extended support) provides two paths for you to migrate from Azure Service Manager to [Azure Resource Manager](../azure-resource-manager/management/overview.md).
5555
1) Customers deploy cloud services directly in Azure Resource Manager and then delete the old cloud service in Azure Service Manager.
5656
2) In-place migration supports the ability to migrate Cloud Services (classic) with minimal to no downtime to Cloud Services (extended support).
5757

articles/cost-management-billing/.openpublishing.redirection.cost-management-billing.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,12 +307,12 @@
307307
},
308308
{
309309
"source_path_from_root": "/articles/billing/billing-export-subscriptions.md",
310-
"redirect_url": "/powershell/module/servicemanagement/azure.service/get-azuresubscription",
310+
"redirect_url": "/powershell/module/az.accounts/get-azsubscription",
311311
"redirect_document_id": false
312312
},
313313
{
314314
"source_path_from_root": "/articles/cost-management-billing/manage/billing-export-subscriptions.md",
315-
"redirect_url": "/powershell/module/servicemanagement/azure.service/get-azuresubscription",
315+
"redirect_url": "/powershell/module/az.accounts/get-azsubscription",
316316
"redirect_document_id": false
317317
},
318318
{

articles/expressroute/expressroute-about-virtual-network-gateways.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ For technical resources and specific syntax requirements when using REST APIs an
139139

140140
| Classic | Resource Manager |
141141
| --- | --- |
142-
| [PowerShell](/powershell/module/servicemanagement/azure) |[PowerShell](/powershell/module/az.network#networking) |
142+
| [PowerShell](https://www.powershellgallery.com/packages/Azure/) |[PowerShell](/powershell/module/az.network#networking) |
143143
| [REST API](/previous-versions/azure/reference/jj154113(v=azure.100)) |[REST API](/rest/api/virtual-network/) |
144144

145145
## Virtual network-to-virtual network connectivity

0 commit comments

Comments
 (0)