Study guide for Azure Solutions Architect

Hello there, cloud enthusiasts!

If you’ve landed on this page, it’s likely that you’re preparing for the AZ-305: Designing Microsoft Azure Infrastructure Solutions exam. This exam is the latest version designed to validate your knowledge and skills needed to design solutions that run on Microsoft Azure, including aspects such as compute, network, storage, and security. Today, I’m excited to share my insights and the study guide that helped me successfully pass the AZ-305 exam recently.

image

My new Badge =)

Continue reading “Study guide for Azure Solutions Architect”

Study guide for Azure Networking Solutions

Hey guys! Today I come here to share with you my journey to achieve Azure Networking Solutions certification. To get the title of Azure Networking Engineer, you need to pass the AZ-700 exam.

image

My badge validation link

Microsoft’s AZ-700 Designing and Implementing Microsoft Azure Networking Solutions certification exam is designed for IT professionals who want to prove their skills in designing and implementing networking solutions in Azure. Passing this exam requires a comprehensive understanding of Azure networking services, network security, and hybrid connectivity.

Continue reading “Study guide for Azure Networking Solutions”

Get-MgUser: Get and Export Azure AD users properties with Graph Modules

Graph_01

Hello everyone,

Recently Microsoft started adding/changing ways to extract user information from Azure AD (The Microsoft plan is to replace the AzureAD PS Module). One of the new ways (Not so new) is through the Microsoft Graph, which can be used through the Graph API or through the Graph Modules. In this article I will demonstrate how to install the graph module and also how to perform some queries using the existing cmdlets in one of the Microsoft Graph Modules.

Continue reading “Get-MgUser: Get and Export Azure AD users properties with Graph Modules”

Expressway – Exporting Banned addresses using PowerShell

Hey guys,

In this post I will show you one situation I came across this week.
Due some attacks we’ve been suffering, we decided to get all blocked IPs on Expressway and block them also in the local Firewall, as a workaround while we investigate it better.

The thing is, how can we export the list of Banned IP addresses on Expressway?
As I didn’t find anything, I decided to do on my way, automating it.

Continue reading “Expressway – Exporting Banned addresses using PowerShell”

Removing Azure Locks from Resource Group using PowerShell

Today’s post is quick and simple folks. In today’s article I will show you how to remove Azure Locks from a Resource Group.

First let’s declare the Resource group variable:
$Resource = “RG_GETPRACTICAL”

AzLocks_01

After the declared variable we can execute the command “Get-AzResourceLock” using a pipe “|” so we can refer to the Resource Group same as the variable above.

Continue reading “Removing Azure Locks from Resource Group using PowerShell”