Update-AzADGroup

Update-AzADGroup

Learn, the syntax and usage of the Update-AzADGroup PowerShell command with examples.

Update-AzADGroup

This is an excellent Azure PowerShell command that can help you to update the entities in the Azure Active Directory group.

Syntax

Below is the syntax of the Update-AzADGroup PowerShell command.

Update-AzADGroup
 -ObjectId <String>
 [-AdditionalProperties <Hashtable>]

Let’s discuss a few examples of how to use the Update-AzADGroup PowerShell command.

Example:

You can execute the Azure PowerShell command to update the display name of the specified Azure Active Directory group.

Update-AzADGroup -ObjectId  26a1666e-6584-4afe-9218-44b0dd452426 -DisplayName NewTsInfoGroup

After executing the above command, the display name of the Azure AD group has been updated successfully. You can see the below screenshot for your reference.

Update-AzADGroup

To cross-check, I ran the Get-AzADGroup PowerShell command and got the lists of the AD groups and I could see the display name of the specified Azure AD group has been updated successfully. See the below image.

Update-AzADGroup PowerShell

Final Thoughts

In this Azure PowerShell article, we discussed the syntax and usage of the Update-AzADGroup PowerShell command with examples. Thanks for reading this article !!!