Get All Environments using PowerShell Clear-Host $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition $environmentsFilePath = "$scriptPath\Environments.xlsx" $excel = New-Object -ComObject excel.application $workbook = $excel.Workbooks.Add() $envs = Get-AdminPowerAppEnvironment $wksht= $workbook.Worksheets.Add() $wksht.Name = 'Environments' $wksht.Cells.Item(1,1) = "EnvironmentName" $wksht.Cells.Item(1,2) = "DisplayName" $wksht.Cells.Item(1,3) = "UniqueName" $wksht.Cells.Item(1,4) = "EnvironmentType" $wksht.Cells.Item(1,5) = "CommonDataServiceDatabaseType" $wksht.Cells.Item(1,6) = "IsDefault" $wksht.Cells.Item(1,7) = "Location" $wksht.Cells.Item(1,8) = "AzureRegion" $wksht.Cells.Item(1,9) = "MetadataType" $wksht.Cells.Item(1,10) = "InternalCds" $wksht.Cells.Item(1,11) = "CreatedBy" $wksht.Cells.Item(1,12) = "CreatedTime" $wksht.Cel...
Enterprise AI & Cloud Architecture is a thought-leadership platform focused on AI-driven, cloud-based enterprise systems. It examines advanced architectures leveraging SharePoint, Microsoft 365, Azure, Power Platform, RAG, and Agentic AI to modernize mission-critical environments in healthcare, research, government, and enterprise organizations.