Technical Requirements
To follow along with the hands-on lessons, you will need access to the following:
- Microsoft Entra ID as a global administrator.
- Azure subscription with owner or contributor privileges. If you do not have access to one, students can enroll for a free account: https://azure.microsoft.com/en-us/free/.
- PowerShell 5.1 or later installed on a Windows PC or PowerShell Core 6.x on other operating systems where labs can be practiced.
- For Windows users, you will need to install .NET Framework 4.7.2 or later using the following link: https://learn.microsoft.com/en-us/dotnet/framework/install.
- Note that, occasionally, examples can only be followed from a PC or https://shell.azure.com (PowerShell 7.0.6 LTS or later is recommended).
- Install the
Az
PowerShell module, which can be performed by running the following in an administrative PowerShell session:Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force