Use the "Shift + F10" keyboard shortcut to open Command Prompt on the Windows 11 setup.
Type the following command to disable the internet connection requirement to set up Windows 11 and press Enter:
oobe\bypassnro
About: Exchange 2013-2016-2019-Online - Powershell - Windows 2012-2016-2019 - Teams - Office365 - PKI - Microsoft365
I came across a blogpost over at https://o365reports.com on how to backup your Entra ID configuration.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | # Install-Module EntraExporter -Scope AllUsers -Force # https://o365reports.com/2023/08/24/entra-exporter-tool-effortlessly-backup-microsoft-entra-id-configurations/ $Module=Get-InstalledModule -Name EntraExporter if($Module.count -eq 0) { Write-Host EntraExporter module module is not available -ForegroundColor yellow $Confirm= Read-Host Are you sure you want to install the EntraExporter module? [Y] Yes [N] No if($Confirm -match "[yY]") { Install-Module -Name EntraExporter -AllowClobber -Scope AllUsers -Force } else { Write-Host EntraExporter module is required.Please install module using Install-Module EntraExporter cmdlet. } } Import-Module -Name EntraExporter Connect-EntraExporter -TenantId yourtenantid Get-MgOrganization # Get the current date $currentDate = Get-Date -Format "yyyy-MM" # Change to working dir CD "C:\Temp" $DestinationPath = "C:\Temp" $MoveToPath = "C:\Users\Username\Company\Microsoft Entra\Backup\Entra-Export" # Create a folder with the current date $folderPath = Join-Path -Path $DestinationPath -ChildPath $currentDate # Check if the folder already exists if (-not (Test-Path $folderPath)) { New-Item -ItemType Directory -Path $folderPath Write-Host "Folder '$currentDate' created successfully." } else { Write-Host "Folder '$currentDate' already exists." } Export-Entra -Path "$folderpath" -All $compress = @{ Path = "$folderPath" CompressionLevel = "Optimal" DestinationPath = "$folderPath.zip" } Compress-Archive @compress Move-Item -Path "$folderPath.zip" -Destination $MoveToPath Remove-item $folderPath -recurse -Confirm:$false |