How To Check App Service Environment Version In Azure

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.

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.

app service environment

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.

azure app service environment

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.

How To Check App Service Environment Version In Azure

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 AzureLessonsASE

After 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.

Check App Service Environment Version In Azure

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.

App Service Environment Version In Azure

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.

Azure Virtual Machine

DOWNLOAD FREE AZURE VIRTUAL MACHINE PDF

Download our free 25+ page Azure Virtual Machine guide and master cloud deployment today!