diff --git a/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJobOutput.md b/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJobOutput.md index 4f40a65e5b5c..da14699a9d3e 100644 --- a/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJobOutput.md +++ b/src/Automation/Automation/help/Get-AzAutomationSourceControlSyncJobOutput.md @@ -30,8 +30,8 @@ This command gets the output of source control sync job with id 08d6d266-27b6-46 ```powershell Get-AzAutomationSourceControlSyncJobOutput -ResourceGroupName "rg1" ` -AutomationAccountName "devAccount" ` - -Name "VSTSNative" - -Id "08d6d266-27b6-463c-beea-bc48a67ace15" ` + -SourceControlName "VSTSNative" ` + -JobId "08d6d266-27b6-463c-beea-bc48a67ace15" ` -Stream Output | ForEach-Object {$_.summary} ``` ```output @@ -60,6 +60,9 @@ File is not a runbook: File size exceeds 1Mb: - RunbookD_GreatherThan1MB.ps1 + +Invalid runbook name: + - RunbookZ_ĈĦŕĬŞ.ps1 ``` ## PARAMETERS diff --git a/src/Automation/Automation/help/New-AzAutomationUpdateManagementAzureQuery.md b/src/Automation/Automation/help/New-AzAutomationUpdateManagementAzureQuery.md index 602695209055..172bd8941bff 100644 --- a/src/Automation/Automation/help/New-AzAutomationUpdateManagementAzureQuery.md +++ b/src/Automation/Automation/help/New-AzAutomationUpdateManagementAzureQuery.md @@ -53,7 +53,7 @@ $schedule = New-AzAutomationSchedule -ResourceGroupName "mygroup" ` New-AzAutomationSoftwareUpdateConfiguration -ResourceGroupName "mygroup" ` -AutomationAccountName "myaccount" ` -Schedule $schedule ` - -Windows ` + -Windows ` -AzureQuery $AzureQueries ` -IncludedUpdateClassification Critical ` -Duration $duration diff --git a/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md b/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md index 9cff8ebe7040..4334328c575a 100644 --- a/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md +++ b/src/Automation/Automation/help/Register-AzAutomationScheduledRunbook.md @@ -34,7 +34,7 @@ The runbook starts based on the schedule you specify using the *ScheduleName* pa ### Example 1: Associate a runbook with a schedule ```powershell -Register-AzAutomationScheduledRunbook -AutomationAccountName "Contoso17" -Name "Runbk01" -ScheduleName "Sched01" -ResourceGroupName "ResourceGroup01" +Register-AzAutomationScheduledRunbook -AutomationAccountName "Contoso17" -RunbookName "Runbk01" -ScheduleName "Sched01" -ResourceGroupName "ResourceGroup01" ``` This command associates the runbook named Runbk01 with the schedule named Sched01 in the Azure Automation account named Contoso17. diff --git a/src/Automation/Automation/help/Unregister-AzAutomationScheduledRunbook.md b/src/Automation/Automation/help/Unregister-AzAutomationScheduledRunbook.md index 2d92e8d80d64..0467d9aab0b5 100644 --- a/src/Automation/Automation/help/Unregister-AzAutomationScheduledRunbook.md +++ b/src/Automation/Automation/help/Unregister-AzAutomationScheduledRunbook.md @@ -35,7 +35,7 @@ The schedule no longer starts the runbook. ### Example 1: Remove the association between a runbook and a schedule ```powershell -Unregister-AzAutomationScheduledRunbook -AutomationAccountName "Contoso17" -Name "Runbk01" -ResourceGroupName "ResourceGroup01" -ScheduleName "Runbk01Sched" +Unregister-AzAutomationScheduledRunbook -AutomationAccountName "Contoso17" -RunbookName "Runbk01" -ResourceGroupName "ResourceGroup01" -ScheduleName "Runbk01Sched" ``` This command removes the association between the runbook named Runbk01 and the schedule named Runbk01Sched.