Skip to content

Commit d7cd971

Browse files
Indentation fix
1 parent 407012d commit d7cd971

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/automation/troubleshoot/runbooks.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To improve the security posture of Graphical PowerShell Workflow runbooks, the s
2323

2424
Workaround is to use Start-AzAutomationRunbook (from [Az.Automation module](/powershell/module/Az.Automation/Start-AzAutomationRunbook)) from within the parent runbook to start child runbook. For example, use the InlineScript block:
2525

26-
26+
```
2727
2828
$job = Start-AzAutomationRunbook `
2929
@@ -45,6 +45,8 @@ do {
4545
4646
$jobStatus = Get-AzAutomationJob -Id $job.Id -AutomationAccountName "MyAccount" -ResourceGroupName "MyRG"} while ($jobStatus.Status -ne "Completed")
4747
48+
```
49+
4850
## It is no longer possible to use cmdlets from imported non-default modules in graphical PowerShell runbooks
4951

5052
### Issue

0 commit comments

Comments
 (0)