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
description: This article describes the types of runbooks that you can use in Azure Automation and considerations for determining which type to use.
4
4
services: automation
5
5
ms.subservice: process-automation
6
-
ms.date: 03/29/2023
6
+
ms.date: 04/04/2023
7
7
ms.topic: conceptual
8
8
ms.custom: references_regions
9
9
---
@@ -69,6 +69,20 @@ The following are the current limitations and known issues with PowerShell runbo
69
69
70
70
**Known issues**
71
71
72
+
* When you use *ExchangeOnlineManagement* module version: 3.0.0 or higher, you can experience errors. To resolve the issue, ensure that you explicitly upload *PowerShellGet* and *PackageManagement* modules.
73
+
* When you use *New-item* cmdlet, jobs might be suspended. To resolve the issue, follow the mitigation steps:
74
+
1. Consume the output of `new-item`cmdlet in a variable and **do not** write it to the output stream using the write-output.
75
+
- You can use debug or progress stream after you enable it from **Logging and Tracing** setting of the runbook.
1. You can upgrade your runbooks to PS7.1 or PS7.2 where the same runbook will work as expected.
72
86
* PowerShell runbooks can't retrieve an unencrypted [variable asset](./shared-resources/variables.md) with a null value.
73
87
* PowerShell runbooks can't retrieve a variable asset with `*~*` in the name.
74
88
* A [Get-Process](/powershell/module/microsoft.powershell.management/get-process) operation in a loop in a PowerShell runbook can crash after about 80 iterations.
@@ -92,6 +106,7 @@ The following are the current limitations and known issues with PowerShell runbo
92
106
93
107
**Known issues**
94
108
109
+
- When you use *ExchangeOnlineManagement* module version: 3.0.0 or higher, you can experience job failures. We recommend that you use *ExchangeOnlineManagement* module version: 3.0.0 or less.
95
110
- Executing child scripts using `.\child-runbook.ps1` isn't supported in this preview.
96
111
**Workaround**: Use `Start-AutomationRunbook` (internal cmdlet) or `Start-AzAutomationRunbook` (from *Az.Automation* module) to start another runbook from parent runbook.
97
112
- Runbook properties defining logging preference is not supported in PowerShell 7 runtime.
@@ -128,6 +143,7 @@ The following are the current limitations and known issues with PowerShell runbo
128
143
129
144
**Known issues**
130
145
146
+
- When you use *ExchangeOnlineManagement* module version: 3.0.0 or higher, you can experience errors. To resolve the issue, ensure that you explicitly upload *PowerShellGet* and *PackageManagement* modules.
131
147
- Executing child scripts using `.\child-runbook.ps1` is not supported in this preview.
132
148
**Workaround**: Use `Start-AutomationRunbook` (internal cmdlet) or `Start-AzAutomationRunbook` (from *Az.Automation* module) to start another runbook from parent runbook.
133
149
- Runbook properties defining logging preference is not supported in PowerShell 7 runtime.
0 commit comments