Monday, July 3, 2023
How to download/export Azure Active Directory Users and groups.
Friday, June 30, 2023
Azure Resource ID
In this article let us understand what is Azure Resource ID and where do we find it.
All the resources in Azure i.e., Azure Resource Manager Resources are assinged with an identifer called as ResourceID. You can carryout operations by using the Resourceid as well.
Wednesday, April 26, 2023
How Assign Azure AD Premium Licenses to users.
In our earlier article here we did see how to activate AAD Free Premium P2 licenses. Let us know see how to assign Licenses to the users which is very straight forward.
Tuesday, April 25, 2023
How to Activate Azure Active Directory Premium P2 Trail Licenses.
Azure Active Directory (AAD) comes with free license, which means only basic feature of AAD are available. Based on the licenses you have the features available will differ. Organizations that require features like PIM (Previlaged Identity Management), SSPR (Self Service Password Rest), MFA (Multifactor Authentication) with OTP on Authenticator App, SMS, Dynamic Groups, etc will go with Premium licenses (P1 or P2).
Monday, December 5, 2022
What is Azure Active Directory
An identity is an Object mostly userid with a password that is used for authentication / authorization.
Azure AD or Identies on azure are needed for
1)login to portal==>>portal.azure.com
2)Get access to azure resources (RBAC)
3)Get access to SaaS (Software as a Service) Applications.
Monday, November 28, 2022
Virtual Network Peering
Vnet peering enable communication between vnets, with in the same region, different regions, different subscriptions and ofcourse different Tenants.
Vnets will helps with isolation which means resources accross vents will not communicate with each other, hence the need of Peering.*Secure
*Reliability
*Better performance
Monday, August 9, 2021
Creation of Azure Active Directory Guest Account
Sunday, August 8, 2021
Azure Active Directory User(s) Creation using Powershell
Goal:
In this lab, you will learn how to create an Azure Active Directory user id(s) using Azure Powershell.
Requirements:
Create AAD User(s) using Powershell:
1) Azure Active Directory PowerShell Modules, here is the command that is required to install AAD PowerShell modules on your machine.
$AzureAdCred = Get-Credential
Connect-AzureAD -Credential $AzureAdCred
Install-Module AzureAD
2)Authentication to Azure Active Directory. Once installation of AAD PS modules is done run the following command for authentication.
Saturday, April 17, 2021
How To reset User ID and Password of Azure Virtual Machine.
Thursday, April 15, 2021
Assign Custom DNS Servers Azure
Friday, February 12, 2021
How to configure Static Private and Public IP Addresses on Azure.
Setting Static Private IP Address:
Friday, September 11, 2020
Wednesday, April 29, 2020
AZ-104 Moving Resources between Resource Groups in Azure
Tuesday, April 28, 2020
AZ-104 Azure VM Disk Addition and Extensions
Az-104 Azure Virtual Machine Creation
Monday, April 27, 2020
Azure Networking - Part 4 (Azure Virtual Network Peering)
In this article let us understand Virtual Network Peering (Vnet Peering).
We understood in our earlier articles that there is no communication between Virtual Networks in the same region or different regions/locations. What if there is a requirement to enable communication between Virtual Networks?
Azure provides us with two solutions.
- Virtual Network Peering
- VPN Gateway.
Thursday, April 23, 2020
Azure Networking - Part 3 (More on Vnets and Subnets)
Virtual Network can have multiple Address Spaces, additional address spaces can be added during or after the creation of Virtual Network by going to Address Space option as shown in the below screenshot.
Monday, April 20, 2020
Azure Networking - Part 2 (Creation of Vnets and Subnets)
Before we start deploying a Vnets and Subnets we need to make sure that we design our Vnets with a number of IPs required, of course keeping future requirements in mind.
VNET creation requires the following information
1)Name of the VNET
2)Resource Group
3)Subscription
4)Location
5)IP Address Space in CIDR format.
6)Subnet(s) (During the creation of VNET you need to create at least one Subnet)