Skip to content

Commit 2a4b0e6

Browse files
committed
fixed warning
1 parent d635efc commit 2a4b0e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/automation/automation-runbook-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The following are the current limitations and known issues with PowerShell runbo
7373
* PowerShell runbooks can't retrieve a variable asset with `*~*` in the name.
7474
* A [Get-Process](/powershell/module/microsoft.powershell.management/get-process) operation in a loop in a PowerShell runbook can crash after about 80 iterations.
7575
* A PowerShell runbook can fail if it tries to write a large amount of data to the output stream at once. You can typically work around this issue by having the runbook output just the information needed to work with large objects. For example, instead of using `Get-Process` with no limitations, you can have the cmdlet output just the required parameters as in `Get-Process | Select ProcessName, CPU`.
76-
* When you use [ExchangeOnlineManagement](https://learn.microsoft.com/powershell/exchange/exchange-online-powershell?view=exchange-ps) module version: 3.0.0 or higher, you may experience errors. To resolve the issue, ensure that you explicitly upload [PowerShellGet](https://learn.microsoft.com/en-us/powershell/module/powershellget/?view=powershell-5.1) and [PackageManagement](https://learn.microsoft.com/en-us/powershell/module/packagemanagement/?view=powershell-5.1) modules as well.
76+
* When you use [ExchangeOnlineManagement](https://learn.microsoft.com/powershell/exchange/exchange-online-powershell?view=exchange-ps) module version: 3.0.0 or higher, you may experience errors. To resolve the issue, ensure that you explicitly upload [PowerShellGet](https://learn.microsoft.com/powershell/module/powershellget/?view=powershell-5.1) and [PackageManagement](https://learn.microsoft.com/powershell/module/packagemanagement/?view=powershell-5.1) modules as well.
7777
* When you use [New-item cmdlet](https://learn.microsoft.com/en-us/powershell/module/packagemanagement/?view=powershell-5.1), jobs might be suspended. To resolve the issue, follow the mitigation steps:
7878
1. Consume the output of `new-item` cmdlet in a variable and **do not** write it to the output stream using `write-output` command.
7979
- You can use debug or progress stream after you enable it from **Logging and Tracing** setting of the runbook.

0 commit comments

Comments
 (0)