Pulling a single entity in Storage Table

Following the piece of code uses TableOperation to specify the customer 'Tariq Younas'. This method returns just one entity rather than a collection, and the returned value in TableResult.A result is a CustomerEntity object.



Azure Infrastructure Services at ICA

Today i had a session on Azure Infrastructure Services with the focus (VNet, Storage &Traffic Manger) held at International College of Auckland.
Students were keen to learn about Microsoft Azure IaaS concepts and demo. The main focus of the session was to show them demo how to take the real benefit of Azure IaaS services in practical scenarios. They came to know about Azure resources and certifications as well.








Mind-blowing (Azure Cloud Shell) on Azure Portal

The mind-blowing new feature of Azure Portal Azure Cloud Shell provides browser-based shell experience has been announced by Microsoft in Microsoft Build 2017.
A long awaiting feature finally pushed at Azure Portal. Thank you, Microsoft. It’s really very good attractions for developers also. PowerShell support coming soon as highlighted in the last image.


2. Click on highlighted “>_” as shown below



3. Here is another prompt to select the Subscription (Production, Test etc). In my case it is Pay-As-You-Go




4. After you select there you can see the Command Line :)



At the moment its supporting only Bash. PowerShell coming soon:)


ARM Templates deployment Using CLI 2.0


Following are steps to use CLI 2.0

1. Goto command prompt



2. Type for Login



3. Copy and past the following link in Internet Explorer and put the code shown below




4. Set the subscription for example : Production/Preprod or Test etc.

5. First validate the template

6. Start deployment of deployment of template


above # 5 and 6 commands are almost same other than create --name SPdeployment which is deployment name.



az login

az account set -s preprod

az group deployment validate --resource-group rg-ae-sharepoint --template-file sp-template.json --parameters @sp-parameters-preprod.json

az group deployment create --name SPdeployment --resource-group rg-ae-sharepoint --template-file sp-template.json --parameters @sp-parameters-preprod.json