• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back
Find Core capacity usage

Get-AzureSubscription -Current -ExtendedDetails |


select CurrentCoreCount, MaxCoreCount |


Format-List

Find osFamily and osVersion
Get-AzureOSVersion | Format-Table –auto "Family","FamilyLabel", "Version"

Obtain Cloud Service DNS URL


Get-AzureDeployment -ServiceName $csName -Slot Production | select Url


Obtain Cloud Service VIP


Get-AzureVM -ServiceName $csName | Get-AzureEndpoint | select Vip

Get reserved IP for Cloud Service

New-AzureReservedIP –ReservedIPName MyReservedIP –Location “Central US”


Create new Cloud Service

New-AzureService


-ServiceName "myexamtestcloudservice"


-Location "North Central US"


-Label "mytestcloudservice"

Display Azure Roles available
Get-AzureRoleSize | select InstanceSize, Cores, MemoryInMb
Display all Cloud Services

Get-AzureService

Display roles running within a Cloud Service
Get-AzureRole -ServiceName: darrenpritchard
Open RDP connection to role running inside of a Cloud Service

Get-AzureRemoteDesktopFile -ServiceName darrenpritchard -NameContosoAdsWeb_IN_0 -Launch

Deploy a Cloud Service project

Publish-AzureServiceProject


-Location $csLocation


-Slot "Production"


-Package $pathCSPKG


-Configuration $pathCSCFG


-DeploymentName $deployName

Create new Service Bus

New-AzureSBNamespace


-Name MyServiceBusName


-NamespaceType Messaging


-Location "North Europe"

Display Service Bus locations
Get-AzureSBLocation