PowerShell & CLI cmdlets Flashcards

1
Q

PS: Login to Azure

A

Login-AzureRmAccount

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

PS: Create Resource Group

A

New-AzureRmResourceGroup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

PS: Create Subnet

A

New-AzureRmVirtualNetworkSubnetConfig

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

PS: Create Virtual Network

A

New-AzureRmVirtualNetwork

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

PS: Create Public IP

A

New-AzureRmPublicIpAddress

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

PS: Create Network Security Rule

A

New-AzureRmNetworkSecurityRuleConfig

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

PS: Create Network Security Group

A

New-AzureRmNetworkSecurityGroup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

PS: Create Virtual Network Card/Interface

A

New-AzureRmNetworkInterface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

PS: Create a Virtual Machine

A

New-AzureRmVM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

PS: Create Network Load Balancer

A

New-AzureRmLoadBalancer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

PS: Specify the template to create the new VM from

A

Set-AzureRmVMSourceImage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

PS: Specify the operating system of the new VM

A

Set-AzureRmVMOperatingSystem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

PS: Create and App Service Plan

A

New-AzureRmAppServicePlan

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

PS: Create a new Web App

A

New-AzureRmWebApp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

PS: List Resource running in Azure

A

Get-AzureRmResource

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

PS: Delete a Resource Group

A

Remove-AzureRmResourceGroup

17
Q

PS: Delete a VM

A

Remove-AzureRmVM

18
Q

PS: List Azure Subscriptions

A

Get-AzureRmSubscription

19
Q

CLI: Log into Azure Account

A

az login

20
Q

CLI: Create a Resource Group

A

az group create

21
Q

CLI: Deploy a template

A

az group deployment create