共用方式為


New-AzureAutomationSchedule

建立自動化排程。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

New-AzureAutomationSchedule
   -Name <String>
   -StartTime <DateTimeOffset>
   [-Description <String>]
   [-ExpiryTime <DateTimeOffset>]
   -DayInterval <Byte>
   -AutomationAccountName <String>
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]
New-AzureAutomationSchedule
   -Name <String>
   -StartTime <DateTimeOffset>
   [-Description <String>]
   [-OneTime]
   -AutomationAccountName <String>
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]
New-AzureAutomationSchedule
   -Name <String>
   -StartTime <DateTimeOffset>
   [-Description <String>]
   [-ExpiryTime <DateTimeOffset>]
   -HourInterval <Byte>
   -AutomationAccountName <String>
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

重要

自 2020 年 01 月 23 日起,此適用於 Azure 自動化 的 PowerShell 命令已較長支援。 Azure 服務管理模型已被取代為 Azure 自動化,並在該日期停用。 請使用在 Az.Automation支援 Azure 資源管理模型的命令。

New-AzureAutomationSchedule Cmdlet 會在 Microsoft Azure 自動化 中建立排程。

範例

範例 1:建立一次性排程

PS C:\> New-AzureAutomationSchedule -AutomationAccountName "Contoso17" -Name "Schedule01" -StartTime "23:00" -OneTime

下列命令會建立在目前日期下午 11:00 執行一次的排程。

範例 2:建立週期性排程

PS C:\> $StartTime = Get-Date "13:00:00"
PS C:\> $EndTime = $StartTime.AddYears(1)
PS C:\> New-AzureAutomationSchedule -AutomationAccountName "Contoso17" -Name "Schedule02" -StartTime $StartTime -ExpiryTime $EndTime -DailyInterval 1

下列命令會建立新的排程,從目前日期開始,每天下午 1:00 執行一年。

參數

-AutomationAccountName

指定自動化帳戶的名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DayInterval

指定排程的間隔,以天為單位。

類型:Byte
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Description

指定描述。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-ExpiryTime

指定排程的到期時間。 如果字串可以轉換成有效的 DateTime,則可以提供字串。

類型:DateTimeOffset
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HourInterval

指定排程的間隔,以小時為單位。

類型:Byte
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Name

指定排程的名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-OneTime

表示這項作業會建立一次性排程。

類型:SwitchParameter
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Profile

指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。

類型:AzureSMProfile
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-StartTime

指定排程的開始時間。 如果字串可以轉換成有效的 DateTime,則可以提供字串。

類型:DateTimeOffset
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

輸出

Schedule