From b2728120e365d091bd81a14072c8a755d0089f92 Mon Sep 17 00:00:00 2001 From: Gal Szkolnik Date: Thu, 20 Jul 2023 04:47:15 +0000 Subject: [PATCH] Finished initial setup --- 00-Setup.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 00-Setup.md diff --git a/00-Setup.md b/00-Setup.md new file mode 100644 index 0000000..ec1ba01 --- /dev/null +++ b/00-Setup.md @@ -0,0 +1,16 @@ +# Starting from scratch on Windows 11 + +1. Signed up for Azure Free account at +2. Installed [Az PowerShell Module](https://github.com/Azure/azure-powershell/releases/tag/v10.1.0-July2023) and connected the Azure Account for the first time. + + ```PowerShell + Install-Module -Name Az -Repository PSGallery -Force + Connect-AzAccount + ``` + +3. Install AzureAD PowerShell Module and Connect to the default Azure AD tenant for the first time + + ```PowerShell + Install-Module -Name AzureAD -Repository PSGallery -Force -AllowClobber + Connect-AzureAD + ```