Skip to main content

Preparing for Azure Development Certification (70-532)

I've decided to get certified in AZURE, I'm aiming to get the MCSD certification which requires to pass 3 Exams:
  1. Developing Microsoft Azure Solutions 70-532
  2. Implementing Microsoft Azure Infrastructure Solutions 70-533
  3. Architecting Microsoft Azure Solutions 70-534
You can take the exams in the order you choose, in my case I've decided to take them in the order above.
My strategy:
I started by buying the recommended training books:



                       

After reading through the first book, I decided to take some mock tests, I quickly realised that the books are not sufficient :). Especially for 70-532. Therefor I decided to more studying online especially on the PowerShell cmdlets available to manage Azure Resources. As part of this effort I'm going to maintain in this blog a list of post for each set of PowerShell scripts, it is going to be a way to memorize it for me, and a way to have an inventory of PowerShell scripts for the reader.
So in this first post I'm going to go through the installation of Azure Resource Management Package and then the scripts to open a session (Authenticate):

Installing AzureRM:

In my case I'm running Windows 10 Home Edition. The detailed instructions could be found at this page, below the step I've followed:
1. First step open PowerShell ISE as Administrator
2. Run the following command: Install-Module AzureRM -AllowClobber
3. Run the following command: import-module azureRM

Authentication:

Now that you have installed AzureRM and imported the module, you can start using. First thing you need to do is to authenticate and if you have more than one subscriptions select the appropriate one:
1. Run this command: Login-AzureRmAccount
2. You will prompted to enter your login and password 
3. Now that you are authenticated you need to set the subscription by using the following command: 
                                 Select-AzureRmSubscription  -SubscriptionId <Your Subscription Id>


Now you can start playing around, first thing to do is to create a resource group, to group all the resources we are going to create (VMS, Virtual networks ....). This way you can delete all of them by just deleting the resource group.
Below the command to create a resource group:

New-AzureRmResourceGroup -Name 'ExamPrepResourceGroup' -Location 'westeurope'

In the next post we'll be exploring the scripts to create VMS.

Comments

Popular posts from this blog

Understanding Monte Carlo Simulation C#

This method has been introduced to resolve numerically complex physics problems, such as neutron diffusion, that were to complex for an analytical solution. This method is based on generating random values for parameters or inputs to explore the behaviour of complex systems, now this method is used in various domains like: Engineering, science and finance. These approaches tend to follow a particular pattern: 1- Define a domain of possible inputs. 2- Generate inputs randomly from the domain using a certain specified probability distribution. 3- Perform a deterministic computation using the inputs. 4- Aggregate the results of the individual computations into the final result. Here is an example of using Monte Carlo simulation to approximate the value of Pi: In this case we have 2 parameters x,y which defines a location in the plane (e.g The picture on the left). We will calculate the probability to have a point in the 1/4 Circle area, with a radius of 1. To calculate Pi we...

Full Text Search using Entity Framework

I've been working on a project where I needed to implement full time search on one table. My current solution was based on SQL Server db and Entity Framework 6. I had two choices implement the full text search in C# or use the functionality available in SQL server, since the data was stored in SQL Server the obvious solution was to use the built in full text search. How this works: 1. You need to activate and configure the full text search: Activate on the sql server table by using SSMS, and specify which columns are going to be included. 2. To perform a full text search in a T-SQL query you have the choice between 2 Boolean functions: Contains and Freetext or two functions that returns 2 columns tables. In my case I need a function that could be used in a where clause (Boolean), and decided to use 'Contains'. For more details about the difference between Freetext and contains have a look at this article . 3. I need to instruct EF6 to generate a particular T-SQL stateme...

Twitter API and Microsoft Text Analytics API in Python

Since we are getting closer to the French presidential election, and that I'm working on a project that involves using social media API and sentiment analysis, I've decide to post an example that will use these technologies to try and give an idea about each major candidate popularity. Solution description: 1. Collect social media information related to each candidate: For this example the main source is Twitter. 2. Extract sentiment for each Candidate from the Twitter posts collected previously. Implementation: For a quick implementation I decided to use python, but I'll definitely post a C# version as well. Code: 1. Twitter Client code: The code is pretty basic, I'm streaming the posts to a text file in son, by applying a list of filters; the names of the candidates I've decided to include: #Import the necessary methods from tweepy library from tweepy.streaming import StreamListener from tweepy import OAuthHandler from tweepy import Stream #Vari...