📌  相关文章
📜  azure ad powershell module install - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:13:35.464000             🧑  作者: Mango

Azure AD PowerShell Module Install

Azure Active Directory (AD) PowerShell allows administrators to manage Azure AD resources with PowerShell cmdlets. In order to access these cmdlets, you must first install the Azure AD PowerShell module.

Prerequisites

Before you install the Azure AD PowerShell module, you need to ensure that you:

  • Have an Azure AD tenant
  • Have a user account in that Azure AD tenant with global administrator permissions
  • Have PowerShell version 5.1 or higher installed on your machine
Installation Steps

Follow these steps to install the Azure AD PowerShell module:

  1. Open a PowerShell console as an administrator on your machine.

  2. Run the following command to install the Azure AD PowerShell module:

Install-Module -Name AzureAD
  1. If prompted to install the NuGet provider, answer Yes or Yes to All.

  2. After the module is installed, you can import the module into your PowerShell session by running the following command:

Import-Module AzureAD
Conclusion

Now that you have installed the Azure AD PowerShell module, you can use it to manage Azure AD resources with PowerShell cmdlets. This can greatly simplify and streamline your Azure AD administration tasks. Happy scripting!