The term ‘connect-azaccount’ is not recognized as the name of a cmdlet

In this PowerShell Azure tutorial, we will discuss how to fix the error, the term ‘connect-azaccount’ is not recognized as the name of a cmdlet that comes while running the PowerShell command to connect to Microsoft Azure.

The term ‘connect-azaccount’ is not recognized

Recently, while I was trying to connect to Microsoft Azure from PowerShell by running the below command

Connect-AzAccount

I got an error that says:

Connect-AzAccount: The ‘Connect-AzAccount’ command was found in the module ‘Az.Accounts’, but the module could not be loaded. For more information, run ‘Import-Module Az. Accounts’

The error looks like below:

connect-azaccount not recognized

The term ‘connect-azaccount’ not recognized [Solution]

Solution-1

To fix the issue run the below command in PowerShell.

Import-Module Az.Accounts

Once you execute the above cmdlets, you will be able to connect to Azure from PowerShell.

When you will run the command, it will ask you for the username and password and you can see the output below:

connect-azaccount not working

Solution-2

If the above solution didn’t work for you then try the below steps

  1. First, run the below PowerShell cmdlet to install Module Az.
Install-Module Az
connect-azaccount is not recognized

2. The second step is to import the Module Az using the below PowerShell cmdlet.

Import-Module Az
the term connect-azaccount is not recognized

3. Now Run the below PowerShell cmdlet to connect to the AzAccount.

Connect-AzAccount

You may like the following tutorials:

Wrapping Up

In this tutorial, we learned how to fix the error, the term ‘connect-azaccount’ is not recognized as the name of a cmdlet function script file that comes while connecting to Azure from PowerShell.

Hope you have enjoyed this article and this solution will help you to fix your issue as well !!!