How to create a virtual machine with Powershell in simple way

Опубликовано: 29 Октябрь 2024
на канале: How2
63
2

In this video we will see how we can deploy a virtual machine with powershell in easy way .

Install Azure powershell module -
   • How to Install Azure Powershell Modul...  

Manage Azure subscription & Resourcegroup with Powershell-
   • How to Manage Azure Subscriptions and...  

Azure Cloudshell-
   • Azure Cloud Shell // How to Configure...  


For More - https://bit.ly/3hyK5aw

Direct access Pricing calculator Page -
https://azure.microsoft.com/en-us/pri...


How to create Azure FREE account WITHOUT Credit card -
   • How to Create Azure Free Account With...  

How to create Azure account in general way-
   • How to Create Azure free account || A...  

Create Azure Virtual machine-
   • How to create Azure Virtual Machine i...  


Azure Virtual network-
   • How to create Azure Virtual Network |...  


Create Azure Virtual machine using sandbox-
   • Create Azure Virtual machine using SA...  

Modify disk on Azure Virtual machine-
   • Modify Disk in Azure Virtual Machine ...  


Azure Powershell
Azure Powershell lab
Powershell tutorial
How to use powershell
deployment with powershell
azure resource management with powershell
azure lab
azure exam
azure administrator
az 104
az 400
az 305
az 900
azure administrator exam
PS command
Azure subscription
Azure resource group
cloudshel
azure storage
what is cloudshell
azure cloudshell
cloudshell powershell


script -------------------------------------------------------------------------------------------------

New-AzResourceGroup -Name TESTRG -Location CentralIndia

New-AzVm `
-ResourceGroupName "TESTRG" `
-Name "MYVM01" `
-Location "East US" `
-VirtualNetworkName "Myvnet" `
-SubnetName "Mysubnet" `
-SecurityGroupName "MyNSG" `
-PublicIpAddressName "MYPIP" `
-Size "Standard_B1s" `
-OpenPorts 80,139,3389

-----------------------------------------------------------------------------------------------------------------



#azurevm #deployazurevm #virtualmachines #azurevmss #createvirtualmachine #azurelab #azurexam