Skip to content

Latest commit

 

History

History

setup

Class Environment Setup

Install Software

Note: Create Lab VM is an optional step that you could execute in advance if you want to develop on Azure hosted VM. If you want to develop on your local machine you can skip this step.

To install Software run the script setup-az-400.ps1 from an elevated PowerShell prompt:

run-as

Set-ExecutionPolicy Bypass -Scope Process -Force;
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/arambazamba/az-400/main/setup/setup-az-400.ps1'))

Note: This script will run for approx 15 min.

Setup Git & Clone Class Repository

Login to GitHub using GitHub CLI:

gh auth login

Fork the class repository:

gh repo fork https://github.com/arambazamba/az-400/

Download the forked repository:

gh repo clone https://github.com/<USERNAME>/az-400/

Set User and E-Mail:

git config --global user.name "Your Name"
git config --global user.email "your.email@yourdomain.com

Congratulations you have completed the base setup of your class software requirements.