Skip to content

Commit bd41b92

Browse files
committed
minor edit
1 parent 3da55c7 commit bd41b92

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

articles/automation/automation-runbook-types.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ The following are the current limitations and known issues with PowerShell runbo
6969

7070
**Known issues**
7171

72-
* Ensure to import the **Newtonsoft.Json** v10 module explicitly if PowerShell 5.1 runbooks have a dependency on this version of the module.
7372
* PowerShell runbooks can't retrieve an unencrypted [variable asset](./shared-resources/variables.md) with a null value.
7473
* PowerShell runbooks can't retrieve a variable asset with `*~*` in the name.
7574
* A [Get-Process](/powershell/module/microsoft.powershell.management/get-process) operation in a loop in a PowerShell runbook can crash after about 80 iterations.
@@ -88,7 +87,7 @@ The following are the current limitations and known issues with PowerShell runbo
8887
if($item) { write-output "File Created" }
8988
```
9089
1. You can also upgrade your runbooks to PowerShell 7.1 or PowerShell 7.2 where the same runbook will work as expected.
91-
90+
* Ensure to import the **Newtonsoft.Json** v10 module explicitly if PowerShell 5.1 runbooks have a dependency on this version of the module.
9291
9392
# [PowerShell 7.1 (preview)](#tab/lps71)
9493
@@ -107,7 +106,6 @@ The following are the current limitations and known issues with PowerShell runbo
107106
108107
**Known issues**
109108
110-
- Ensure to import the **Newtonsoft.Json** v10 module explicitly if PowerShell 7.1 runbooks have a dependency on this version of the module.
111109
- Executing child scripts using `.\child-runbook.ps1` isn't supported in this preview.
112110
**Workaround**: Use `Start-AutomationRunbook` (internal cmdlet) or `Start-AzAutomationRunbook` (from `Az.Automation` module) to start another runbook from parent runbook.
113111
- Runbook properties defining logging preference isn't supported in PowerShell 7 runtime.
@@ -120,11 +118,10 @@ The following are the current limitations and known issues with PowerShell runbo
120118
```
121119
- Avoid importing `Az.Accounts` module to version 2.4.0 version for PowerShell 7 runtime as there can be an unexpected behavior using this version in Azure Automation.
122120
- You might encounter formatting problems with error output streams for the job running in PowerShell 7 runtime.
123-
124121
- When you import a PowerShell 7.1 module that's dependent on other modules, you may find that the import button is gray even when PowerShell 7.1 version of the dependent module is installed. For example, Az PowerShell module.Compute version 4.20.0, has a dependency on Az.Accounts being >= 2.6.0. This issue occurs when an equivalent dependent module in PowerShell 5.1 doesn't meet the version requirements. For example, 5.1 version of Az.Accounts were < 2.6.0.
125-
126122
- When you start PowerShell 7 runbook using the webhook, it auto-converts the webhook input parameter to an invalid JSON.
127123
- We recommend that you use [ExchangeOnlineManagement](https://learn.microsoft.com/powershell/exchange/exchange-online-powershell?view=exchange-ps) module version: 3.0.0 or lower because version: 3.0.0 or higher may lead to job failures.
124+
- Ensure to import the **Newtonsoft.Json** v10 module explicitly if PowerShell 7.1 runbooks have a dependency on this version of the module.
128125
129126
130127
# [PowerShell 7.2 (preview)](#tab/lps72)

0 commit comments

Comments
 (0)