私はあなたにいくつかのことを提案します-
を。ほとんどの場合、[ASSET] タブに移動し、適切な Windows PowerShell 資格情報を追加します (単に、Azure ポータルへのログインに使用するのと同じユーザー名とパスワードを使用できます)。
b. Runbook にコードを追加します。PowerShell 自動化資格情報名が StartVM で、サブスクリプション名が xxx であるとします。この場合、ワークフローは次のようになります。
workflow StartVM
{
$Cred = Get-AutomationPSCredential -Name
StartVM' Add-AzureAccount -Credential $Cred
Select-AzureSubscription -SubscriptionName “xxx”
inlineScript
{
Start-AzureVM -Name TestServer -ServiceName CS12345
}
}
c. この後、必要に応じて Runbook をスケジュールできます。
これがあなたを助けることを願っています-
http://azure.microsoft.com/blog/2014/11/25/introducing-the-azure-automation-script-converter/ http://azure.microsoft.com/en-us/documentation/articles/automation-サンプルからランブックを作成/
ありがとう。