1

我正在尝试为我的虚拟机创建启动/停止计划。简单的时间表:

上午 10 点开始,下午 5 点停止,周末不要跑步

试图创建这个自动时间表正在变成一场噩梦!我没有时间学习 PowerShell。

我通过自动化门户研究了这样做。我已经通过存储库导入了一个脚本。

"Name of Script: Scheduled Virtual Machine Shutdown/Startup by Automys" 

正如 Azure 门户中所示:

"assert-autoshutdownshedule."

我现在需要编辑这个脚本。

我在哪里/如何输入我的凭据/参数?需要改变什么?

4

1 回答 1

0

在 azure 门户中创建 Run as Automation 帐户,然后将以下脚本导入您的 Runbook。

if(-not (@('Saturday', 'Sunday') -contains (Get-Date).DayOfWeek)) #skip execution if the day of week is Saturday or Sunday
{

$cred = Get-AutomationPSCredential -Name "Your Automation Account"
Login-AzureRmAccount -Credential $cred
Get-AzureRmSubscription 
Select-AzureRmSubscription -SubscriptionName "Your Subscription Name"

Start-AzureRmVM -Name "VM001" -ResourceGroupName "Your Resource group" -ErrorAction Continue -Force





}

一切顺利 :)

让我知道这是否有效

于 2016-04-26T06:19:14.757 回答