How to add a user to Organization Management group
Problem:
How to manually manage the Organization Management group membership.
Solution:
Add a desired user to the Organization Management group using Windows PowerShell:
- Run
Powershell.
Check the Powershell version by typing cmdlet:
$PSVersionTable
- The empty response means you are using version 1.0.
- For versions 2.0 and newer you should see detailed answer.
- We recommend to keep PowerShell updated to avoid compatibility problems. To download the newest version of PowerShell please visit this Microsoft website.
- If the Exchange Server is in remote location for example hosted or you are connecting to Office 365 learn how to connect to remote Exchange via Powershell. To manage assignment locally (MS Exchange Server on-premises or when logged on to remote Exchange via Remote Desktop, etc.) execute the below commands in
Exchange Management Shell.
Check what users are already members of the Organization Management group.
Get-RoleGroup "Organization Management" | select members
Add a user to the Organization Management group:
Add-RoleGroupMember "Organization Management" -Member "<account name>"
- where <account name> is a name of the desired user.
You can remove a user from the group with this command if necessary:
Remove-RoleGroupMember "Organization Management" -Member "<account name>"
See also:
Related products: | CodeTwo Exchange Rules 2007 4.x, CodeTwo Exchange Rules 2010 3.x, CodeTwo Exchange Rules 2013 2.x, CodeTwo Exchange Rules 2016 1.x, CodeTwo Exchange Rules 2019 1.x, CodeTwo Exchange Rules Pro 2.x |
Categories: | How-To |
Last modified: | January 31, 2019 |
Created: | July 4, 2015 |
ID: | 493 |