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
## Start-AzAutomationRunbook fails with runbookName does not match expected pattern error message
16
16
17
17
### Issue
18
-
When you run `Start-AzAutomationRunbook` to start specific runbooks it fails with the following error -
18
+
When you run `Start-AzAutomationRunbook` to start specific runbooks, it fails with the following error -
19
+
19
20
`*runbookName does not match expected pattern '^[a-zA-Z]*-*[a-zA-Z0-9]*`
20
21
21
22
```powershell
@@ -24,13 +25,13 @@ When you run `Start-AzAutomationRunbook` to start specific runbooks it fails wit
24
25
25
26
## Cause
26
27
27
-
Code that was introduced in [1.9.0 version](https://www.powershellgallery.com/packages/Az.Automation/1.9.0) of the Az.Automation module verifies the names of the runbooks to start and incorrectly flags runbooks with multiple "-" characters, or with an "_" character in the name as invalid.
28
+
Code that was introduced in [1.9.0 version](https://www.powershellgallery.com/packages/Az.Automation/1.9.0) of the Az.Automation module verifies the names of the runbooks to start and incorrectly flags runbooks with multiple "-" characters or with an "_" character in the name as invalid.
28
29
29
30
## Workaround
30
31
We recommend that you revert to [1.8.0 version](https://www.powershellgallery.com/packages/Az.Automation/1.8.0) of the module.
31
32
32
33
## Resolution
33
-
We plan to deploy a fix to address this issue.
34
+
Currently, we are working to deploy a fix to address this issue.
0 commit comments