Recently, I had the opportunity to verify the app service environment version in my Azure project. In this article, I will walk you through multiple approaches to Checking the App Service Environment Version In Azure.
Table of Contents
How To Check App Service Environment Version In Azure
Let us discuss all the approaches individually.
Approach-1: Using Azure Portal
To check App service environment version in Azure, follow the below steps.
1. Log in to the Azure Portal.
2. Search for App Service Environment and click on the search result App Service Environments under the Services, as shown in the screenshot below.

3. Now, you will see the lists of App Service Environments that you have created. Now, click on the one for which you wish to check the version.

4. Click on the Overview tab, and then you will see the version number on the right side, as shown in the screenshot below. Here, the version is V3.

Approach-2: Using PowerShell
We can also use the Azure PowerShell command to retrieve the version details of the App Service Environment in Azure.
We can execute the Azure PowerShell script below.
Get-AzAppServiceEnvironment -ResourceGroupName MyNewResGrp -Name AzureLessonsASEAfter executing the above Azure PowerShell script, I got the expected output as shown below. The version on this case is ASEV3 as specified for the Kind parameter.

Approach-2: Using Azure CLI
We can also execute the below Azure CLI script for this purpose.
az appservice ase show -n "AzureLessonsASE"After executing the above query, I got the expected output as shown below.

Video Tutorial
Conclusion
Checking the App Service Environment Version In Azure is so easy using the Azure Portal, PowerShell and Azure CLI as mentioned in this article. Now it is your turn to use the best approach that suits you.
You may also like following the articles below.

I am Rajkishore, and I am a Microsoft Certified IT Consultant. I have over 14 years of experience in Microsoft Azure and AWS, with good experience in Azure Functions, Storage, Virtual Machines, Logic Apps, PowerShell Commands, CLI Commands, Machine Learning, AI, Azure Cognitive Services, DevOps, etc. Not only that, I do have good real-time experience in designing and developing cloud-native data integrations on Azure or AWS, etc. I hope you will learn from these practical Azure tutorials. Read more.
