Which Power Shell cmdlet should you use?

You manage a cloud service on two instances. The service name is Service1 and the role name is ServiceRole1.Service1 has performance issues during heavy traffic periods.You need to increase the existing deployment of Service1 to three instances. Which Power Shell cmdlet should you use?ServiceRolelThe Set-AzureRole cmdlet sets the number of instances of a specified role to run in an Azure deployment.References: https://docs.microsoft.com/en-us/powershell/module/Azure/Set- AzureRole?view=azuresmps-4.0.0

Question:

Which Power Shell cmdlet should you use?

Options:

PS C:>Set-AzureService -ServiceName “Service1” -Label “ServiceRole1′ -Description “Instance count=3”

PS C:>Set-AzureRole -ServiceName “Service1” -Slot “Production” -RoleName “ServiceRole1” -Count

PS C:>Add-AzureWebRole -Name “ServiceRole1” -Instances 3

PS C:> Sinstancecount = New-Object Hashtable$settings[‘INSTANCECOUNT=3] PS C:> Set- AzureWebsite -AppSettings $instancecount

Correct Answer

The Correct Answer for this Question is

PS C:>Set-AzureRole -ServiceName “Service1” -Slot “Production” -RoleName “ServiceRole1” -Count

Leave a Comment