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/automation/automation-connections.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ Azure Automation makes the following built-in connection types available:
35
35
36
36
In most cases, you don't need to create a connection resource because it is created when you create a [Run As account](manage-runas-account.md).
37
37
38
-
## Windows PowerShell cmdlets to access connections
38
+
## PowerShell cmdlets to access connections
39
39
40
-
The cmdlets in the following table create and manage Automation connections with Windows PowerShell. They ship as part of the [Az modules](shared-resources/modules.md#az-modules).
40
+
The cmdlets in the following table create and manage Automation connections with PowerShell. They ship as part of the [Az modules](shared-resources/modules.md#az-modules).
Copy file name to clipboardExpand all lines: articles/automation/graphical-runbook-sdk.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.topic: conceptual
13
13
14
14
## Prerequisites
15
15
16
-
Import the `Microsoft.Azure.Management.Automation.GraphicalRunbook.Model` package into your project.
16
+
Import the [Microsoft.Azure.Management.Automation.Models](https://docs.microsoft.com/dotnet/api/microsoft.azure.management.automation.models?view=azure-dotnet) package into your project.
Copy file name to clipboardExpand all lines: articles/automation/shared-resources/certificates.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ Certificates are stored securely in Azure Automation for access by runbooks and
21
21
>[!NOTE]
22
22
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell Module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version using [How to update Azure PowerShell modules in Azure Automation](../automation-update-azure-modules.md).
23
23
24
-
## Windows PowerShell cmdlets to access certificates
24
+
## PowerShell cmdlets to access certificates
25
25
26
-
The cmdlets in the following table create and manage Automation certificates with Windows PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
26
+
The cmdlets in the following table create and manage Automation certificates with PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
## Windows PowerShell cmdlets used to access credentials
26
+
## PowerShell cmdlets used to access credentials
27
27
28
-
The cmdlets in the following table create and manage Automation credentials with Windows PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
28
+
The cmdlets in the following table create and manage Automation credentials with PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
Copy file name to clipboardExpand all lines: articles/automation/shared-resources/modules.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,15 +112,15 @@ This section includes considerations to take into account when migrating to the
112
112
113
113
We don't recommend running AzureRM modules and Az modules in the same Automation account. When you're sure you want to migrate from AzureRM to Az, it's best to fully commit to a complete migration. The most important reason for this is that Azure Automation often reuses sandboxes within the Automation account to save on startup times. If you don't make a full module migration, you might start a job using only AzureRM modules, then start another job using only Az modules. The sandbox soon crashes and you receive a fatal error stating that the modules aren’t compatible. This situation results in randomly occurring crashes for any given runbook or configuration.
114
114
115
-
#### Import of Az modules into the PowerShell session
115
+
#### Importing Az modules into the PowerShell session
116
116
117
117
Importing an Az module into your Automation account doesn't automatically import the module into the PowerShell session that runbooks use. Modules are imported into the PowerShell session in the following situations:
118
118
119
119
* When a runbook invokes a cmdlet from a module
120
120
* When a runbook imports the module explicitly with the [Import-Module](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/import-module?view=powershell-7) cmdlet
121
121
* When a runbook imports another dependent module
122
122
123
-
#### Testing for your runbooks and DSC configurations prior to module migration
123
+
#### Testing your runbooks and DSC configurations prior to module migration
124
124
125
125
Be sure to test all runbooks and DSC configurations carefully in a separate Automation account before migrating to the Az modules.
126
126
@@ -304,7 +304,7 @@ Your module should not depend on any unique registry settings on a host. Example
304
304
305
305
Make sure that all files in the module have paths with fewer than 140 characters. Any paths over 140 characters in length cause issues with importing runbooks. Azure Automation can't import a file with path size over 140 characters into the PowerShell session with `Import-Module`.
306
306
307
-
## Importing modules
307
+
## Import modules
308
308
309
309
This section defines several ways that you can import a module into your Automation account.
310
310
@@ -355,7 +355,7 @@ To import a PowerShell Gallery module directly from your Automation account:
355
355
356
356

357
357
358
-
## Deleting modules
358
+
## Delete modules
359
359
360
360
If you have issues with a module or you need to roll back to a previous version of a module, you can delete it from your Automation account. You can't delete the original versions of the [default modules](#default-modules) that are imported when you create an Automation account. If the module to delete is a newer version of one of the [default modules](#default-modules), it rolls back to the version that was installed with your Automation account. Otherwise, any module you delete from your Automation account is removed.
Copy file name to clipboardExpand all lines: articles/automation/shared-resources/schedules.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ To schedule a runbook in Azure Automation to start at a specified time, you link
21
21
>[!NOTE]
22
22
>This article has been updated to use the new Azure PowerShell Az module. You can still use the AzureRM module, which will continue to receive bug fixes until at least December 2020. To learn more about the new Az module and AzureRM compatibility, see [Introducing the new Azure PowerShell Az module](https://docs.microsoft.com/powershell/azure/new-azureps-module-az?view=azps-3.5.0). For Az module installation instructions on your Hybrid Runbook Worker, see [Install the Azure PowerShell module](https://docs.microsoft.com/powershell/azure/install-az-ps?view=azps-3.5.0). For your Automation account, you can update your modules to the latest version by using [How to update Azure PowerShell modules in Azure Automation](../automation-update-azure-modules.md).
23
23
24
-
## Windows PowerShell cmdlets used to access schedules
24
+
## PowerShell cmdlets used to access schedules
25
25
26
-
The cmdlets in the following table create and manage Automation schedules with Windows PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
26
+
The cmdlets in the following table create and manage Automation schedules with PowerShell. They ship as part of the [Az modules](modules.md#az-modules).indows
Copy file name to clipboardExpand all lines: articles/automation/shared-resources/variables.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,9 +51,9 @@ You can store multiple values to a single variable by creating an array or hasht
51
51
>[!NOTE]
52
52
>VM name variables can be a maximum of 80 characters. Resource group variables can be a maximum of 90 characters. See [Naming rules and restrictions for Azure resources](https://docs.microsoft.com/azure/azure-resource-manager/management/resource-name-rules).
53
53
54
-
## Windows PowerShell cmdlets to manage variables
54
+
## PowerShell cmdlets to access variables
55
55
56
-
The cmdlets in the following table create and manage Automation variables with Windows PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
56
+
The cmdlets in the following table create and manage Automation variables with PowerShell. They ship as part of the [Az modules](modules.md#az-modules).
0 commit comments