Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can one create a Virtual Machine in Powershell?



How can one create a Virtual Machine in Powershell?..

Answer / wipro123

VM creation using Powershell:

1) create resource:
New-AzResourceGroup -Name myResourceGroup -Location EastUS

2) create to VM:
New-AzVm `
-ResourceGroupName "myResourceGroup" `
-Name "myVM" `
-Location "East US" `
-VirtualNetworkName "myVnet" `
-SubnetName "mySubnet" `
-SecurityGroupName "myNetworkSecurityGroup" `
-PublicIpAddressName "myPublicIpAddress" `
-OpenPorts 80,3389
3) connect to VM:
Get-AzPublicIpAddress -ResourceGroupName "myResourceGroup" | Select "IpAddress"

4)find out the Public IP:
mstsc /v:publicIpAddress

5) Install IIS:
Install-WindowsFeature -name Web-Server -IncludeManagementTools

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Microsoft Azure Interview Questions

What is meant by the command task?

0 Answers  


What is worker role in windows azure and how does it help?

0 Answers  


Differentiate between the repository and the powerhouse server?

0 Answers  


You want to manage the azure ad connect sync process, which tool will you use for the same?

0 Answers  


What is meant by Microsoft Azure and Azure diagnostic?

0 Answers  


How to deploy the custom image?

0 Answers  


Explain VNet?

0 Answers  


What is Microsoft Azure and why is it used?

0 Answers  


Why doesn’t azure redis cache has an msdn class library reference like some of the other azure services?

0 Answers  


What do you mean by lookup transformation?

0 Answers  


Name two blobs used in microsoft azure?

0 Answers  


What is windows azure active directory?

0 Answers  


Categories