View or modify the Mailbox settings for an Office 365 User
For an existing Office 365 user, you can use the Mailbox settings tab in the Exchange Online Properties wizard to view or modify the messaging records management settings.
|
NOTE: The modify option is applicable for Office 365 users on all environments, such as, Federated, Synchronized and non-federated. |
To view or modify the messaging records management settings for an Office 365 user
- In the Exchange Online Properties wizard of an Office 365 user, click Mailbox Settings.
-
To place the user mailbox on litigation hold, make sure that the Exchange Online Plan 2 license is enabled for the Office 365 user.
For information on enabling Office 365 licenses for a user, see Create a new Azure AD user.
- Under Messaging Records Management, click Properties, and then select the Enable litigation hold check box.
An error is displayed if the Exchange Online Plan 2 license is not enabled for the user.
-
In the Messaging records management description URL text box, enter URL of the location where the deleted mailbox items are preserved and changes made to mailbox items are recorded.
-
In the Comments text box, enter the mailbox comments, and click Save.
A message is displayed confirming the success of the operation.
- Close the dialog box and click Save.
|
NOTE: The changes made to Mailbox settings for the Office 365 user can be verified in the Microsoft Office 365 portal. |
Azure AD user management tasks using Management Shell interface
Active Roles enables you to perform the following management tasks for Azure AD users:
Active Roles Management Shell enables you to perform the following management tasks for Azure AD users:
Create a new Azure AD user
You can use the Active Roles Management Shell to create a new user. To create a new user, on the Management Shell interface, run the New-QADUser cmdlet. Use this cmdlet with the additional Boolean parameters AzureUserAccountEnabled, AzureOffice365Enabled, and AzureAssociateTenantId to create and enable a new Azure AD user. To retrieve and update Azure properties edsvaAzureObjectID attribute with correct value is required.
For more information on creating a new Azure AD user using the Management Shell interface, see the Active Roles Management Shell Help.
Example
Create a new Azure AD user:
C:\PS> New-QADUser -name 'user64' -ParentContainer 'CN=Users,DC=SS64,DC=com' -UserPassword 'Pass123w0rd' -AzureUserAccountEnabled $true -AzureOffice365Enabled $true -AzureUserPrincipalName 'user64@Azuredomain'-AzureAssociatedTenantId 'f918cb6c-275a-4815-8863-d7cbb90598b2'
Example
You can add additional attribute using -attr @{}:
C:\PS> New-QADUser -name 'user64' -ParentContainer 'CN=Users,DC=SS64,DC=com' -UserPassword 'Pass123w0rd' -AzureUserAccountEnabled $true -AzureOffice365Enabled $true -AzureUserPrincipalName 'user64@Azuredomain' -AzureAssociatedTenantId 'f918cb6c-275a-4815-8863-d7cbb90598b2' -attr @{edsaAzureUserGivenName='user64';edsaAzureUserUsageLocation='IN'}
Update the Azure AD user properties
You can use the Active Roles Management Shell to modify attributes of an Azure AD user in Active Directory. On the Management Shell interface, run the Set-QADUser cmdlet.
For more information on modifying an Azure AD user using the Management Shell interface, see the Active Roles Management Shell Help.
|
NOTE: Set-QADUser cmdlet does not work for Azure attributes in Synchronized Identity and Federated environment. |