最近、定期的に実行されるスケジュールスケジュールが作成されました。 スケジュールの作成は完璧でした。 私は毎週実行される特定のスケジュールを持つAzure Runbookスケジュールリストを取得するとエラーが発生する
Get-AzureAutomationSchedule -AutomationAccountName $automationAccountName
i get an error message:
Get-AzureAutomationSchedule : Nie można znaleźć żądanej wartości 'Week'. (The value 'Week' could not be found)
+ Get-AzureAutomationSchedule -AutomationAccountName $automationAccoun ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Get-AzureAutomationSchedule], ArgumentException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.Automation.Cmdlet.GetAzureAutomationSchedule
PowerShellコマンドレットを使用して、すべてのランブックスケジュールのリストを取得したいとき、私は、この特定のスケジュールを削除する場合が利用できるスケジュールの完全な一覧が表示されます。
私は時間別/日常的に実行されるよりもスケジュールがあり、そのような問題は発生しません。
ご協力いただければ幸いです。
Get-AzureRmAutomationSchedule -Name name_of_the_failing_schedule
のコマンドを@ 4c74356b41の提案に従って実行した後、同じエラーメッセージが表示されます。 uはデバッグモードでコマンドレットを実行した後、HTTPレスポンスのボディを見ることができます下
{
"id": "/subscriptions/XXXXXXXXX",
"name": "orphaned objects",
"properties": {
"description": "",
"startTime": "2016-11-28T09:00:00+01:00",
"startTimeOffsetMinutes": 0.0,
"expiryTime": "9999-12-31T23:59:59.9999999+01:00",
"expiryTimeOffsetMinutes": 0.0,
"isEnabled": true,
"nextRun": "2016-11-28T09:00:00+01:00",
"nextRunOffsetMinutes": 0.0,
"interval": 1,
"frequency": "Week",
"creationTime": "2016-11-22T10:41:49.433+01:00",
"lastModifiedTime": "2016-11-22T10:41:49.433+01:00",
"timeZone": "UTC",
"advancedSchedule": {
"monthDays": null,
"monthlyOccurrences": null,
"weekDays": [
"Monday"
]
}
}
'Get-AzureAutomationSchedule -AutomationAccountName $ automationAccountName -debug'の出力は何ですか? – 4c74356b41
デバッグモードでは、HTTP応答セクションでは、指定されたスケジュールの詳細が本文に表示されますが、実行は同じエラーメッセージで終了します。 (**値 'Week'は見つかりませんでした**) – qbas1409
'Get-AzureRmAutomationSchedule -Name name_of_the_failing_schedule'を試してみませんか? – 4c74356b41