Hi folks!Great to see you again.This blog post is purely based on Azure Blob Storage: The PowerShell way!In this blog post, I will1. Create a New Azure ResourceGroup2. Create a Storage account3. Create a New Container inside the Blob Storage of Storage Account.4. Upload a text file from your current machine to Azure container using AzCopy. Please Follow the Steps Below: #Create a New Azure S...
Read More
Hi Folks,In this Blog Post we will learn how to create an Azure ARM Virtual Machine using Azure PowerShell.For this, you will need an Azure Subscription and machine with Latest Azure PowerShell installed. 1. Run the following script in Azure Powershell: //Replace MyName with YourName everywhere. Login-AzureRmAccount $locName = "Central US" $rgName = "MyName-RG" $vnetName = "MyName-VNET" #Getting the Storage Acc...
Read More
Configure a Point-to-Site connectivity to a VNet using PowerShell (ARM Mode)Task 1: Create a Self-Signed certificate 1. Login to your Visual Studio Virtual Machine using your credentials. Create a folder C:\P2S Certificates. 2. Navigate to C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Visual Studio 2012\Visual Studio Tools and Run VS2012 x64 Cross Tools Command Prompt as an administrator. 3. ...
Read More
Hello Folks!In this Blog post, we will try to learn how to create an Azure V-Net using an ARM template. I have divided the post into two tasks. Please follow the steps to complete the deployment.Task 1: Download the Template from GitHub 1. Open the internet explorer and type https://github.com/Azure/azure-quickstart-templates/tree/master/101-vnet-two-subnets 2. Click azuredeploy.json, and then click RAW. 3. ...
Read More
Hello Folks!In this blog post we will be talking about locking down your Azure Resources with Azure Resource Manager. This tutorial might come handy to you when you want your resources to be safe from getting accidentally deleted. You can lock almost any type of resource using this method be it Virtual Machines, Web Apps, NICs, Resource Groups, etc. When locked, authorized users can still read and modify the resources, but they can't delete the resources.Pre-RequirementsI will assume you hav...
Read More
Howdy Folks!I was exploring Network Load Balancer in Azure Resource Manager and found out that you can also create an Internet Facing Load Balancer using Azure Portal. In this blog, I will show you How to create an External Load balancer using Azure Resource Manager. We will create two load balanced web-servers publically accessible through a common IP address. This IP address will be provided to the Internet facing load balancer that we will create in this blo...
Read More